Versions Compared

Key

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

...

Info
When trying to retrieve data using SQL with PostgreSQL profile with public tables(table name is inventory) as  SELECT * FROM inventory; will result in below error:

Error Message 

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

...

VersionServer 6.15.4
ApplicationConfluence
App Version10.0.0
Database TypePostgreSql


Cause

Panel
bgColor#f9ecc5

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

Image Added

Solution

  1. SELECT * FROM public. "inventory"
Info