Difference between revisions of "EOF"

From wikieduonline
Jump to navigation Jump to search
Line 9: Line 9:
 
  [[GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA]] [[public]] TO yourdbname;
 
  [[GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA]] [[public]] TO yourdbname;
 
  EOF
 
  EOF
 +
 +
 +
[[gunzip]] < your_latest_backup[[.gz]] | [[psql -h]] YOUR_DB_ENDPOINT -U your_user -d your_db
  
 
Related:  
 
Related:  

Revision as of 19:19, 23 June 2022


psql -h you_dp_ip -U postgres -p 5432  << EOF
CREATE DATABASE "yourdbname";
CREATE USER yourusername WITH PASSWORD yourpassword;
GRANT ALL PRIVILEGES ON DATABASE "yourdbname" to yourusername;
GRANT ALL PRIVILEGES ON SCHEMA public to yourusername;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO yourdbname;
EOF


gunzip < your_latest_backup.gz | psql -h YOUR_DB_ENDPOINT -U your_user -d your_db

Related:

SET
CREATE SEQUENCE
ALTER SEQUENCE
COPY 23038138
CREATE INDEX
ALTER TABLE
ERROR:  role "NONEXITSROLE" does not exist
WARNING:  no privileges could be revoked for "public"
REVOKE
WARNING:  no privileges were granted for "public"
GRANT
ERROR:  role "your_sole" does not exist
set_config


Related

See also

Advertising: