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: 
gauthamchilled
Creator
Creator

table not found

I am getting the table not found error...in the attached qvw

can anyone help?

1 Solution

Accepted Solutions
Not applicable

Hi

you mast insert NoConcatenate like this


NoConcatenate
RatesUSD:
Load
Currency,
DATE,
Rates
Resident Tab1;

DROP Table Tab1;

View solution in original post

11 Replies
pokassov
Specialist
Specialist

Table1:

Load * inline

[

A,B

10.20

];

Tab3:

Load * Inline

[A,F

10,90

];

Left join (Tab3)

load *

Resident Table1;

alexandros17
Partner - Champion III
Partner - Champion III

I've seen your doc but what do you want to do?

gauthamchilled
Creator
Creator
Author

I am trying to left join a resident table with other resident table where I encounter table not found error. attached was a example. but in my original doc I keep getting the same error.

jagan
Partner - Champion III
Partner - Champion III

Hi Gautham,

You missed INLINE keyword in your script, please try below script

Table1:

Load * inline

[

A,B

10.20

];

Tab3:

Load *

INLINE

[A,F

10,90

];

Left join (Tab3)

load *

Resident Table1;

alexandros17
Partner - Champion III
Partner - Champion III

So this could be the solution?

Table1:

Load * inline

[

A,B

10,20

];

Left Join

Tab3:

Load * Inline

[A,F

10,90

];

Not applicable

Hi. You forget  inline in second table

Table1:

Load * inline
[
A,B
10.20
]
;

Tab3:

Load * inline

Alvaro_Palacios
Support
Support

Hi Gautham,

Another way of doing it that works for me:

Tab3:

Load * inline

[A,F

10,90

];

Left join (Tab3)

Load * inline

[

A,B

10,20

];

gauthamchilled
Creator
Creator
Author

hi,

attached the document where I face the issue by replicating with similar example.

gauthamchilled
Creator
Creator
Author