티스토리 뷰

PostgreSQL

PostgreSQL 데이터베이스 덤프

채우는중 2022. 1. 4. 10:22

Postgresql의 특정 데이터베이스를 덤프뜨고 싶을때 아래와 같은 명령어를 입력한다.

pg_dump --port=5432 --username=postgres --schema=public --file=output.dump --no-owner databaseName

 

output.dump 파일을 다른 데이터 베이스에 넣고 싶을땐 아래의 명령어를 입력한다.

psql -f fileName -U postgres -d databaseName