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: 
trishita
Creator III
Creator III

how to create qvd from sql server

I have access to sql server:

SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW";

I am trying to load the view into qvd form.How can I convert into a load statement ?

Labels (1)
1 Solution

Accepted Solutions
rubenmarin
MVP
MVP

Hi Trishita, I think you only need:

TableName:

LOAD *;

SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW";

STORE TableName into TableName.qvd(qvd);


DROP Table TableName; // Optional, if you want to delete the laoded table in QV.

View solution in original post

2 Replies
rubenmarin
MVP
MVP

Hi Trishita, I think you only need:

TableName:

LOAD *;

SQL SELECT *
FROM FSCDB."MO_PURCH_SOUNDING_CORRECTION_VIEW";

STORE TableName into TableName.qvd(qvd);


DROP Table TableName; // Optional, if you want to delete the laoded table in QV.

trishita
Creator III
Creator III
Author

Thanks a lot!!