Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to create QVD files, Different ways to create a QVD
SRS
Hi,
I use semicolon there but not work.
SRS
Save it first and do reload it will work
Hi,
I save it and reload it but not work my scrpt is this
Table1:
load * from
D1;
store Table1 into Table1.qvd;
Table2:
load * from
D1;
store Table2 into Table2.qvd;
SRS
try like this
Table1:
load * from
D1;
store Table1 into Table1.qvd;
drop table Table1;
Table2:
load * from
D1;
store Table2 into Table2.qvd;
drop table Table2;
Hi,
Use some thing like this in the script
Table1:
load * from
D1;
store Table1 into Table1.qvd;
Table2:
NoConcatenate
load * from
D1;
store Table2 into Table2.qvd;
Regards,
Anand
Hi sanjay,
Attach a sample qvw file.
Regards,
Nilesh Gangurde
Hi,
I try your script and working for me. Let see in the attached files.
Edit: Put all files in the same folder.
Regards,
Sokkorn
Hi,
But it create synthetic keys.
SRS
Hi,
If you not need the loaded tables so delete it and use the QVD files.
Regards,
Anand
may i ask... is there an effect of you issue drop table after the store statement?
and also what is nonconcaatenate use for?