Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

QVDPath

hello everyone ,

How to create QVD Path please explain step by step

i tried below script:

SET QVDPath = 'D:\Tech\QVD_PATH';

LOAD [Customer ID],

     [Product ID],

     [Customer Name],

     City,

     [Product Name],

     [Order Date],

     Sales

FROM

$(QVDPath)q1.qvd(qvd);

it shows an error "File Not Found"

then i tried

SET QVDPath = 'D:\Tech\QVD_PATH';

q1:

LOAD [Customer ID],

     [Product ID],

     [Customer Name],

     City,

     [Product Name],

     [Order Date],

     Sales

FROM

[yearly sales.xlsx]

(ooxml, embedded labels, table is Sheet1);

STORE q1 INTO $(QVDPath)q1.qvd(qvd);

its not showing any error but didn't get any qvd file.

help me

Thank You

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Should be this?

STORE q1 INTO $(QVDPath)\q1.qvd(qvd);

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

6 Replies
Anil_Babu_Samineni

Should be this?

STORE q1 INTO $(QVDPath)\q1.qvd(qvd);

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
stabben23
Partner - Master
Partner - Master

Hi, you have to add '\' last inQVDPath

SET QVDPath = 'D:\Tech\QVD_PATH\';

Anonymous
Not applicable
Author

thanks its working but is the right way?

SET QVDPath = 'D:\Tech\QVD_PATH';

q1:

LOAD [Customer ID],

     [Product ID],

     [Customer Name],

     City,

     [Product Name],

     [Order Date],

     Sales

FROM

[yearly sales.xlsx]

(ooxml, embedded labels, table is Sheet1);

STORE q1 INTO $(QVDPath)\q1.qvd(qvd);

devarasu07
Master II
Master II

Hi,

Try to do below steps,

keep your excel file under excel folder and QVD files under QVD folder (let say in D drive) and make sure the file exists

SET vQVDPath = '..\QVD';

SET vXLSPath = '..\excel';

LOAD [Customer ID],

     [Product ID],

     [Customer Name],

     City,

     [Product Name],

     [Order Date],

     Sales

FROM $(vQVDPath)\q1.QVD (qvd);

q1:

LOAD [Customer ID],

     [Product ID],

     [Customer Name],

     City,

     [Product Name],

     [Order Date],

     Sales

FROM $(vXLSPath)\yearly sales.xlsx (ooxml, embedded labels, table is Sheet1);

STORE q1 into $(vQVDPath)\q1.QVD (qvd);

Thanks,

Deva

Anil_Babu_Samineni

Yes, Your STORE command should work when you use this?

SET QVDPath = 'D:\Tech\QVD_PATH\';

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

Thank you guys for giving your valuable time.