Reputation: 51
I am not being able to find an alternative for sys.schemas in postgresql. sys.schemas is available in sql server. I am new to postgres and currently migrating from sql server to postgresql. Kindly help me with this. Thanks in advance.
Upvotes: 0
Views: 739
Reputation: 51406
pg_catalog.pg_namespace
would be it.
Or you can use \dn
metacommand in psql
Upvotes: 2