Reputation: 57502
I'd like to compare schemas between SQL Server 2012 and SQL Azure, but I get this error in Visual Studio 2013:
A project which specifies SQL Server 2012 as the target platform cannot be published to SQL Azure.
Is it possible to compare these 2 database types?
Upvotes: 30
Views: 6652
Reputation: 184
Need more reputation to comment, sorry for redundant answer: this window can not be found in VS options. Start comparison and click options button
Upvotes: 4
Reputation: 917
There actually is a non-cumbersome method to overcome this problem. Just open up the schema compare options and make sure the "Allow incompatible platform" box is checked
Upvotes: 71
Reputation: 37520
The only way I've been able to do this is to import the SQL 2012 DB to a database project targetting SQL Azure, then compare the project to the SQL Azure database.
Upvotes: 1