Pgadmin 4 schema visibility

Started by Jill Jadeover 6 years ago4 messagesgeneral
Jump to latest
#1Jill Jade
jill779ks@gmail.com

Hello everyone,

I am using Postgres 11 with Pgadmin4. System schemas pg_temp and pg_toast
are not visible when I do \dn+ in psql.

But when I do SELECT nspname FROM pg_catalog.pg_namespace;, I see the
schemas.
[image: namespace.jpg]
[image: dn.PNG]
[image: pgadmin4.PNG]
Can anyone explain why is this so? Does anyone have a solution for this?

Thank you

Attachments:

dn.PNGimage/png; name=dn.PNGDownload
namespace.jpgimage/jpeg; name=namespace.jpgDownload
pgadmin4.PNGimage/png; name=pgadmin4.PNGDownload
#2Murtuza Zabuawala
murtuza.zabuawala@enterprisedb.com
In reply to: Jill Jade (#1)
Re: Pgadmin 4 schema visibility

Hi,

You can configure pgAdmin4 to hide/show system objects.
Goto File menu -> Preferences -> Browser -> Display -> Show system objects?

--
Regards,
Murtuza Zabuawala
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

On Mon, Nov 25, 2019 at 3:19 PM Jill Jade <jill779ks@gmail.com> wrote:

Show quoted text

Hello everyone,

I am using Postgres 11 with Pgadmin4. System schemas pg_temp and pg_toast
are not visible when I do \dn+ in psql.

But when I do SELECT nspname FROM pg_catalog.pg_namespace;, I see the
schemas.
[image: namespace.jpg]
[image: dn.PNG]
[image: pgadmin4.PNG]
Can anyone explain why is this so? Does anyone have a solution for this?

Thank you

Attachments:

dn.PNGimage/png; name=dn.PNGDownload
namespace.jpgimage/jpeg; name=namespace.jpgDownload
pgadmin4.PNGimage/png; name=pgadmin4.PNGDownload
#3Jill Jade
jill779ks@gmail.com
In reply to: Murtuza Zabuawala (#2)
Re: Pgadmin 4 schema visibility

Hello,

I have done this step, and still the problem is persisting. Do you have any
other solution?

Thank you

On Mon, 25 Nov 2019 at 14:52, Murtuza Zabuawala <
murtuza.zabuawala@enterprisedb.com> wrote:

Show quoted text

Hi,

You can configure pgAdmin4 to hide/show system objects.
Goto File menu -> Preferences -> Browser -> Display -> Show system
objects?

--
Regards,
Murtuza Zabuawala
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

On Mon, Nov 25, 2019 at 3:19 PM Jill Jade <jill779ks@gmail.com> wrote:

Hello everyone,

I am using Postgres 11 with Pgadmin4. System schemas pg_temp and pg_toast
are not visible when I do \dn+ in psql.

But when I do SELECT nspname FROM pg_catalog.pg_namespace;, I see the
schemas.
[image: namespace.jpg]
[image: dn.PNG]
[image: pgadmin4.PNG]
Can anyone explain why is this so? Does anyone have a solution for this?

Thank you

Attachments:

dn.PNGimage/png; name=dn.PNGDownload
namespace.jpgimage/jpeg; name=namespace.jpgDownload
pgadmin4.PNGimage/png; name=pgadmin4.PNGDownload
#4Adrian Klaver
adrian.klaver@aklaver.com
In reply to: Jill Jade (#1)
Re: Pgadmin 4 schema visibility

On 11/24/19 11:55 PM, Jill Jade wrote:

Hello everyone,

I am using Postgres 11 with Pgadmin4. System schemas pg_temp and
pg_toast are not visible when I do \dn+ in psql.

But when I do SELECT nspname FROM pg_catalog.pg_namespace;, I see the
schemas.
namespace.jpg
dn.PNG
pgadmin4.PNG
Can anyone explain why is this so? Does anyone have a solution for this?

\dnS+:

https://www.postgresql.org/docs/11/app-psql.html

\dn[S+] [ pattern ]

Lists schemas (namespaces). If pattern is specified, only schemas
whose names match the pattern are listed. By default, only user-created
objects are shown; supply a pattern or the S modifier to include system
objects. If + is appended to the command name, each object is listed
with its associated permissions and description, if any.

Thank you

--
Adrian Klaver
adrian.klaver@aklaver.com