PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come cambiare utente in superutente in PostgreSQL

A volte potrebbe essere necessario cambiare utente in superutente in PostgreSQL. In questo articolo, vedremo come cambiare utente in superutente in PostgreSQL.


Come cambiare utente in superutente in PostgreSQL

È davvero facile cambiare utente in superutente così come cambiare superutente in utente normale in PostgreSQL.

Accedi a PostgreSQL ed esegui il seguente comando ALTER USER per cambiare utente test_user al superutente. Sostituisci utente_test con nome utente secondo il tuo requisito.

postgres-# ALTER USER test_user WITH SUPERUSER;

Nel comando precedente, utilizziamo la clausola WITH SUPERUSER per cambiare utente in superutente.

Allo stesso modo, esegui il seguente comando ALTER USER per rimuovere il privilegio di superutente da un utente. In questo caso utilizzare la clausola WITH NOSUPERUSER.

postgres-# ALTER USER test_user WITH NOSUPERUSER;

Questo è tutto. Come puoi vedere, è davvero facile cambiare utente in superutente e un superutente in utente normale in PostgreSQL. Ubiq semplifica la visualizzazione dei dati e il monitoraggio in dashboard in tempo reale. Prova Ubiq gratuitamente.