Answers for "how to access postgres database on mac"

0

how to open postgresql in mac

brew services start postgresqlpsql postgres
Posted by: Guest on September-01-2020
1

postgresql create database mac

postgres=# CREATE DATABASE DB_NAME;
CREATE DATABASE
postgres=# CREATE USER USER_NAME WITH password 's3cr3t';
CREATE ROLE
postgres=# GRANT ALL ON DATABASE DB_NAME TO USER_NAME;
GRANT
postgres=# \c DB_NAME
You are now connected to database "DB_NAME" as user "postgres".
DB_NAME=# REVOKE ALL ON SCHEMA public FROM public;
REVOKE
DB_NAME=# GRANT ALL ON SCHEMA public TO DB_NAME;
GRANT
DB_NAME=# \q
Posted by: Guest on December-06-2020

Code answers related to "how to access postgres database on mac"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language