Horje
how to access remote pstgres Code Example
how to access remote pstgres
psql -U postgres
drop database DATABASE_NAME;
create database DATABASE_NAME;
create user USER_NAME;
alter role USER_NAME with password 'BITNAMI_USER_PASSWORD';
grant all privileges on database DATABASE_NAME to USER_NAME;
alter database DATABASE_NAME owner to USER_NAME;
psql -U postgres DATABASE_NAME < backup.sql
how to access remote pstgres
pg_dump -U postgres DATABASE_NAME > backup.sql




Shell

Related
pyenv install latest version Code Example pyenv install latest version Code Example
git change file case windows Code Example git change file case windows Code Example
gem pg install error mac os Code Example gem pg install error mac os Code Example
find tomcat location in mac Code Example find tomcat location in mac Code Example
install flutter using snap Code Example install flutter using snap Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11