Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Storing QVD's to a specific location

Hi

Can someone please assist with the correct syntax please.

I have the following:

store   TableName   into   [\\ABCDO001\Department\Qlikview\QVD] as TableName.qvd (qvd);

It doesn't seem to work.

Cheers

Magen

Labels (1)
1 Solution

Accepted Solutions
buzzy996
Master II
Master II

the best way u could be do is,

create a variable

SET QVDPath = '\\ABCDO001\Department\Qlikview\QVD';

ur load script table

STORE your_tablename INTO [$(QVDPath)\your_tablename.qvd];

View solution in original post

5 Replies
roger_stone
Creator III
Creator III

Try

store   TableName   into   [\\ABCDO001\Department\Qlikview\QVD\TableName.qvd] (qvd);

tamilarasu
Champion
Champion

Hi,


You can specify the complete path:

STORE TableName INTO C:\Users\User\Desktop\TableName.qvd (qvd);

Or You can jump to folder levels (Double dots):

STORE TableName INTO ..\..\FolderA\TableName.qvd (qvd);


In your case, try below


store  TableName  into  [ABCDO001\Department\Qlikview\QVD\TableName.qvd] (qvd);

cbb
Employee
Employee

What error are you seeing or are you just not getting any QVD's saved to the specified location?

other thoughts:

Are you running the QV.exe / QVB with admin rights? and does that user have rights to write to the specified location?

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

store TableName into [\\ABCDO001\Department\Qlikview\QVD\TableName.qvd](qvd);


Syntax:


STORE QVTableName INTO Filepath\QVDFielName.qvd;


Hope this helps you.


Regards,

Jagan.

buzzy996
Master II
Master II

the best way u could be do is,

create a variable

SET QVDPath = '\\ABCDO001\Department\Qlikview\QVD';

ur load script table

STORE your_tablename INTO [$(QVDPath)\your_tablename.qvd];