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

table not found

In the following request (of which I have created more than 100 like it) I am getting a Table Not Found error.

I cannot understand this due to having done so many others without issue and not getting the error.  My understanding is that the table gets created by this very code.  I have however created a blank qvd file, to see if this works, it didnt.

Any ideas?

// Load Purchase Orders



PurchOrders:

LOAD

PURCHID as [POrder_PURCHID],

PURCHNAME as [POrder_PURCHNAME],

ORDERACCOUNT as [POrder_ORDERACCOUNT],

 
WINDOWSID as [POrder_WINDOWSID];
    

SQL SELECT

    PURCHID,

    PURCHNAME,

    ORDERACCOUNT,

    WINDOWSID
       

FROM SELSQLAX.DynAxLive.dbo.PURCHTABLE;


store PurchOrders into \\sel-app-03\QlikView\Synseal\data\PurchOrders.qvd;

Drop Table PurchOrders;

1 Solution

Accepted Solutions
Not applicable
Author

Thanks for your ideas troups.  I have just copied and pasted this and dumped it into a new file and it worked straight away.

Bizarre.  Maybe a bug.  Who knows.

View solution in original post

3 Replies
Not applicable
Author

Have you tried this SQL sentence from Managemet Studio (with the same user)? This error usually occurs when there is no records in the table.

JG

Not applicable
Author

try this

PurchOrders:

LOAD

PURCHID as [POrder_PURCHID],

PURCHNAME as [POrder_PURCHNAME],

ORDERACCOUNT as [POrder_ORDERACCOUNT],

 
WINDOWSID as [POrder_WINDOWSID];
    

SQL SELECT

    PURCHID,

    PURCHNAME,

    ORDERACCOUNT,

    WINDOWSID
       

FROM SELSQLAX.DynAxLive.dbo.PURCHTABLE;


store PurchOrders into 😧\PurchOrders.qvd;

Drop Table PurchOrders;

Not applicable
Author

Thanks for your ideas troups.  I have just copied and pasted this and dumped it into a new file and it worked straight away.

Bizarre.  Maybe a bug.  Who knows.