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

to checkthe currupted qvd

how to know qvd is corrupted or not?

please tell me the steps or appropriate solution.

thanks 

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Try to load the qvd in a new Qlikview document. If it works without errors then the qvd is not corrupt.

talk is cheap, supply exceeds demand

View solution in original post

4 Replies
kmiryalaj
Contributor
Contributor

If you can read data from a qvd file, then it is not corrupted.
Below code may help you.

Set ErrorMode = 0;

CheckQVD:
Load * From Qvdname.qvd (qvd);

Let vNoOfRows = NoofRows('CheckQVD');
If Len($(vNoOfRows) )>0 then
Trace QVD is not corrupt;
Else
Trace QVD is corrupt;


Gysbert_Wassenaar

Try to load the qvd in a new Qlikview document. If it works without errors then the qvd is not corrupt.

talk is cheap, supply exceeds demand
Anil_Babu_Samineni

If you load that QVD, You can understand whether the file is corrupted or not {I Mean to say, If you are not getting any error - That means QVD file is good}
Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
rjyadav94
Contributor II
Contributor II
Author

thanks. is there any method to check ?