本文介绍了如何从PostgreSQL删除模板数据库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
postgres=# DROP DATABASE template_postgis;
ERROR: cannot drop a template database
看起来如果我设置 template_postgis.datistemplate = false
,我将能够删除它,但是我不知道如何设置它。
http://www.postgresql.org/docs/9.1/static/manage-ag-templatedbs.html makes it seem like if I set template_postgis.datistemplate = false
, I'll be able to drop it, but I don't know how to set that.
推荐答案
postgres=# UPDATE pg_database SET datistemplate='false' WHERE datname='template_postgis';
UPDATE 1
postgres=# DROP DATABASE template_postgis;
DROP DATABASE
postgres=#
这篇关于如何从PostgreSQL删除模板数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!