Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone,
I'm having trouble storing a qvd file to a network folder.
My script is fairly straightforward. I'm trying to load an .xml stored on a server, then save the loaded data as a .qvd to the same server.
The gist of my script is below:
MyTable:
load *
from [\\serverName\datafolder\file.xml];
store MyTable into \\serverName\qvdfolder\MyTable.qvd (QVD);
I am able to load the data OK but receive "failed to open file in write mode for file \\serverName\qvdfolder\MayTable.qvd" when trying to store the .qvd file. I have read/write access to the folder I'm trying to save to. I've also tried using the server IP address in lieu of the server name.
Any thoughts on what is causing the error? I am fairly new to qvd storage, any thoughts or comments would be appreciated.
Thanks!
Michael
Can you get to that server and see your qvd file?
No, I receive an error before the qvd is saved.
Otherwise I have full access to the server.
Ok can you run the same script to you local drive like
store MyTable into C:\Foldername\MyTable.qvd (qvd);
And can you get to that folder from your windows explorer?
Yes, storing locally on my PC works just fine.
Ok and can you get to that network folder from your windows explorer?
Yes.
Try using below Store statement.
store MyTable into [\\serverName\qvdfolder\MyTable.qvd](QVD);
Thanks for the suggestion, but still no luck.
Hmm thats strange. Can you rename your table name like
store MyTable into \\serverName\qvdfolder\Table.qvd (qvd);