Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
lakshmanvepuri
Creator
Creator

Reg: Generation of QVD's / FTP

Hi All,

Can we generate the QVD to some other server in the different region ..?

or can we generate the QVD here and FTP the File to that Server..?

Please advise which is better method also send me the sample FTP Script.

Thanks

L K Vepuri

jagan

3 Replies
ahmar811
Creator III
Creator III

Hi

i advise the second option would be more convenient.

you can have a look at below blog

FTP data import into script

hope this would be helpful

Regards

Ahmar

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

set ftp = 'ftp://USER:PASSWORD@YOURSERVER.com/';

Data:

LOAD

*

FROM DataSource;

STORE DataSource INTO $(ftp)FileName.qvd (qvd);

Hope this helps you.

Regards,

jagan.

manojkulkarni
Partner - Specialist II
Partner - Specialist II

try some think like below using batch file. Below code has to be written in batch file

open YOURSERVER

USER

PASSWORD

lcd "D:\YOURSOURCEPATH"

mput  "*.qvd"

bye

exit