PostgreSQL 명령어
사용자 생성
CREATE USER hr(사용자명) WITH PASSWORD 'hr'(패스워드);
DB 생성
CREATE DATABASE hr(DB명);
테이블에 대한 권한 추가
grant all privileges on all tables in schema public to hr(사용자명);
접속 설정
vi /cafe24/pgsql/data/pg_hba.conf # "local" is for Unix domain socket connections only local hr hr password # IPv4 local connections: host hr hr 192.168.1.0/24 password
hr 샘플데이터 덤프 복구
psql -U hr -f employees.dump
Migration을 위한 툴
pgloader
Spring batch
'DB > PostgreSQL' 카테고리의 다른 글
[PostgreSQL] DB 연결 변경하기 (0) | 2019.06.11 |
---|---|
[PostgreSQL] CentOS6.9에 설치 및 세팅 (0) | 2019.06.10 |