Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Please anyone have step-by-step how to create script to generate the QVD server 11?
Grateful.
Name:
LOAD *
FROM TableName;
STORE Name into [FilePath]; (for example .\Data\FileName.qvd)
DROP Table Name;
Do you want to store data to QVD file?
Yes, I would like to create a task to generate the QVS QVD, but do not know how to write the script.
I'm learning QlikView.
Name:
LOAD *
FROM TableName;
STORE Name into [FilePath]; (for example .\Data\FileName.qvd)
DROP Table Name;
I am also a new one. But I used this a lot these days.
I think this you may need it.
An example:
qvdtmp:
load * resident temp;
store qvdtmp into chirs.qvd(qvd);
Hope this help,
Andy
It worked, thank you.