Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
When trying to reload i am getting the error "Failed to open file in write mode for file"
There are no other reloads happening at the same time.
the name for the qvd to be stored is a new file (therefore it cannot be a locked file)
any ideas?
Script is basically:
newqvd:
Load
*;
SQL
SELECT * FROM table;
Store newqvd into $(vQVDDirectory)\newqvd.qvd;
Drop table newqvd;
typo in variable
Hi Matt, could it be the missing Space that gives you the error?
And does Your user have all permissions to the folder path?
newqvd:
Load
*;
SQL
SELECT * FROM table;
Store newqvd into $(vQVDDirectory)\newqvd.qvd;
Drop table newqvd;
No that was a typo when doing the question.
Yes i can reload other files in into the same folder no problem
Ok,
try to add (qvd) last, like this
Store newqvd into $(vQVDDirectory)\newqvd.qvd (qvd);
Maybe no effect, but try.
still the same error
Ok, are you running the script from desktop or server?
tried both
Is the same Application open in another window? also check that there is no "ghost" process open in task manager that lock the reload.
Wats is you full path here $(vQVDDirectory)?
typo in variable