Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Storing qvds in their own folder

I have a script which creates qvds but I'd like to store them in a separate qvd's folder but maintain it's relative path.

How would you specify that in a Store command?

7 Replies
vgutkovsky
Master II
Master II

Like this: STORE MyTable INTO QVD\MyTable.qvd;

Regards,

Vlad

its_anandrjs

Write like

Let vPath = 'D:\QVDFolder';  //This is your path you use your path here.

Table1:

Load * Inline

[

Countries

Spain

Germany

Portugal

];

Store Table1 into $(vPath)\Table1.qvd(qvd);

nilo_pontes
Partner - Creator
Partner - Creator

Hi John,

It depends on the path where your app is, but it will be something like this:

STORE [your_table] INTO ..\QVDfiles\your_qvd_file.qvd;

Regards

Not applicable
Author

Nilo. This is the type of solution I thought I was looking for. Doesnt seem to work. Tried switching the slashes and creating the QVD folder, but crashes the load

Any other hints?

vgutkovsky
Master II
Master II

If there are special characters in the path (spaces, for example), make sure you enclose the entire path in [] brackets. For example: [My QVD\MyTable.qvd]

Regards,

Vlad

maxgro
MVP
MVP

let path = '.\tmp\qvd';

...........

store Transactions into [$(path)\Transactions.qvd] (qvd);

its_anandrjs

Yes the relative paths are worked you can try this ways

STORE Table2 into ..\..\FirstFolderName\QVDFolder\Table2.qvd;