2
I need to download a database on my machine, but it can’t handle Mysql Workbench.
Is there any other program lighter than Workbench or which commands for me to download the BD I want?
2
I need to download a database on my machine, but it can’t handle Mysql Workbench.
Is there any other program lighter than Workbench or which commands for me to download the BD I want?
4
Use the Mysqldump:
mysqldump [dbname] -h [host] -u [user] -p > [endereço onde salvar o dump]
press enter
enter the password and ready
Browser other questions tagged mysql mysql-workbench
You are not signed in. Login or sign up in order to post.
A good option is the "old" Mysql Query Browser if you want a GUI.
– Bacco