5 lines
163 B
MySQL
5 lines
163 B
MySQL
|
create user dump@localhost identified by 'password';
|
||
|
grant select, lock tables on *.* to dump@localhost;
|
||
|
grant process on *.* to dump@localhost;
|
||
|
flush privileges;
|