Reputation: 9715
I have restored a snapshot from an existing RDS PostgreSQL database. Now I want to rename that database but can't find how to do it anywhere in the AWS documentation.
Nor can I find how to use the master password (which I expect let's me do it).
Upvotes: 9
Views: 3334
Reputation: 9715
Logging in with postgres into template1 database and then ALTER DATABASE foo RENAME TO bar;
worked
Upvotes: 5