"PostgreSQL 데이터베이스 목록 조회"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
 
(사용자 2명의 중간 판 10개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;PostgreSQL List of databases
;PostgreSQL SHOW DATABASES
;PostgreSQL SHOW DATABASES
;PostgreSQL 데이터베이스 목록 조회
;PostgreSQL 데이터베이스 목록 조회
* <code>\list</code> 또는 <code>\l</code>
* 목록 조회 <code>\list</code> 또는 <code>\l</code>
<source lang='cli'>
<source lang='console'>
template1=# \list
template1=# \l
                                   List of databases
                                   List of databases
   Name    |  Owner  | Encoding |  Collate  |    Ctype    |  Access privileges   
   Name    |  Owner  | Encoding |  Collate  |    Ctype    |  Access privileges   
15번째 줄: 16번째 줄:
(3 rows)
(3 rows)
</source>
</source>
<source lang='cli'>
 
template1=# \l
* 목록 상세조회 <code>\list+</code> 또는 <code>\lt+</code>
                                  List of databases
<source lang='console'>
   Name    |  Owner  | Encoding |  Collate  |    Ctype    |  Access privileges   
template1=# \l+
-----------+----------+----------+-------------+-------------+-----------------------
                                                                    List of databases
  postgres  | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 |  
   Name    |  Owner  | Encoding |  Collate  |    Ctype    |  Access privileges  |  Size  | Tablespace |                Description               
  template0 | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
-----------+----------+----------+-------------+-------------+-----------------------+---------+------------+--------------------------------------------
           |          |          |            |            | postgres=CTc/postgres
  postgres  | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 |                       | 6298 kB | pg_default | default administrative connection database
  template1 | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
  template0 | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +| 6185 kB | pg_default | unmodifiable empty database
           |          |          |            |            | postgres=CTc/postgres
           |          |          |            |            | postgres=CTc/postgres |        |            |
  template1 | postgres | UTF8    | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +| 6298 kB | pg_default | default template for new databases
           |          |          |            |            | postgres=CTc/postgres |        |            |
(3 rows)
(3 rows)
</source>
</source>


==같이 보기==
==같이 보기==
*[[PostgreSQL 데이터베이스 생성]]
*[[PostgreSQL 데이터베이스 삭제]]
*[[PostgreSQL 데이터베이스 소유자 변경]]
*[[PostgreSQL 테이블 목록 조회]]
*[[PostgreSQL 테이블 목록 조회]]
*[[MySQL SHOW DATABASES]]
*[[psql 명령어]]
*[[SHOW DATABASES]]


==참고 자료==
==참고==
* http://dba.stackexchange.com/questions/1285/how-do-i-list-all-databases-and-tables-using-psql/34419
* http://dba.stackexchange.com/questions/1285/how-do-i-list-all-databases-and-tables-using-psql/34419


[[분류: PostgreSQL]]
[[분류: PostgreSQL]]
[[분류: psql]]

2017년 6월 27일 (화) 13:09 기준 최신판

1 개요[ | ]

PostgreSQL List of databases
PostgreSQL SHOW DATABASES
PostgreSQL 데이터베이스 목록 조회
  • 목록 조회 \list 또는 \l
template1=# \l
                                  List of databases
   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
 template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
(3 rows)
  • 목록 상세조회 \list+ 또는 \lt+
template1=# \l+
                                                                    List of databases
   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   |  Size   | Tablespace |                Description                 
-----------+----------+----------+-------------+-------------+-----------------------+---------+------------+--------------------------------------------
 postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 |                       | 6298 kB | pg_default | default administrative connection database
 template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +| 6185 kB | pg_default | unmodifiable empty database
           |          |          |             |             | postgres=CTc/postgres |         |            | 
 template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +| 6298 kB | pg_default | default template for new databases
           |          |          |             |             | postgres=CTc/postgres |         |            | 
(3 rows)

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}