Hi,
--------+-----------+--------+----------+-------------+-------------+---------------+--------------+--------------+---------------+--------------+------------+---------------+--------
177109 | RestoreDB | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12891 | 1800 | 1 | 1663 |
(1 row)
--------+-----------+--------+----------+-------------+-------------+---------------+--------------+--------------+---------------+--------------+------------+---------------+--------
177109 | RestoreDB | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12891 | 1800 | 1 | 1663 |
--------+-----------+--------+----------+-------------+-------------+---------------+--------------+--------------+---------------+--------------+------------+---------------+--------
177109 | RestoreDB | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12891 | 1800 | 1 | 1663 |
(1 row)
---------------------------------------------------------------------------------------------------------------
PostgreSQL 9.3.1 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-52), 64-bit
(1 row)
-------+---------+-----+----------+---------+------------------+-------------+-----------------+-------------+---------------+------------+-------------+--------------+---------+-------+-------
(0 rows)
Thanks
Dropped database 'RestoreDB' is still being listed in pg_database.
Any idea why this behavior is seen ? Also I don't see any open connections to this database.
pg_stat_activity has no rows for this database.
- postgres=# create database ResotreDB;
CREATE DATABASE
- postgres=# select oid, * from pg_database
where datname like 'RestoreDB';
--------+-----------+--------+----------+-------------+-------------+---------------+--------------+--------------+---------------+--------------+------------+---------------+--------
177109 | RestoreDB | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12891 | 1800 | 1 | 1663 |
(1 row)
- postgres=# drop database RestoreDB;
- postgres=# select oid, * from pg_database
where datname like 'RestoreDB';
--------+-----------+--------+----------+-------------+-------------+---------------+--------------+--------------+---------------+--------------+------------+---------------+--------
177109 | RestoreDB | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12891 | 1800 | 1 | 1663 |
- postgres=# create database RestoreDB;
- postgres=# select oid, * from pg_database
where datname like 'RestoreDB';
--------+-----------+--------+----------+-------------+-------------+---------------+--------------+--------------+---------------+--------------+------------+---------------+--------
177109 | RestoreDB | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12891 | 1800 | 1 | 1663 |
(1 row)
- postgres=# select * from version();
---------------------------------------------------------------------------------------------------------------
PostgreSQL 9.3.1 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-52), 64-bit
(1 row)
- postgres=# select * from pg_stat_activity
where datname like 'RestoreDB';
-------+---------+-----+----------+---------+------------------+-------------+-----------------+-------------+---------------+------------+-------------+--------------+---------+-------+-------
(0 rows)
Thanks
Girish