Mysql Clone user account from database -
Mysql Clone user account from database -
i have database aproximately 200 tables. want clone user-account in database. possible in mysql?
with cloning mean create new user same 'settings' user id 14.
a quick google search reveals in fact can this. there utility called " "mysql user clone", lets surprisingly clone user mysql.
if check out the manual i'm sure provides great tips how utilize it, instance, quote:
examples clone joe sam , sally passwords , logging in root on local machine, utilize command:
$ mysqluserclone --source=root@localhost \ --destination=root@localhost \ joe@localhost sam:secret1@localhost sally:secret2@localhost # source on localhost: ... connected. # destination on localhost: ... connected. # cloning 2 users... # cloning joe@localhost user sam:secret1@localhost # cloning joe@localhost user sally:secret2@localhost # ...done.
mysql
Comments
Post a Comment