Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Nku16
Contributor II
Contributor II

unable to store qvd's

Hi guys

Im trying to load and store qvd's from our voip' service provider in order to create a few reports that need to be sent out ,however im coming across an error that goes as follows

Connection not found: Connection_name:DataFiles (: space not found)
 
The error occurred here:store cfg_agent INTO [lib://Connectioname:DataFiles/db_name-table.qvd](qvd)

is there anyway around this?
Labels (2)
1 Reply
MartW
Partner - Specialist
Partner - Specialist

@Nku16 ,

I see that you are saying that you try to store the table via the following 

[lib://connectionname:Datafiles/filename.qvd] (qvd)

normally when you store a table you should use

Store (tablename) INTO [lib://dataconnectionname/filename.qvd] (qvd);

or if you want to store in a subfolder

Store (tablename) INTO [lib://dataconnectionname/subfolder/filename.qvd] (qvd);

 

 

otherwise there are 3 thing you want to check:

1. the dataconnection doesn't exists (go to the data script editor and on the right side does the dataconnection exists for you)

2. it exists but you don't have the proper rights to access it (go to the data script editor and on the right side does the dataconnection exists for you)

3. if you see the dataconnection please load a table from that connection.

it will show you the

From [lib://dataconnection/file.qvd] (qvd); 

you can copy this and use this to see if this will fix the issue.