PostgreSQL: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 60: Line 60:
</syntaxhighlight>
</syntaxhighlight>


=== References ===
==References ==
* [https://www.postgresql.org/docs/10/static/plpgsql-trigger.html PL/PgSQL Trigger]
* [https://www.postgresql.org/docs/10/static/plpgsql-trigger.html PL/PgSQL Trigger]
* [https://www.postgresql.org/docs/9.3/static/plpgsql-trigger.html PL/PgSQL Trigger]
* [https://www.postgresql.org/docs/9.3/static/plpgsql-trigger.html PL/PgSQL Trigger]
* [https://www.postgresql.org/docs/11/static/sql-createprocedure.html SQL Create Procedure]
* [https://www.postgresql.org/docs/11/static/sql-createprocedure.html SQL Create Procedure]
* [https://medium.com/coding-blocks/creating-user-database-and-adding-access-on-postgresql-8bfcd2f4a91e Creating user, database and adding access on PostgreSQL]

Revision as of 11:54, 24 September 2018

Login to PSQL

# [email protected]:~ #
su - postgres
# Last login: Tue Jan 01 12:00:00 MYT 2013 on pts/0
# -bash-4.2$
psql
# psql (9.6.8)
# Type "help" for help.
# 
# postgres=#

Login Error

# [email protected]:~ #
su - postgres psql
# Last login: Tue Jan 01 12:00:00 MYT 2013 on pts/0
# /bin/createuser: /bin/createuser: cannot execute binary file

Creating User

# [email protected]:~ #
su - postgres
# Last login: Tue Jan 01 12:00:00 MYT 2013 on pts/0
# -bash-4.2$
createuser root
# createuser: creation of new role failed: ERROR:  role "root" already exists

Creating DB

Until creating root database it's always show error could not change directory to "/root": Permission denied. To overcome this error we should need to create a root database. only for avoid error while login using root user.

# [email protected]:~ #
su - postgres
# Last login: Tue Jan 01 12:00:00 MYT 2013 on pts/0
# -bash-4.2$
createdb root

Similarly you can create a database as same as your frequently used OS User. In this case no need password to login. It will authenticated from OS. That's means you can login to your PostgreSQL user using OS Authentication.

Grant Privileges

# postgres=#
grant all privileges on database root to root;
# GRANT

# postgres=#
grant all privileges on database postgres to root;
# GRANT

Logout PSQL

# postgres=#
\q
# -bash-4.2$

References