sql >> Databáze >  >> RDS >> PostgreSQL

Jak spustit psql interaktivní v jeho docker kontejneru?

Musíte se připojit k uživateli postgres

docker exec -it -u postgres db_of_ivms bash

Nyní pro kontejnery, které nezadáte POSTGRES_USER: ivms_usr :

[email protected]:/$ psql
postgres=# \l
                                 List of databases
   Name    |  Owner   | Encoding |  Collate   |   Ctype    |   Access privileges   
-----------+----------+----------+------------+------------+-----------------------
 postgres  | postgres | UTF8     | en_US.utf8 | en_US.utf8 | 
 template0 | postgres | UTF8     | en_US.utf8 | en_US.utf8 | =c/postgres          +
           |          |          |            |            | postgres=CTc/postgres
 template1 | postgres | UTF8     | en_US.utf8 | en_US.utf8 | =c/postgres          +
           |          |          |            |            | postgres=CTc/postgres
(3 rows)

Pokud zadáte POSTGRES_USER: ivms_usr a Databáze (všimněte si argumentů příkazu psql):

docker exec -it -u postgres db_of_ivms bash
[email protected]:/$ psql -U ivms_usr -d ivms_db
psql (10.12 (Debian 10.12-1.pgdg90+1))
Type "help" for help.

ivms_db=# \l
                                 List of databases
   Name    |  Owner   | Encoding |  Collate   |   Ctype    |   Access privileges   
-----------+----------+----------+------------+------------+-----------------------
 ivms_db   | ivms_usr | UTF8     | en_US.utf8 | en_US.utf8 | 
 postgres  | ivms_usr | UTF8     | en_US.utf8 | en_US.utf8 | 
 template0 | ivms_usr | UTF8     | en_US.utf8 | en_US.utf8 | =c/ivms_usr          +
           |          |          |            |            | ivms_usr=CTc/ivms_usr
 template1 | ivms_usr | UTF8     | en_US.utf8 | en_US.utf8 | =c/ivms_usr          +
           |          |          |            |            | ivms_usr=CTc/ivms_usr
(4 rows)


  1. MySQL Query Tuning – Proč je použití hodnoty z proměnné mnohem pomalejší než použití literálu?

  2. PROBLÉM s připojením aplikace Excel k aktualizaci Mysql

  3. Jak mohu donutit framework entity vložit sloupce identity?

  4. Proč je Oracle tak pomalý, když předávám java.sql.Timestamp pro sloupec DATE?