Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
sakamsureshbabu
Creator
Creator

store Qvd

hi all

my qlikview s.w is stored in one server (let 123.456.1.32 server ip) in that only i am doing development, 

now i want to store qvd in another server (let 123.456.1.35 server ip )

how it is .........

7 Replies
its_anandrjs

Hi,

Define the QVD path in any variable and then use that variable in store command to store the QVD on there location

Ex:-

LET vPath = 'F:\QVDData\';

Tab1:

Load * Inline [

A

1

2

3 ];

STORE Tab1 into $(vPath)Tab1.qvd;

In variable path use your Server location path

Ex:-

LET vPath = '\\123.456.1.32\QVDData\';

Regards

Anand

sakamsureshbabu
Creator
Creator
Author

hi Anand

which one is best to use in vPath  (set or let).

its_anandrjs

BY using SET and LET are ok because it store the string by the expression.

LET vPath = '\\123.456.1.32\QVDData\';


Regards

Anand

sakamsureshbabu
Creator
Creator
Author

Mr.Anand

i am use set it is showing error,reload is compleat but QVD is not create 

its_anandrjs

Most probably use LET only but it is worked and my side it is working see this example with simple table and the SET and LET variables use and that store in the QVD_DATA folder and there is two folder one for LET AND SET.

Tab:

Load * Inline [

A

1

2 ];

LET vPath1 = 'D:\QVD_DATA\LET_Store\';

SET vPath2 = 'D:\QVD_DATA\SET_Store\';

STORE Tab into $(vPath1)Tab.qvd;

STORE Tab into $(vPath2)Tab.qvd;

Check your load script for this and do not use space in the folder name

Regards

Anand

sakamsureshbabu
Creator
Creator
Author

ok thanks i will try

sakamsureshbabu
Creator
Creator
Author

Mr Anand

when i am want to store qvd in another server data load in script finally it show error like "execution of script failed"


when i am want to store qvd in same server it is created.


what is the problem.