Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Recovery mechanism

Hi,

In the following scenario :

A .qvw application that extract 100 tables, say after the 60th table load the application crash. Is there a built in recovery mechanism to restart the .qvw but without loading again the tables that got processed successfully. or do I have to implement that mechanism myself. For example using a table (TABLE_NAME, LOAD_OK_OR_NOT) and if then else conditions.

Thank you.

1 Reply
its_anandrjs

Use log files to check from which table load the extractor fails and then in your load script restart the extractor from that position where the error comes. Just use exit script command from there and reload the remaining files in the load script and extract remaining files.

Other wise you can use Errormode for extractors

Eg:-

Set ErrorMode = 10;

Set ErrorMode = 11;