Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Iwin
Partner - Creator
Partner - Creator

Store SQL query as qvd

Hi All,

I want to store following query as qvd .

What should I put in load statement as I am getting column not found error currently.

Capture.PNG

3 Replies
Or
MVP
MVP

Load * would work fine, for obvious reasons.

If you need to manually spell out the columns, check what is returned by the query without a load statement and use that exact naming convention. In Oracle SQL queries, this will often be all UPPERCASE field names (and without the table qualifier).

dineshm030
Creator III
Creator III

The column is not available in the mtt table.

NitinK7
Specialist
Specialist

tablename:

load *;

SELECT 

your sql field

store  tablename  into  [your folder path /tablename.qvd](qvd);