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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Resident Load error

Hello ,

I am trying to test a simple resident load scenario and below is my script.

Stored_Products:

LOAD Product_Id,

    Product_Line,

    Product_category,

    Product_Subcategory

FROM

C:\qlikview\Practice\qvds\Products.qvd(QVD);

Y:

Load max(Product_Id) as MaxId

resident Stored_Products;

When I run this, I am getting an error saying that Table Not Found : Y.  Am I missing something here? Can you guys please help me out.

Thank You!

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

Try

Stored_Products:

noconcatenate LOAD Product_Id,

    Product_Line,

    Product_category,

    Product_Subcategory

FROM

C:\qlikview\Practice\qvds\Products.qvd(QVD);

Y:

Load max(Product_Id) as MaxId

resident Stored_Products;

View solution in original post

6 Replies
m_woolf
Master II
Master II

Y:

NOCONCATENATE Load max(Product_Id) as MaxId

maxgro
MVP
MVP

I think the Stored_Products table doesn't exists; try to add an exit and see in the table viewer (ctrl-t) if the table exists

Stored_Products:

LOAD Product_Id,

    Product_Line,

    Product_category,

    Product_Subcategory

FROM

C:\qlikview\Practice\qvds\Products.qvd(QVD);

exit script;

Clever_Anjos
Employee
Employee

Try

Stored_Products:

noconcatenate LOAD Product_Id,

    Product_Line,

    Product_category,

    Product_Subcategory

FROM

C:\qlikview\Practice\qvds\Products.qvd(QVD);

Y:

Load max(Product_Id) as MaxId

resident Stored_Products;

Not applicable
Author

Thank You!

Not applicable
Author

Thank You!

Not applicable
Author

Thank You!