3

I tried \ds didn't get any relations data.

But I use SELECT * FROM information_schema.sequences; can get all the data.

Why doesn't \ds work?

asked Jun 11, 2021 at 9:00
0

1 Answer 1

7

\ds without argument doesn't show sequences that are not accessible through the current search_path, whereas information_schema.sequences ignores the search path.

On the other hand, information_schema.sequences won't show sequences that the current user cannot actually use, whereas \ds won't filter those out. According to the documentation:

Only those sequences are shown that the current user has access to (by way of being the owner or having some privilege).

To see all sequences in psql, try:

\ds *.*
answered Jun 11, 2021 at 10:50

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.