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

Problem with creating a .qvd file

Dear all,

I am trying to create a .qvd file using the following code:

[test]:
LOAD * INLINE [
Maand, ID
1, 2
2, 3
]
;

store[test] into

This however throws the following error. Any thoughts on what goes wrong here?

1 Solution

Accepted Solutions
arulsettu
Master III
Master III

maybe space issue?

try this

store [test] into ;

View solution in original post

10 Replies
Chanty4u
MVP
MVP

what is the error?

Not applicable
Author

remove [] from path and also give space between store and table name

try this

[test]:

LOAD * INLINE [

Maand, ID

1, 2

2, 3

];

store [test] into C:\Users\860798\Desktop\test.qvd;

awhitfield
Partner - Champion
Partner - Champion

Hi Marc,

what's the error?

Andy

florentina_doga
Partner - Creator III
Partner - Creator III

try this

store [test] into

Chanty4u
MVP
MVP

its working fine enough to me

[test]:

LOAD * INLINE [

Maand, ID

1, 2

2, 3

];

store [test] into ;

qvd.PNG

marcus_malinow
Partner - Specialist III
Partner - Specialist III

Hi Marc,

you've not specified the output format in your STORE statement.

try this:

store[test] into (qvd)

Marcus

arulsettu
Master III
Master III

maybe space issue?

try this

store [test] into ;

nihalbuddy09
Creator II
Creator II

Hi,

As it appears to me that there was missing a "SPACE" after your STORE command, pls check again and try....

Nihal

HirisH_V7
Master
Master

Hi,


It may be the ,


[test]:
LOAD * INLINE [
Maand, ID
1, 2
2, 3
]
;

store [test] into


It may be the space after the store command.

&

Please check the location assigned to the qvd is correct. or check like this,


store [test] into [test.qvd];  



HTH,

Hirish


HirisH