The online help implies you can migrate schema changes from one database to another using SQL Data Compare. Like changes to table structure, rules, SPs, function?
To migrate schema changes from the first database to the second database:
Using an XML file:
<?xml version="1.0"?>
<commandline>
<database1>FirstDatabaseName</database1>
<database2>SecondDatabaseName</database2>
<synchronize/>
</commandline>
Using the command line:
SQLDataCompare /db1:FirstDatabaseName /db2:SecondDatabaseName /sync
is this true?
is this true?