aoirint icon
えやみぐさ
TwitterGitHubProfile
[2022-02-06]
編集ソース履歴
技術ノート|PostgreSQL|PostgreSQL

  • PostgreSQL 13 データベースの名前変更

PostgreSQL 13 データベースの名前変更

psql --user myuser postgres
ALTER DATABASE mydatabase RENAME TO new_mydatabase;
  • https://www.postgresql.jp/document/13/html/sql-alterdatabase.html
  • https://www.postgresql.org/docs/13/sql-alterdatabase.html
  • https://www.postgresqltutorial.com/postgresql-rename-database/
  • PostgreSQL 13 データベースの名前変更