如何在列表中获取现有的postgres数据库

时间:2013-10-30 09:25:02

标签: python postgresql

我正在尝试编写一个python脚本来自动执行使用最新生产转储创建数据库的任务。我正在使用psychopg2。

但是在创建新数据库之后我想删除以前使用过的数据库。我的想法是,如果我可以在列表中获取数据库的名称并对其进行排序,我可以轻松删除不需要的数据库。

所以,我的问题是:如何在列表中获取DB的名称。

由于

2 个答案:

答案 0 :(得分:1)

您可以使用

列出所有数据库
SELECT d.datname as "Name",
FROM pg_catalog.pg_database d
ORDER BY 1;

您可以按照自己喜欢的方式过滤或订购。

答案 1 :(得分:0)

  

psql -E -U postgres -c“\ l”

上述命令的输出类似于

********* QUERY **********
SELECT d.datname as "Name",
       pg_catalog.pg_get_userbyid(d.datdba) as "Owner",
       pg_catalog.pg_encoding_to_char(d.encoding) as "Encoding",
       d.datcollate as "Collate",
       d.datctype as "Ctype",
       pg_catalog.array_to_string(d.datacl, E'\n') AS "Access privileges"
FROM pg_catalog.pg_database d
ORDER BY 1;
**************************

                              List of databases
     Name     |  Owner   | Encoding | Collate | Ctype |   Access privileges   
--------------+----------+----------+---------+-------+-----------------------
 mickey       | postgres | UTF8     | C       | C     | 
 mickeylite   | postgres | UTF8     | C       | C     | 
 postgres     | postgres | UTF8     | C       | C     | 
 template0    | postgres | UTF8     | C       | C     | =c/postgres          +
              |          |          |         |       | postgres=CTc/postgres
 template1    | postgres | UTF8     | C       | C     | =c/postgres          +
              |          |          |         |       | postgres=CTc/postgres
(5 rows)