Région de recherche :

Date :

https://phoenixnap.com › kb › delete-postgres-use

How to Delete a Postgres User (Drop User) - phoenixNAP

Learn how to remove a Postgres user account with the dropuser utility or the DROP USER statement. Also, find out how to delete multiple users, users with dependencies, and roles in PostgreSQL.

https://www.postgresql.org › docs › current › sql-dropuser.htm

PostgreSQL: Documentation: 17: DROP USER

DROP USER is an alternate spelling of DROP ROLE, which removes a database role from PostgreSQL. Learn the syntax, description, compatibility and see also DROP ROLE statement.

https://www.postgresql.fr › docs › current › sql-dropuser.html

DROP USER - PostgreSQL

L'instruction DROP USER est une extension PostgreSQL. Le standard SQL laisse la définition des utilisateurs à l'implantation.

https://www.postgresql.org › docs › current › app-dropuser.htm

PostgreSQL: Documentation: 17: dropuser

dropuser removes an existing PostgreSQL user. Superusers can use this command to remove any role; otherwise, only non-superuser roles can be removed, and only by a user who possesses the CREATEROLE privilege and has been granted ADMIN OPTION on the target role.

https://www.slingacademy.com › article › how-to-add-and-delete-users-in-postgresql

How to Add and Delete Users in PostgreSQL - Sling Academy

Learn how to create, grant, revoke, and drop roles in PostgreSQL, a popular relational database management system. Follow the steps and examples to manage user accounts and privileges effectively.

https://www.commandprompt.com › education › how-to-deletedrop-a-user-in-postgresql

How to Delete/Drop a User in PostgreSQL - CommandPrompt Inc.

Learn how to use the DROP USER command to delete or drop a single user or multiple users in Postgres. See the syntax, examples, and tips for using the IF EXISTS option.

How to Delete/Drop a User in PostgreSQL - CommandPrompt Inc.

https://docs.postgresql.fr › 11 › app-dropuser.html

dropuser - PostgreSQL

Exemples. Supprimer l'utilisateur joe de la base de données par défaut : $ dropuser joe. Supprimer l'utilisateur joe sur le serveur hébergé sur l'hôte eden, qui écoute sur le port 5000, avec demande de confirmation et affichage de la commande sous-jacente : $ dropuser -p 5000 -h eden -i -e joe Role "joe" will be permanently removed.

https://www.techonthenet.com › postgresql › users › drop_user.php

PostgreSQL: DROP USER statement - TechOnTheNet

This PostgreSQL tutorial explains how to use the PostgreSQL DROP USER statement with syntax and examples. The DROP USER statement is used to remove a user from the PostgreSQL database.

https://runebook.dev › fr › docs › postgresql › app-dropuser

PostgreSQL - dropuser [fr] - Runebook.dev

Pour supprimer l'utilisateur joe du serveur de base de données par défaut : $ dropuser joe. Pour supprimer l'utilisateur joe à l'aide du serveur sur l'hôte eden , port 5000, avec vérification et aperçu de la commande sous-jacente : $ dropuser - p 5000 - h eden - i - e joe. Role "joe" will be permanently removed.

https://weap.io › learn › postgresql › how-to-delete-a-user-in-postgresql

How to delete a user in PostgreSQL - Weap.io

A PostgreSQL user can be deleted using two methods: the dropuser utility and the DROP USER statement.