Skip to end of banner
Go to start of banner

Error when trying to retrieve data using SQL

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

Problem Statement

Trying to retrieve data using SQL macro from the table under a public schema on a PostgreSQL will result in an error. 

Error Message 

org.postgresql.util.PSQLException: ERROR: relation "inventory" doesnot exist Position: 15

The above error occurs when there is no table exists with the given name. But in this case, the table name with "inventory" exists but as the table is in public schema it results in the same error as the table doesn't exists.

Environment

VersionServer 6.15.4
ApplicationConfluence
App Version10.0.0
Database TypePostgreSql


Cause

As the table is in public schema in PostgreSQL, it should be mentioned in the select statement


Solution

SELECT * FROM public. "inventory" ;

Result:

It will display the data in the table inventory:

S.noTableData
1Test-TableYes
2Test-DataNo
  • No labels