Search
 
SCRIPT & CODE EXAMPLE
 

SQL

Enter into postgresql database,create user and grant Access

sudo -u postgres psql postgres
#Create user, database, and grant permission
CREATE USER kodekloud_gem WITH PASSWORD 'LQfKeWWxWD';
CREATE DATABASE kodekloud_db10;
GRANT ALL PRIVILEGES ON DATABASE "kodekloud_db10" to kodekloud_gem;
Comment

Enter into postgresql database,create user and grant Access

sudo -u postgres psql postgres
Create user, database, and grant permission
CREATE USER kodekloud_gem WITH PASSWORD 'LQfKeWWxWD';
CREATE DATABASE kodekloud_db10;
GRANT ALL PRIVILEGES ON DATABASE "kodekloud_db10" to kodekloud_gem;
Comment

PREVIOUS NEXT
Code Example
Sql :: kill mysql processlist in whose time more than 200 
Sql :: finding last created table mysql 
Sql :: print oracle 
Sql :: grant revoke privileges to mysql username 
Sql :: join first name and last name sql 
Sql :: oracle columns in all_tables 
Sql :: mysql dump all databases 
Sql :: wilayah indonesia database 
Sql :: starts and end with vowel sql 
Sql :: drop all table postgresql 
Sql :: how to get all tables in sql 
Sql :: to date oracle with time 
Sql :: how to install psql in ubuntu 
Sql :: find mysql version linux 
Sql :: oracle rename table 
Sql :: Failed to stop mysql.service: Unit mysql.service not loaded. 
Sql :: oracle add column 
Sql :: truncate table mysql 
Sql :: no data found oracle 
Sql :: add primary key constraint in oracle 
Sql :: postgres DROP and create contraint 
Sql :: psql view enum values 
Sql :: file /etc/init.d/mysql not exists 
Sql :: copy column data to another column sql with creating slugs 
Sql :: mysql get db name 
Sql :: upload database mysql command line 
Sql :: postgres set user as superuser 
Sql :: dynamics 365 x++ aggregate querybuilddatasource 
Sql :: oracle aleter trigger ora-01031 
Sql :: create procedure with encryption 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =