Difference between revisions of "GRANT ALL PRIVILEGES ON SCHEMA"

From wikieduonline
Jump to navigation Jump to search
Line 10: Line 10:
  
  
 +
== See also ==
 +
* {{Schema}}
  
{{Schema}}
+
[[Category:DB]]

Revision as of 14:51, 15 December 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



See also

Advertising: