I have a complete schema with many tables with data in them in MySQL query browser. Now I want to send this complete database with all the tables/data to my colleague. How can I send this to my colleague, so that he can then place this complete schema in his MySQL Query browser?
Thanks.
I`m not sure where are you working, you could export it to file, and send it to your friend. (root is my localhost username)
mysqldump -u root -p --databases DB_NAME >databasename.sql
PS: mysqldump is actually a executable file present in your /MySQL\MySQL Server 5.6\bin
for example [ on windows ]
C:\Program Files (x86)\MySQL\MySQL Server 5.6\bin\mysqldump.exe
or [ on linux ]
/usr/bin/mysqldump
You can use the mysqldump command.
If you are using MySQL Workbench open the server administration tab and you can do an Export To Disk from there using a GUI interface.
There are options to dump to a single file or directory, and whether to include data or not.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With