Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have several problems when I load a table.
The script is this:
QUALIFY*;
Movim:
LOAD
FE_MOV,
VOUCHER,
CG_ASIEN,
.
.
.
CAE_PRODUCCION,
CAE_TESTING,
MONEDA3;
SQL SELECT *
FROM dbo_Movim;
STORE * from dbo_Movim into $(QvdPath)Movim.qvd (qvd);
Problems:
If I remove the STORE statement then load the table but unqualified.
Problem solved, was missing a comma after the definition of QvdPath
Thank you all.
HI
Try like this,
Movim:
LOAD
FE_MOV,
VOUCHER,
CG_ASIEN,
.
.
.
CAE_PRODUCCION,
CAE_TESTING,
MONEDA3;
SQL SELECT *
FROM dbo_Movim;
Then reload it , and see the result..
Store Movim into Testing.qvd(qvd);
Try the following:
QUALIFY *;
Movim:
LOAD
FE_MOV,
VOUCHER,
CG_ASIEN,
.
.
.
CAE_PRODUCCION,
CAE_TESTING,
MONEDA3;
SQL SELECT *
FROM dbo_Movim;
STORE Movim into $(QvdPath)Movim.qvd (qvd);
It still does not work.
When the script is the next, I get the table but unqualified:
**************************************************************************
QUALIFY *;
Movim:
LOAD
FE_MOV,
VOUCHER,
CG_ASIEN,
.
.
.
CAE_PRODUCCION,
CAE_TESTING,
MONEDA3;
SQL SELECT *
FROM dbo_Movim;
**************************************************************************
And if I add the STORE clause (STORE Movim into $(QvdPath)Movim.qvd (qvd);), the script doesn not run.
First all field names in load statement should be upper , and then check if any field is repeating.in second case there is a chance to reload fail.
Problem solved, was missing a comma after the definition of QvdPath
Thank you all.