You can automate schema comparison and synchronization using the command line.
1. Click Start, and type cmd in the Run line. Press ENTER. The Command Prompt opens.
2. Type a path to the dbforgemysql.com file, located in dbForge Studio for MySQL installation folder on your PC, and press the space bar.
3. Type all the arguments (actions you want to run) in the Command Prompt. You can do this in three ways:
1) Type all the arguments directly in the Command Prompt, for example:
/schemacompare /source host:<server_name> database:<database_name> [port:port] user:<yourusername> [password:yourpassword]
[charset:charset] /target host:<server_name> database:<database_name> [port:port] user:<yourusername> password:yourpassword
[charset:charset]
2) Specify a path to a previously saved comparison document to use the connection settings along with the comparison settings specified in the document.
/schemacompare /compfile:D:\file_name.scomp
3) Type the path to a previously generated file with required command line arguments (see below how to prepare the file), for example:
/argfile:"D:\file_name.txt"
Type additional parameters that are not specified in the file into the Command Prompt, for example:
C:\Program Files\Devart\dbForge Studio for MySQL\dbforgemysql.com /argfile:file_name.txt /schemacompare /sync
Note
The path to the executable file will differ depending on how you have installed the Studio - as a standalone tool or as part of the dbForge Edge bundle. Make sure that you have specified a correct path. If you have installed the Studio as part of dbForge Edge, change the path accordingly:
C:\Program Files\Devart\dbForge Edge\dbForge Studio for MySQL>dbforgemysql.com
Tip: To see a quick help on the arguments available in the command line, type the following:
dbforgemysql.com /?
4. Press ENTER to run the process.
1. Define what action you want to run, for example:
/schemacompare
2. Define Source and Target connection strings:
/schemacompare /source connection:"host:host_name;port:port;user:yourusername;password:yourpassword;database:databasename" /target
connection:"host:host_name;port:port;user:yourusername;password:yourpassword;database:databasename"
If you compare a database project, you should specify the path to its file on your PC. For example,
/schemacompare /source dbproject C:\MyProject.mydev
/schemacompare /target dbproject C:\MyProject1.mydev
You can also use the Schema Comparison Document that already contains Source and Target connection strings.
/schemacompare /compfile:"C:\MyComparison.scomp"
3. To generate and save a log file, specify the file name and location. For example:
/log:"C:\Log.log"
4. To generate and save a comparison report file, specify the file name and location. For example:
/report:"C:\Report.html"
5. To synchronize the schemas, i.e., update the Target schema, type the following:
/sync
6. To generate and save a synchronization script, specify the file location and name. For example:
/sync:"C:\sync_script_name.sql"