Durch die Nutzung dieser Website, Sie stimmen dem zu Datenschutzrichtlinie.
Akzeptieren
EnterEnterEnter
  • HEIM
  • IT-PROFI
  • Technik
  • MICROSOFT
    • Azurblau
    • Configmgr/sccm
    • DPM
    • Orchestrator
    • Hyper-V
    • Microsoft Edge Insider
    • MSI
    • Büro 365
    • Büro-Insider
    • Power Bi
    • Skype
    • SQL-Server
    • Mannschaften
  • FENSTER
    • Windows Admin Center
    • Windows-Client
    • Windows-Server
  • SCCM-Abfragesammlungsliste
Lektüre: PostgreSQL DROP Database
Schriftart-ResizerAa
EnterEnter
Schriftart-ResizerAa
  • HEIM
  • IT-PROFI
  • Technik
  • MICROSOFT
  • FENSTER
  • SCCM-Abfragesammlungsliste
Suchen
  • HEIM
  • IT-PROFI
  • Technik
  • MICROSOFT
    • Azurblau
    • Configmgr/sccm
    • DPM
    • Orchestrator
    • Hyper-V
    • Microsoft Edge Insider
    • MSI
    • Büro 365
    • Büro-Insider
    • Power Bi
    • Skype
    • SQL-Server
    • Mannschaften
  • FENSTER
    • Windows Admin Center
    • Windows-Client
    • Windows-Server
  • SCCM-Abfragesammlungsliste
PostgreSQL

PostgreSQL DROP Database

Veröffentlicht: Februar 18, 2024
4 Min. Lesezeit
AKTIE

PostgreSQL DROP Database.

Inhalt
Using DROP DATABASESyntaxParametersBeispielUsing dropdb CommandSyntaxParametersOptionsBeispiel

Using DROP DATABASE

This command drops a database. It removes the catalog entries for the database and deletes the directory containing the data. It can only be executed by the database owner. This command cannot be executed while you or anyone else is connected to the target database (connect to Postgres or any other database to issue this command).

Syntax

The syntax for DROP DATABASE is given below −

DROP DATABASE [ IF EXISTS ] <name>

Parameters

The table lists the parameters with their descriptions.

S. NEIN.Parameter & Beschreibung
1IF EXISTSDo not throw an error if the database does not exist. A notice is issued in this case.
2NameThe name of the database to remove.

We cannot drop a database that has any open connections, including our own connection from psql oder pgAdmin III. We must switch to another database or template1 if we want to delete the database we are currently connected to. Daher, it might be more convenient to use the program dropdb stattdessen, which is a wrapper around this command.

Beispiel

The following is a simple example, which will delete testdb from your PostgreSQL schema −

DROP DATABASE testdb;

Using dropdb Command

PostgresSQL command line executable dropdb is a command-line wrapper around the SQL command DROP DATABASE. There is no effective difference between dropping databases via this utility and via other methods for accessing the server. dropdb destroys an existing PostgreSQL database. The user, who executes this command must be a database super user or the owner of the database.

Syntax

The syntax for dropdb is as shown below −

dropdb  [option...] <dbname>

Parameters

The following table lists the parameters with their descriptions

S. NEIN.Parameter & Beschreibung
1dbnameThe name of a database to be deleted.
2Optioncommand-line arguments, which dropdb accepts.

Options

The following table lists the command-line arguments dropdb accepts −

S. NEIN.Option & Beschreibung
1-eShows the commands being sent to the server.
2-ichIssues a verification prompt before doing anything destructive.
3-VPrint the dropdb version and exit.
4–if-existsDo not throw an error if the database does not exist. A notice is issued in this case.
5–helpShow help about dropdb command-line arguments, and exit.
6-h hostSpecifies the host name of the machine on which the server is running.
7-p portSpecifies the TCP port or the local UNIX domain socket file extension on which the server is listening for connections.
8-U usernameUser name to connect as.
9-wNever issue a password prompt.
10-WForce dropdb to prompt for a password before connecting to a database.
11–maintenance-db=dbnameSpecifies the name of the database to connect to in order to drop the target database.

Beispiel

The following example demonstrates deleting a database from OS command prompt −

dropdb -h localhost -p 5432 -U postgress testdb
Password for user postgress: ****

The above command drops the database testdb. Here, I have used the postgres (found under the pg_roles of template1) username to drop the database.

GETAGGT:databasedbPostgreSQLpsql
Vorheriger Artikel L1 L2 L3 What’s the Difference
Nächster Artikel Büro-Insider 2206 für Windows
Hinterlassen Sie einen Kommentar Hinterlassen Sie einen Kommentar

Hinterlassen Sie eine Antwort Antwort abbrechen

Ihre E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind markiert *

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahren Sie, wie Ihre Kommentardaten verarbeitet werden.

Übersetzung

English中文(简体)DanskNederlandsFrançaisDeutschItaliano한국어PolskiPortuguêsRomânăEspañolУкраїнська
von Transposh - Übersetzungs-Plug-In für WordPress

Beliebte Beiträge

Systemanforderungen für Windows Server 2016
Windows-Server
Configuration Manager-Abfragesammlungsliste
Configuration Manager-Abfragesammlungsliste
ConfigMgr
Strukturierte/verwaltete Navigation auf modernen Seiten in klassischen Teamsites aktiviert
Techn
SCCM konnte DP-Standorte nicht als erwartete Version von MP abrufen
ConfigMgr

Aktuelle Beiträge

Installieren und Konfigurieren von Fail2ban für den SSH-Schutz unter Ubuntu 24.04
Linux
Aktivieren und Konfigurieren von FirewallD auf AlmaLinux
Linux
Benutzererstellung und SSH-Schlüsseleinrichtung in AlmaLinux
Linux
So setzen Sie das Passwort unter AlmaLinux zurück
Linux

© 2023 Enter

Gehen Sie zur mobilen Version
Willkommen zurück!

Melden Sie sich bei Ihrem Konto an

Benutzername oder E-Mail-Adresse
Passwort

Passwort verloren?