我試圖從3天內刪除沒有掉落的'test123'數據庫。 Postgres回覆沒有這樣的數據庫存在..我不知道它是如何列出這樣的。和數據庫\ rPostgreSQL:刪除不存在參數的數據庫
template1=# select * from pg_database;
datname | datdba | encoding | datcollate | datctype | datistemplate | datallowconn | datconnlimit | datlastsysoid | datfrozenxid | dattablespace | datacl
-----------------------+--------+----------+-------------+-------------+---------------+--------------+--------------+---------------+--------------+---------------+-------------------------------------
template1 | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | t | t | -1 | 12035 | 709 | 1663 | {=c/postgres,postgres=CTc/postgres}
template0 | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | t | f | -1 | 12035 | 709 | 1663 | {=c/postgres,postgres=CTc/postgres}
postgres | 10 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12035 | 709 | 1663 |
PremierSuppliers | 16384 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12035 | 709 | 1663 |
\r +| 16384 | 6 | en_US.UTF-8 | en_US.UTF-8 | f | t | -1 | 12035 | 709 | 1663 |
test123 | | | | | | | | | | |
任何解決方法?放棄\ r和test123。我需要知道放在\ r中的'+'是什麼。以及如何放棄它。只是爲了讓你知道我已經嘗試了類似問題here給出的步驟,但我的問題沒有解決。
我想你有一個名爲'\ r ... test123'的數據庫(其中'...'是一堆空格)或類似的數據庫。 –