검색결과 리스트
글
TOOL/DATABASE
2019. 12. 20. 11:43
PostgreSQL
Oracle 촌놈의 PostgreSQL 경험..
psql
Examples for psql connection - 예제
특정 User로 접속
psql --username postgres
OR
psql -U postgres
DB명과 함꼐
psql DBNAME USERNAME
psql 종료 (빠져나오기)
[CTRL]
+[Z]
로 빠져나온다.
Examples - 예제
Select DB Instance - DB 인스턴스 확인
select oid as database_id, datname as database_name, datallowconn as allow_connect, datconnlimit as connection_limit from pg_database order by oid;
Select Tables - Tables 확인
select * from pg_tables;
Default Schema 확인
SHOW search_path
SESSION상에서만 Default Schema 변경
SET search_path = new_schema
영구히 Default Schema 변경 (적용후 psql 재접속하여 확인했을 때 변경됨)
ALTER USER postgres SET search_path = scott, new_schema, public, "UPPER_USERNAME";
postgresql.conf
파일에서 Default Schema 변경search_path = ‘”$user”,public,”dbSys”‘ # schema names
Reference - 참고
- Postgres Command Line Connection Guide | pSQL Commands: https://www.a2hosting.com/kb/developer-corner/postgresql/connect-to-postgresql-from-the-command-line
- List databases on PostgreSQL instance: https://dataedo.com/kb/query/postgresql/list-databases
'TOOL > DATABASE' 카테고리의 다른 글
[Oracle] Setup Timezone - 시간대 맞추기 (0) | 2020.04.17 |
---|---|
[MySQL] 5.5이하 버전은 트랜젝션이 없다.??? (0) | 2018.12.03 |
[Oracle] 계층형 쿼리 (Start (0) | 2017.09.29 |
[Oracle] DB_USER마다 Session을 제한하기 (0) | 2017.05.30 |
[Oracle] 계정(ACCOUNT) 암호만료(EXPIRED), 잠김(LOCK) 대처 (0) | 2017.04.06 |