Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all,
so I am slow and steady into creating my very first qvd files. I've created them but now I want to map some columns from a table I have created a qvd for.
I have something like:
MapName:
Mapping Load
id,name;
SQL select * from [$(vPathQVD)city_name.qvd](qvd);
During load script, I get this error :
For anyone with the same error, I found the solution,
MapName:
Mapping Load
id,name;
SQL select * from [$(vPathQVD)city_name.qvd](qvd);
should be :
MapName:
Mapping Load
id,name
from [$(vPathQVD)city_name.qvd](qvd);
For anyone with the same error, I found the solution,
MapName:
Mapping Load
id,name;
SQL select * from [$(vPathQVD)city_name.qvd](qvd);
should be :
MapName:
Mapping Load
id,name
from [$(vPathQVD)city_name.qvd](qvd);