Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a QVW file in a folder and QVD file in another folder, I need to put it into a virtual table TableTest: But I need to put the function Directory; before making the charge, but is giving error, can anyone help me?
Hi
You may not need a Directory statement. By default, the base directory is the folder containg the qvw file. If the QVD is in the same path, but a different folder, load the qvd using a relative path, something like this
LOAD ...
FROM [..\QvdFiles\MyData.qvd] (qvd)
You can also use an absolute path
LOAD ...
FROM [\\myserver\QvdFiles\MyData.qvd] (qvd);
Hope that helps
Jonathan
I guess you're trying to organize the folder. If so, please check on the link below and it will help. http://community.qlik.com/message/52528#52528 Regards. Siva sankar
Hi Gabriel,
Can you please give more explanetion about problem? and if possible please attach your sample qwv.
Best Regards
Peyman
Hi
You may not need a Directory statement. By default, the base directory is the folder containg the qvw file. If the QVD is in the same path, but a different folder, load the qvd using a relative path, something like this
LOAD ...
FROM [..\QvdFiles\MyData.qvd] (qvd)
You can also use an absolute path
LOAD ...
FROM [\\myserver\QvdFiles\MyData.qvd] (qvd);
Hope that helps
Jonathan