Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello And Welcome.
I am facing a problem with loading multiple qvds, it was working fine before.
The bellow code works fine.
LOAD
USERNAME,
LOGON_TIME,
LOAD_TIME
FROM [lib://MY-QVDs (qlik_admin)/S1/LOCK_USERS_220628_100615.qvd]
(qvd);
However, once I want to read all qvd files it gave me error
LOAD
USERNAME,
LOGON_TIME,
LOAD_TIME
FROM [lib://MY-QVDs (qlik_admin)/S1/LOCK_USERS_*.qvd]
(qvd);
Thank You
LOAD
USERNAME,
LOGON_TIME,
LOAD_TIME
FROM [lib://MY-QVDs (qlik_admin)/S1/LOCK_USERS_2*.qvd]
(qvd);
It works for me when I set the * after number 2,
I realized that there are other QVDs which has the same name such as "LOCK_USERS_BLOCKING_A123" and so on.
LOAD
USERNAME,
LOGON_TIME,
LOAD_TIME
FROM [lib://MY-QVDs (qlik_admin)/S1/LOCK_USERS_2*.qvd]
(qvd);
It works for me when I set the * after number 2,
I realized that there are other QVDs which has the same name such as "LOCK_USERS_BLOCKING_A123" and so on.