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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Error in Store

Hi

I pulling data from oracle table and storing to a QVD. I get error on Storing to QVD table if the number of rows retrieved from oracle is 0. How to handle this error exception

Thanks

Labels (1)
1 Solution

Accepted Solutions
marcus_sommer
MVP
MVP

You could use something like this:

if noofrows('YourTableLoadFromOracle') >= 1 then

     store YourTableLoadFromOracle into YourTableLoadFromOracle.qvd (qvd);

end if

- Marcus

View solution in original post

1 Reply
marcus_sommer
MVP
MVP

You could use something like this:

if noofrows('YourTableLoadFromOracle') >= 1 then

     store YourTableLoadFromOracle into YourTableLoadFromOracle.qvd (qvd);

end if

- Marcus