Postgre 복원 시 권한 문제 해결 방법SQL 데이터베이스 다음 명령을 사용하여 Postgres 데이터베이스에 대한 소유자가 없는 깨끗한 백업을 덤프했습니다. pg_dump sample_database -O -c -U 나중에 데이터베이스를 복원할 때 psql -d sample_database -U app_name 그러나 다음과 같은 오류가 발생하여 데이터를 복원할 수 없습니다. ERROR: must be owner of extension plpgsql ERROR: must be owner of schema public ERROR: schema "public" already exists ERROR: must be owner of schema public CREATE EXTENSION ERROR: mus..