Monday, January 21, 2019

How to List DSpace DB and Tables in PostgreSQL Using psql

Listing Databases

postgres=# \l

Switching Databases

postgres=# \c sales

Listing Tables

sales=# \dt

No comments:

Create Superuser in Mysql

Login MySQL using mysql -u root -p CREATE USER 'superuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGE...