Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
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;
Y:
NOCONCATENATE Load max(Product_Id) as MaxId
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;
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;
Thank You!
Thank You!
Thank You!