You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The expected result after running the code below is 4 QVDs
V_ORDERS_2022_09.QVD
V_ORDERS_2022_10.QVD
V_ORDERS_2022_11.QVD
V_ORDERS_2022_12.QVD
But this is not what I'm getting.
I get only 3 QVDs 09,10,12 (missing V_ORDERS_2022_11.QVD)
orders for month 11 are merged with 12. orders for date 2022-10-01 are added to V_ORDERS_2022_09.QVD while V_ORDERS_2022_10.QVD starts with date 2022-10-02
I doubled checked all my dates, they are all the same formate and no nulls.
/************************************
LOAD V_ORDERS table and create a shiftdate field.
************************************/
LOAD DATE#(SHIFT_DAY,'YYYYMMDD') as SHIFTDATE,
*
FROM
[..\QVD_STORE\V_ORDERS.qvd]
(qvd) where SHIFT_DAY >= 20220901;
/************************************
Save V_ORDERS table into monthly QVDs
************************************/
CALL Qvc.SegmentedStore ('V_ORDERS', 'SHIFTDATE', '$(vLocalSavePath)', 'V_ORDERS', 'MONTH', 1);
// Drop the sales table
DROP TABLE V_ORDERS;
The text was updated successfully, but these errors were encountered:
The expected result after running the code below is 4 QVDs
V_ORDERS_2022_09.QVD
V_ORDERS_2022_10.QVD
V_ORDERS_2022_11.QVD
V_ORDERS_2022_12.QVD
But this is not what I'm getting.
I get only 3 QVDs 09,10,12 (missing V_ORDERS_2022_11.QVD)
orders for month 11 are merged with 12. orders for date 2022-10-01 are added to V_ORDERS_2022_09.QVD while V_ORDERS_2022_10.QVD starts with date 2022-10-02
I doubled checked all my dates, they are all the same formate and no nulls.
The text was updated successfully, but these errors were encountered: