Difference between revisions of "EOF"

From wikieduonline
Jump to navigation Jump to search
Line 12: Line 12:
  
 
== Related ==
 
== Related ==
[[eof]]
+
* <code>[[eof]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 13:26, 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


Related

See also

Advertising: