Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
smilingjohn
Specialist
Specialist

invalid month

Hi All

iam trying to implement the incremental load .

below is the script for that and the database is oracle.

after executing this is giving the error as shown in the screenshot .

oracleinvalidmnt.PNG

Incremental:

LOAD

"Dept",

    "RESOLVE_DATE",

    "CLOSE_DATE",

      LOAD_DATE,

    "JIRA_PROJECT_KEY_ID";

From [..\dept.qvd(qvd)];

Last_Updated_Date:

LOAD

Date(max(LOAD_DATE,'MM-dd-YYYY')) as maxdate

Resident Incremental

LET vLast_Updated_Date = Peek('maxdate',0,'Last_Updated_Date');

concatenate

LOAD

"Dept",

    "RESOLVE_DATE",

    "CLOSE_DATE",

     Date("LOAD_DATE") as LOAD_DATE,

    "JIRA_PROJECT_KEY_ID";

SQL SELECT *

FROM "IPMO_SO".JIRA

where "LOAD_DATE" > '$(vLast_Updated_Date)';

Please need help on this

thanks in advance

Labels (1)
11 Replies
sunny_talwar

Have you fixed the parenthesis?

Capture.PNG

smilingjohn
Specialist
Specialist
Author

Hi Sunny

Thanks Legend this works