Search
 
SCRIPT & CODE EXAMPLE
 

SQL

create mysql user on all hosts

CREATE USER 'newuser'@'%' IDENTIFIED BY 'user_password';
GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'%';
SHOW GRANTS FOR 'newuser'@'%';
FLUSH PRIVILEGES;
Comment

PREVIOUS NEXT
Code Example
Sql :: mariadb.service: Main process exited, code=exited, status=1/FAILURE 
Sql :: select count of distinct values sql 
Sql :: ora-00054 resource busy and acquire with nowait 
Sql :: how to rename column in sql 
Sql :: how to add foreign key constraint in sql 
Sql :: how to get table current identity value in sql server 
Sql :: oracle asynchronous procedure 
Sql :: upper and lower in oracle sql 
Sql :: wsl centos 8 mysql 
Sql :: data types sql 
Sql :: Object of class mysqli_result could not be converted to string 
Sql :: oracle to_number 
Sql :: sql show tables 
Sql :: like sql 
Sql :: oracle sysdate 
Sql :: array out of range mql4 
Sql :: sql server current date 
Sql :: grant access on table in oracle 
Sql :: postgresql list users 
Sql :: mysql docker compose 
Sql :: contains word in sql 
Sql :: postgres set default schema 
Sql :: postgres select max value 
Sql :: check if record exists mysql 
Sql :: temp table sql 
Sql :: mysql how to store lat,lng 
Sql :: oracle sql listagg 
Sql :: update mongodb version ubuntu 
Sql :: ignore case like sql 
Sql :: pl/sql cursor 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =