Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Java Error : "table" cannot be resolved to a type

Dear experts, 

 

I have issue with my tPostgresqlRow. I would like to execute this query : 

 

UPDATE fait_vehicule_staging SET accident_id = fait_lieu_staging.accident_id

from fait_lieu_staging

where fait_vehicule_staging.lieu_id =  fait_lieu_staging.lieu_id

 

It works fine in a standard PGAmin for ex but not in Talend. I have this error which i don't understand : 

fait_usager_staging cannot be resolved to a type

 

Thank you for all your answers. Best regards.

 

Labels (1)
1 Solution

Accepted Solutions
ashif2
Creator II
Creator II

Please try the update statement with double quotes like below: 

 

"
UPDATE b SET data = a.data
from a
where a.id = b.id
"

View solution in original post

2 Replies
ashif2
Creator II
Creator II

Please try the update statement with double quotes like below: 

 

"
UPDATE b SET data = a.data
from a
where a.id = b.id
"

Anonymous
Not applicable
Author

Hello, 

Thank you for your answer. 

 

I've tried it and I have no more this error.