PostgreSQL
 sql >> Teknologi Basis Data >  >> RDS >> PostgreSQL

Bagaimana cara Memutuskan sambungan dari database dan kembali ke database default di PostgreSQL?

Caranya mudah, lihat saja contohnya.

--basis data saya

postgres=# \l
                               List of databases
   Name    |  Owner   | Encoding | Collate | Ctype |     Access privileges     
-----------+----------+----------+---------+-------+---------------------------
 francs    | postgres | UTF8     | C       | C     | =Tc/postgres             +
           |          |          |         |       | postgres=CTc/postgres    +
           |          |          |         |       | francs=C*T*c*/postgres   +
           |          |          |         |       | select_only=c/francs
 postgres  | postgres | UTF8     | C       | C     | 
 source_db | postgres | UTF8     | C       | C     | =Tc/postgres             +
           |          |          |         |       | postgres=CTc/postgres    +
           |          |          |         |       | source_db=C*T*c*/postgres
 template0 | postgres | UTF8     | C       | C     | =c/postgres              +
           |          |          |         |       | postgres=CTc/postgres
 template1 | postgres | UTF8     | C       | C     | =c/postgres              +
           |          |          |         |       | postgres=CTc/postgres
(5 rows)

--beralih ke db franc sebagai peran franc

postgres=# \c francs francs
You are now connected to database "francs" as user "francs".

--swith ke db postgres sebagai peran postgres

francs=> \c postgres postgres

You are now connected to database "postgres" as user "postgres".
postgres=# 

--putuskan sambungan dari db

postgres=# \q


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PostqreSQL di Rails:Bagaimana cara membuat server berjalan secara lokal DAN menerima koneksi pada soket domain Unix?

  2. Postgres mencegah stempel waktu dengan konversi zona waktu

  3. Kebocoran memori di server postgresql setelah memutakhirkan ke Rails 4

  4. Menggunakan pg_notify dalam fungsi pemicu PostgreSQL

  5. Masukkan kamus kecil seperti {1:23, 2:45, 3:17} ke dalam kolom tabel database SQL di Postgres menggunakan bahasa python