Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
can i store a qvd in a qvd like this :
LOAD
DOCNO,
TRXH_LOC_CODE,
FROM [lib://DataFiles/ALLHistory.qvd]
(qvd);
Concatenate
LOAD
DOCNO,
TRXH_LOC_CODE,
FROM [lib://O/xxx_Daily3Days.qvd]
(qvd);
STORE xxx_Daily3Days INTO 'lib://DataFiles/3daysDailySales.qvd' (qvd);
drop Table xxx_Daily3Days;
i have a qvd that i take from the server that have only 3 days daily data,
i want to make the qvd for the history on the cloud.
try below
historicalQVD:
LOAD
DOCNO,
TRXH_LOC_CODE,
FROM [lib://DataFiles/ALLHistory.qvd]
(qvd);
Concatenate
LOAD
DOCNO,
TRXH_LOC_CODE,
FROM [lib://O/xxx_Daily3Days.qvd]
(qvd);
STORE historicalQVD INTO 'lib://DataFiles/3daysDailySales.qvd' (qvd);
drop Table xxx_Daily3Days;
Regards,
Prashant Sangle
yes, you can.. are you getting any error?
hello,
yeah :
do you have that qvd in that location??
you are getting error in below part of script.
Just check
yes yes im getting this qvd from their its on the onedrive so i take it from their
try below
historicalQVD:
LOAD
DOCNO,
TRXH_LOC_CODE,
FROM [lib://DataFiles/ALLHistory.qvd]
(qvd);
Concatenate
LOAD
DOCNO,
TRXH_LOC_CODE,
FROM [lib://O/xxx_Daily3Days.qvd]
(qvd);
STORE historicalQVD INTO 'lib://DataFiles/3daysDailySales.qvd' (qvd);
drop Table xxx_Daily3Days;
Regards,
Prashant Sangle
hello can you tell how to fix this