如何从PostgreSQL中删除模板数据库?

前端之家收集整理的这篇文章主要介绍了如何从PostgreSQL中删除模板数据库?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
postgres=# DROP DATABASE template_postgis;
ERROR:  cannot drop a template database

http://www.postgresql.org/docs/9.1/static/manage-ag-templatedbs.html使它看起来像,如果我设置template_postgis.datistemplate = false,我可以删除它,但我不知道如何设置。

postgres=# UPDATE pg_database SET datistemplate='false' WHERE datname='template_postgis';
UPDATE 1
postgres=# DROP DATABASE template_postgis;
DROP DATABASE
postgres=#
原文链接:https://www.f2er.com/postgresql/193647.html

猜你在找的Postgre SQL相关文章