1

I need to Generate an export script of entire MYSQL Database ,

currently i am using

      MySQL Query Browser 
  and 
      Toad for MySQL

so How can I Generate the script of entire DB.

As i need to only copy structure of Table , procedures to other DataBase

2
  • alternate tool - dbForge Studio for MySQL (backup or generate schema script features); objects you can select in a GUI tree. Commented Mar 31, 2011 at 10:32
  • one more tool is a mysqldump command line program, you could use with a '--no-data' and '--routines' options Commented Mar 31, 2011 at 10:35

2 Answers 2

3

LogOn to MySQL Administrator.

Click on BackUp --> on the Left Panel

in BackUp Project Tab --> Enter the backUp name in Select Schemata the name of Db you need to generate script / Bk

click on ">"

--> Click on New "Execute Backup Now"

Sign up to request clarification or add additional context in comments.

Comments

2

You should use the mysqldump feature of the mysql itself if you are on the machine that the MySQL is installed on.

if you are trying to create a dump from a remote machine you should use the Toad for MySQL Export Wizard

2 Comments

mysqldump can connect to remote machine too.
@Devart : you are absolutely correct, however not all machines have MySQL installed on them, so seeing as he already stated he has Toad installed i thought it would be more helpful to point him in a direction he will surely be able to use

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.