Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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];
Try
store TableName into [\\ABCDO001\Department\Qlikview\QVD\TableName.qvd] (qvd);
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);
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?
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.
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];