Forum Discussion
Error Using SQL to Prefilter Data from Hana / ODBC: ERROR [42S02]
- 4 years ago
Hi paulsnet1986
This error message indicates that it couldn't find the table "PROJECTDETAILLIST_PBI1". Please check the name of the table. Does it have an additional "1" at the end? From the first picture, you are querying data from a table named "PROJECTDETAILLIST_PBI".
If the table name is correct, please check the schema of the table. From the error message, it tried to find the table in schema WEBUSER by default. If this table is not in the schema, you should specifiy its schema in the SQL statement like
select * from schemaname.tablename where SoldTo = '10015'Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi paulsnet1986
This error message indicates that it couldn't find the table "PROJECTDETAILLIST_PBI1". Please check the name of the table. Does it have an additional "1" at the end? From the first picture, you are querying data from a table named "PROJECTDETAILLIST_PBI".
If the table name is correct, please check the schema of the table. From the error message, it tried to find the table in schema WEBUSER by default. If this table is not in the schema, you should specifiy its schema in the SQL statement like
select * from schemaname.tablename where SoldTo = '10015'
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.