Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Problem Statement

...

Problem statement

An error occurs while retrieving data from the table under a public schema

...

in PostgreSQL, using the SQL macro.

Error message 

Code Block
themeMidnight
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

...

bgColor#f9ecc5

...

When the table from which the data is retrieved, is in a public schema in PostgreSQL, it should be mentioned in the SQL select statement.

...

Image Added

Solution

Code Block
themeMidnight
SELECT * FROM public. "inventory" ;

Result

...

It will display the data in the table inventoryThe data from the inventory table is displayed as follows:

S. noTableData
1Test-TableYes
2Test-DataNo

...