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