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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Functionality of ‘STORE’ keyword in QV

Hi All,

What is the functionality of using  ‘STORE’ keyword?

Let me know small example like Store [Aircraft Configuration]….. QVD\Source\Aircraft Configuration.qvd]

Regards,

Senthil..

1 Solution

Accepted Solutions
Not applicable
Author

syntax

store tablename into  d:\abc.qvd

generally by the use of store keyword we save our data in other format .

store keyword is beneficial for making qvd file.

table1:

LOAD * INLINE [

    id, name

    1, a

    2, b

    3, c

    4, d

    5, e

];

STORE table1 into D:\table_new.qvd;

View solution in original post

2 Replies
Not applicable
Author

syntax

store tablename into  d:\abc.qvd

generally by the use of store keyword we save our data in other format .

store keyword is beneficial for making qvd file.

table1:

LOAD * INLINE [

    id, name

    1, a

    2, b

    3, c

    4, d

    5, e

];

STORE table1 into D:\table_new.qvd;

Not applicable
Author

Hi Vishwa,

Thanking you..

Regards,

Senthil...