ERROR: permission denied for relation svl_user_info in redshift

0

Hi I am trying to access the svl_user_info table using the super user but still I am facing the permission denied error.

Same Way I am facing the error in Redshift also ( server one).Here user is not the admin. Which role user should have to access the select * from svl_user_info ;

Venkat
gefragt vor 7 Monaten770 Aufrufe
2 Antworten
0

Hello.

In Amazon Redshift, the svl_user_info is a system view that provides details about user sessions on the database. If you're encountering permission errors when trying to access this view, it typically indicates insufficient permissions.

Here are the steps to address the issue:

  • Superuser Access: First, ensure you truly have superuser access. Superusers in Redshift should have access to all tables and views. If you're logged in as a superuser and still facing this issue, there might be an unexpected configuration or a Redshift bug.

  • GRANT Permissions: If you're not a superuser or want to grant another user access to the svl_user_info view, you can provide the necessary permissions using the following SQL command:

GRANT SELECT ON svl_user_info TO [username];

Regards, Andrii

profile picture
EXPERTE
beantwortet vor 7 Monaten
0

Hi Venkat,

Are you using a Redshift provisioned cluster or a Redshift serverless endpoint?

SVL_USER_INFO is a system view that can be queried on provisioned clusters only.

You can use SVV_USER_INFO instead.

Regards,

AWS
EXPERTE
Ziad
beantwortet vor 7 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen