Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 .........
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
hi Anand
which one is best to use in vPath (set or let).
BY using SET and LET are ok because it store the string by the expression.
LET vPath = '\\123.456.1.32\QVDData\';
Regards
Anand
Mr.Anand
i am use set it is showing error,reload is compleat but QVD is not create
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
ok thanks i will try
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.