특정 유저 소유의 모든 오브젝트들을 다른 유저 소속으로 바꾸고 싶다면 아래명으로 간단히 처리할수 있습니다.
postgres=# REASSIGN OWNED BY 현OWNER TO 새OWNER;
[ 기타 참고 자료 ]
cell_006=# ALTER DATABASE cell_006 owner to segio; --> cell_006 데이타베이스의 사용자를 segio로 변경한다.
template1=# CREATE DATABASE cell_001 OWNER user_000; --> 데이타 베이스 생성 시 사용자를 지정하는 방법.
# PostgreSQL상의postgres 유저 패스워드 설정
[root@latest]# su - postgres ← postgres 로 변경
-bash-3.00$ psql template1 ← psql 명령어로 PostgreSQL에 접속
Welcome to psql 7.4.2, the PostgreSQL interactive terminal.
Type: \copyright for distribution terms
\h for help with SQL commands
\? for help on internal slash commands
\g or terminate with semicolon to execute query
\q to quit
template1=# alter user postgres with password '패스워드'; ← PostgreSQL상의 postgres 유저 패스워드 설정
ALTER USER ← 패스워드 변경 완료
template1=# \q ← psql 종료
'배워서 남주자 > Data Base' 카테고리의 다른 글
[oracle] Listener 관련 (0) | 2018.03.28 |
---|---|
[Postgresql] 접속 제어 (0) | 2018.03.23 |
[Postgresql] 백업 / 복구 (0) | 2018.03.23 |
[postgresql] 초간단 명령어 설명. (0) | 2018.03.23 |
[MySQL & MariaDB] 설치 후 이것/저것 (0) | 2018.03.23 |