User Tools

Site Tools


postgresql

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
postgresql [2022-08-28 12:07:16]
mi [Copy DB on same host]
postgresql [2022-11-15 10:42:52] (current)
mi [Vacuum tables 1 at a time]
Line 59: Line 59:
 </​code>​ </​code>​
  
 +===== Rename and comments =====
 +
 +<code bash>​oldname=old_db_name;​ newname=new_db_name;​ comment="​some description ..."
 +dropdb -U postgres --if-exists -i $newname
 +psql -U postgres -c "ALTER database $oldname RENAME TO $newname;"​
 +# or with comment
 +psql -U postgres -c "ALTER database $oldname RENAME TO $newname; COMMENT ON DATABASE $newname IS '​$comment'"​
 +</​code>​
 ====== Backups ====== ====== Backups ======
  
/docs/dokuwiki/data/attic/postgresql.1661681236.txt.gz · Last modified: 2022-08-28 12:07:16 by mi