Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
osni_campos
Contributor III
Contributor III

Help-me!!!

Please anyone have step-by-step how to create script to generate the QVD server 11?

Grateful.

1 Solution

Accepted Solutions
oleg_orlov
Creator
Creator

Name:

LOAD *

FROM TableName;

STORE Name into [FilePath]; (for example .\Data\FileName.qvd)

DROP Table Name;

View solution in original post

6 Replies
oleg_orlov
Creator
Creator

Do you want to store data to QVD file?

osni_campos
Contributor III
Contributor III
Author

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.

Not applicable

2943.jpg

oleg_orlov
Creator
Creator

Name:

LOAD *

FROM TableName;

STORE Name into [FilePath]; (for example .\Data\FileName.qvd)

DROP Table Name;

Not applicable

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

osni_campos
Contributor III
Contributor III
Author

It worked, thank you.