postgresql – 无法删除数据库

postgresql – 无法删除数据库,第1张

概述我是PostgreSQL的新手,我遇到的问题是我认为是一个简单的命令DROP DATABASE和DROPDB.为什么以下命令不会删除我的数据库? postgres=# drop database clientmspostgres-# \l List of databases Name | Owner 我是Postgresql的新手,我遇到的问题是我认为是一个简单的命令DROP DATABASE和DROPDB.为什么以下命令不会删除我的数据库?
postgres=# drop database clIEntmspostgres-# \l                                    List of databases   name    |    Owner     | EnCoding |   Collate   |    Ctype    |   Access privileges   -----------+--------------+----------+-------------+-------------+----------------------- clIEntms  | clIEntmsuser | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 |  postgres  | postgres     | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 |  template0 | postgres     | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres          +           |              |          |             |             | postgres=CTc/postgres template1 | postgres     | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres          +           |              |          |             |             | postgres=CTc/postgres(4 rows)postgres-# dropdb clIEntmspostgres-# \l                                    List of databases   name    |    Owner     | EnCoding |   Collate   |    Ctype    |   Access privileges   -----------+--------------+----------+-------------+-------------+----------------------- clIEntms  | clIEntmsuser | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 |  postgres  | postgres     | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 |  template0 | postgres     | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres          +           |              |          |             |             | postgres=CTc/postgres template1 | postgres     | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres          +           |              |          |             |             | postgres=CTc/postgres(4 rows)
你忘记了分号;在命令之后.尝试:
DROP DATABASE clIEntms;

不完整的命令也由提示符指示: – 而不是=.这是为了允许多行命令.

总结

以上是内存溢出为你收集整理的postgresql – 无法删除数据库全部内容,希望文章能够帮你解决postgresql – 无法删除数据库所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1168270.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存