there the postgres other force exist example drop detail cannot postgresql sql-drop

the - PostgreSQL: Drop Database pero DB sigue ahí



pgadmin drop database (1)

Soy nuevo en PostgreSQL y trato de entenderlo. Estoy familiarizado con db''s y MySQL.

Estoy tratando de eliminar la base de datos, que creé ya que psql parece ignorar los cambios que intento forzar a través de Django

Cuando ejecuto /l obtengo la siguiente respuesta:

List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges ------------------+--------+----------+-------------+-------------+------------------- postgres | neurix | UTF8 | en_AU.UTF-8 | en_AU.UTF-8 | test_db | neurix | UTF8 | en_AU.UTF-8 | en_AU.UTF-8 | template0 | neurix | UTF8 | en_AU.UTF-8 | en_AU.UTF-8 | =c/neurix + | | | | | neurix=CTc/neurix template1 | neurix | UTF8 | en_AU.UTF-8 | en_AU.UTF-8 | =c/neurix + | | | | | neurix=CTc/neurix template_postgis | neurix | UTF8 | en_AU.UTF-8 | en_AU.UTF-8 | (5 rows)

Ahora quiero soltar la base de datos "test_db" con

DROP DATABASE test_db

pero cuando ejecuto /l después, la tabla todavía está allí y la visión general se parece a eso.


¿Escribiste un ; Después de la DROP DATABASE test_db ? ¿PostgreSQL imprimió una respuesta a su comando?