Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
manoranjan_d
Specialist
Specialist

Table not found

A:

Load  Distinct

name,

emp id,

sal,

desg

RESIDENT Emp;

INNER JOIN

LOAD

Distinct

name,

empid,

max(date) as latest date

RESIDENT A

group by name,

emp id;

I m getting table not found error while running the script

9 Replies
settu_periasamy
Master III
Master III

Can you post the Entire Script?

Is your 'A' table is loading without Inner Join?

Check the Emp table exist or not?

manoranjan_d
Specialist
Specialist
Author

emp table is exist only i m getting error on resident table

avinashelite

I think you table A is getting merged with another table thats why your not able to get the table A ...try like this

NOCONCATENATE

A:

Load  Distinct

name,

[emp id,]

sal,

desg

RESIDENT Emp;

INNER JOIN

LOAD

Distinct

name,

[emp id],

max(date) as latest date

RESIDENT A

group by name,

[emp id];

MK_QSL
MVP
MVP

A:

Load  Distinct

name,

emp id,

sal,

desg

RESIDENT Emp;

INNER JOIN

LOAD

Distinct

name,

empid,

max(date) as latest date

RESIDENT A

group by name,

emp id;

WHERE IS DATE FIELD IN TABLE A?

manoranjan_d
Specialist
Specialist
Author

Thanks

manoranjan_d
Specialist
Specialist
Author

by using no concatenate i got the output

MK_QSL
MVP
MVP

Are you sure?

Inner Join is using max(date) RESIDENT A...

Table A don't have date field !!!

I am surprised but as far as you got the solution, OK for me!

Can you share your screenshot or script which is working now?

Anonymous
Not applicable

avinashelite

mrkachhiaimp‌ I think he has we have not got the rite script

manoranjan.d If you have got the answer mark the correct answer and close this thread