Skip to content

Instantly share code, notes, and snippets.

View kishorevaishnav's full-sized avatar
Focused.

Kishore Kumar kishorevaishnav

Focused.
View GitHub Profile
@kishorevaishnav
kishorevaishnav / gist:eea53fe1cca20b38934c
Last active August 29, 2015 14:01
Create DB, Add User, Grant Permission. - Postgres
--To Create the database & add user to that
CREATE DATABASE <dbname>;
CREATE USER <username>;
\password <username>
GRANT ALL PRIVILEGES ON DATABASE <dbname> TO <username>;
ALTER DATABASE <dbname> OWNER TO <username>;