sql >> Base de Datos >  >> RDS >> PostgreSQL

¿Cómo se elimina una base de datos de plantilla de PostgreSQL?

postgres=# UPDATE pg_database SET datistemplate='false' WHERE datname='template_postgis';
UPDATE 1
postgres=# DROP DATABASE template_postgis;
DROP DATABASE
postgres=#