Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Resident Load

Hi All,

Can someone direct me towards what I'm doing wrong here? I'm to do a Resident Load of the table above called MC but some odd reason it shows an error.

Thanks in Advance,

1 Solution

Accepted Solutions
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Put the following statement immediately after the MC LOAD statement:

EXIT SCRIPT;

Then Reload, open the Table Viewer, and check what columns are available in this MC table.

Peter

View solution in original post

9 Replies
settu_periasamy
Master III
Master III

Try resident  before while..

sunny_talwar

While needs to come after Resident Statement

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Well, the syntax of a LOAD statement is actually different. The structure of a LOAD statement is like this:

1-OptionalTableName:

LOAD 2-WhatToLoad

3-FromWhereToLoadIt

4-OptionallyHowToLoadIt;

You exchanged part 3 (the RESIDENT stuff) with part 4 (the WHILE stuff) which is illegal.

So to make it work you should only change the order of the parts.

Not applicable
Author

When I run the reload script it shows an error field not found.

sunny_talwar

Is MC the correct table name (the table right above is the one you seem to be using, but can't see the name)?

Peter_Cammaert
Partner - Champion III
Partner - Champion III

In Qlikview, every name is case sensitive. Check the spelling of table names.

Not applicable
Author

MC is the name I have given to the table.

sunny_talwar

Everything looks good to me. May be if you can share your app and the qvd, one of us can try to reload the document at our end and see what we see

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Put the following statement immediately after the MC LOAD statement:

EXIT SCRIPT;

Then Reload, open the Table Viewer, and check what columns are available in this MC table.

Peter