Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Store into qvd

I want to store each table that I use into a qvd.

When I reload the script I get the error that loading the script has failed.

It was running perfectly before I added the store expression.

Can anyone see what is wrong with my script?

Kind regards,

Katleen

1 Solution

Accepted Solutions
senpradip007
Specialist III
Specialist III

I think first you should  try with absolute path then with relative one.

View solution in original post

7 Replies
MayilVahanan

Hi

Do you have QVD folder and that path location which you are mentioned is validate?

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
aveeeeeee7en
Specialist III
Specialist III

Don't use Brackets [ ]

Use this:

Store projects into ..\QVD\projects.qvd(qvd);

Drop Table projects;

Regards

Aviral Nag

amit_saini
Master III
Master III

Try This:

projects:

LOAD id                                                                     as project_id,

    `continent_id`,

    `country_id`,

    `branch_id`,

    `region_id`,

    `agency_id`,

    name                                                                     as project_name,

    description,

    active                                                                     as project_active,

    status                                                                     as project_status,

    account,

    type,

    `is_deleted`                                                            as project_is_deleted;

  

SQL SELECT *

FROM `ciweb_denc_qlikview`.projects WHERE is_deleted="0";

Store projects into ..\QVD\projects.qvd(qvd);

Drop Table projects;

Thanks,
AS

Not applicable
Author

This is the qvw that I use and the folder where I want to store my qvd.

Not applicable
Author

Still doesn't work.

I tried it without the brackets.

senpradip007
Specialist III
Specialist III

I think first you should  try with absolute path then with relative one.

MayilVahanan

HI

Try like this

Store projects into projects.qvd(qvd);

If its stored, then problem in the location which you trying to save.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.