<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xml:base="http://www.red-gate.com/MessageBoard/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Red Gate forums: SQL Compare 10</title>
 <link>http://www.red-gate.com/MessageBoard/</link>
 <description>Product Support and Discussion</description>
 <language>en</language>
 <copyright>Copyright Red Gate Software Ltd</copyright>
 <managingEditor>internalsupport@red-gate.com</managingEditor>
 <webMaster>internalsupport@red-gate.com</webMaster>
 <docs>http://blogs.law.harvard.edu/tech/rss</docs>
 <ttl>60</ttl>
 <lastBuildDate>Thu, 23 May 2013 00:08:23 GMT</lastBuildDate>
 <pubDate>Thu, 23 May 2013 00:08:23 GMT</pubDate>
 <image>
  <url>http://www.red-gate.com/messageboard/templates/subRed/images/logo_phpBB.gif</url>
  <title>Red Gate forums: SQL Compare 10</title>
  <link>http://www.red-gate.com/MessageBoard/</link>
 </image>
 <item>
  <title>RE: Fulltext Indext Stoplist Options</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62097#62097</link>
  <description>Hi Steve
&lt;br /&gt;

&lt;br /&gt;
Thanks for your reply, however this isn't a feature request - I believe that it is a bug.
&lt;br /&gt;

&lt;br /&gt;
The point is that although the fulltext index definition differs there is no relevant sync statement included in the synchronisation script.
&lt;br /&gt;

&lt;br /&gt;
Chris</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17193</comments>
  <dc:creator>howarthcd</dc:creator>
  <pubDate>Wed, 22 May 2013 20:03:57 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62097#62097</guid>
 </item>
 <item>
  <title>RE: Fulltext Indext Stoplist Options</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62096#62096</link>
  <description>Hi howarthcd,
&lt;br /&gt;

&lt;br /&gt;
Thanks for your post regarding SQL Compare. Unfortunately, there is not a way to present this difference at the same object level as a table. SQL Compare treats this difference at the table level, and will generate the appropriate change in the resulting deployment script. 
&lt;br /&gt;

&lt;br /&gt;
I would suggest posting your feature request in the following forum so that others can vote as well:
&lt;br /&gt;
&lt;a href=&quot;http://redgate.uservoice.com/forums/141379-sql-compare-feature-suggestions&quot; target=&quot;_blank&quot;&gt;http://redgate.uservoice.com/forums/141379-sql-compare-feature-suggestions&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Best Regards,
&lt;br /&gt;
Steve</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17193</comments>
  <dc:creator>stanori</dc:creator>
  <pubDate>Wed, 22 May 2013 19:18:17 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62096#62096</guid>
 </item>
 <item>
  <title>Use migration script with Snapshots</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62085#62085</link>
  <description>We have a process where we are creating snapshots based on check-ins to SQL source control and then picking a version to deploy and using sql compare to deploy that snapshot to the target database.
&lt;br /&gt;

&lt;br /&gt;
It appears that deploying from a snapshot doesn't pick up any migration scripts- am I missing anything?</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17223</comments>
  <dc:creator>rickjr82</dc:creator>
  <pubDate>Wed, 22 May 2013 14:05:32 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62085#62085</guid>
 </item>
 <item>
  <title>RE: Found new bug when using &amp;quot;Add object existence check&amp;quot; option</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62065#62065</link>
  <description>Here is a simple scenario for you to reproduce this error.  Hope this helps.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
-- Create identical TestA and TestB databases
&lt;br /&gt;
create database TestA ;
&lt;br /&gt;
go
&lt;br /&gt;
use TestA ;
&lt;br /&gt;
go
&lt;br /&gt;
create default &amp;#91;dbo&amp;#93;.&amp;#91;empty_number&amp;#93; AS 0 ;
&lt;br /&gt;
go
&lt;br /&gt;
create table dbo.Table1
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#40;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;column1 char&amp;#40;10&amp;#41; not null,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;column2 int not null
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#41; ;
&lt;br /&gt;

&lt;br /&gt;
execute sp_bindefault N'dbo.empty_number', N'dbo.Table1.column2' ;
&lt;br /&gt;
go
&lt;br /&gt;

&lt;br /&gt;
create database TestB ;
&lt;br /&gt;
go
&lt;br /&gt;
use TestB ;
&lt;br /&gt;
go
&lt;br /&gt;
create default &amp;#91;dbo&amp;#93;.&amp;#91;empty_number&amp;#93; AS 0 ;
&lt;br /&gt;
go
&lt;br /&gt;
create table dbo.Table1
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#40;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;column1 char&amp;#40;10&amp;#41; not null,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;column2 int not null
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#41; ;
&lt;br /&gt;

&lt;br /&gt;
execute sp_bindefault N'dbo.empty_number', N'dbo.Table1.column2' ;
&lt;br /&gt;
go
&lt;br /&gt;

&lt;br /&gt;
-- Now drop the &amp;quot;column2&amp;quot; in Table1 in the TestA database.
&lt;br /&gt;
use TestA ;
&lt;br /&gt;
go
&lt;br /&gt;
execute sp_unbindefault N'dbo.Table1.column2' ;
&lt;br /&gt;
go
&lt;br /&gt;
alter table dbo.Table1 drop column column2 ;
&lt;br /&gt;
go
&lt;br /&gt;

&lt;br /&gt;
-- Now use SQL Compare 10 to generate a script to make TestB match TestA.&amp;nbsp; Be sure to
&lt;br /&gt;
-- check the &amp;quot;Add object existence checks&amp;quot; option before generating the script.
&lt;br /&gt;
-- Run the generated script on the TestB database and see the error.
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17103</comments>
  <dc:creator>JohnnyT</dc:creator>
  <pubDate>Tue, 21 May 2013 20:48:58 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62065#62065</guid>
 </item>
 <item>
  <title>RE: Command line automation does not sync extended properties</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62057#62057</link>
  <description>DB level extended properties require DB Owner permission, so I'd check that first.
&lt;br /&gt;

&lt;br /&gt;
There's a Compare option to ignore the Source Control properties, but this is not set by default and you don't seem to be specifying it as far as I can tell.</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17172</comments>
  <dc:creator>james.billings</dc:creator>
  <pubDate>Tue, 21 May 2013 11:38:06 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62057#62057</guid>
 </item>
 <item>
  <title>RE: Command line automation does not sync extended properties</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62056#62056</link>
  <description>Hi, 
&lt;br /&gt;

&lt;br /&gt;
Many thanks for your response.
&lt;br /&gt;

&lt;br /&gt;
- these are the extended properties which SQL Source Control adds
&lt;br /&gt;
- No, i am running the command line with different credentials. What permissions would i need to be able to synchronize the extended properties?
&lt;br /&gt;
- we have SQL Compare 10
&lt;br /&gt;
- /scr1:&amp;quot;%system.teamcity.build.checkoutDir%&amp;quot; /revision1:HEAD  /server2:XXXXX /db2:XXXXX /Include:identical /o:Default /Report:XXXXX /ReportType:Simple /ScriptFile:XXXXX /Force /logLevel:Verbose /sync</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17172</comments>
  <dc:creator>ZHCS</dc:creator>
  <pubDate>Tue, 21 May 2013 11:35:39 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62056#62056</guid>
 </item>
 <item>
  <title>RE: Found new bug when using &amp;quot;Add object existence check&amp;quot; option</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62042#62042</link>
  <description>&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Brian Donahue wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Hello,
&lt;br /&gt;

&lt;br /&gt;
   Thanks for supplying all of the output from SQL Compare... would it be possible to script a scenario that caused this problem to happen? I can see where the problem occurs in your deployment but I can't figure out how to reproduce it so I can submit a proper bug report.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
I'll see what I can do.  It may take some time for me to set this up.</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17103</comments>
  <dc:creator>JohnnyT</dc:creator>
  <pubDate>Mon, 20 May 2013 20:33:55 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62042#62042</guid>
 </item>
 <item>
  <title>RE: Command line automation does not sync extended properties</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62041#62041</link>
  <description>Thanks for your post. 
&lt;br /&gt;

&lt;br /&gt;
Based on an initial test here, DB level extended properties should get scripted OK, so I need to check a few things:
&lt;br /&gt;

&lt;br /&gt;
- are these extended properties the ones that SQL Source Control adds, or your own ones? 
&lt;br /&gt;
- are you running the command line with the same credentials as when you tried it through the GUI?
&lt;br /&gt;
- what version of SQL Compare are you on?
&lt;br /&gt;
- what *exact* command line are you running? Can you post an example? For instance I was able to script the differences in extended properties with pretty much no options:  
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;sqlcompare.exe /db1&amp;#58;database1 /db2&amp;#58;database2 /sf&amp;#58;d&amp;#58;\sync.sql&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17172</comments>
  <dc:creator>james.billings</dc:creator>
  <pubDate>Mon, 20 May 2013 17:18:49 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62041#62041</guid>
 </item>
 <item>
  <title>RE: can't exclude identical objects?!</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62033#62033</link>
  <description>Hi Red-Gate
&lt;br /&gt;

&lt;br /&gt;
It's been four months since we initially reported the filter bug (for which you created SC-6165).
&lt;br /&gt;

&lt;br /&gt;
Are you able to confirm when this issue will be resolved?
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;
Chris</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=16562</comments>
  <dc:creator>howarthcd</dc:creator>
  <pubDate>Mon, 20 May 2013 14:22:16 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62033#62033</guid>
 </item>
 <item>
  <title>Fulltext Indext Stoplist Options</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62032#62032</link>
  <description>When comparing a table script file containing a full text index definition with another script file with an equivalent fulltext definition but where the STOPLIST option is included, then SQL Compare treats the scripts as being the same even though the differencing pane highlights the differences between the scripts.
&lt;br /&gt;

&lt;br /&gt;
e.g. 
&lt;br /&gt;

&lt;br /&gt;
1st script contains this:
&lt;br /&gt;

&lt;br /&gt;
CREATE FULLTEXT INDEX ON [dbo].[MyTable] KEY INDEX [PK_MyTable] ON [ftCatalog] WITH STOPLIST OFF
&lt;br /&gt;
GO
&lt;br /&gt;

&lt;br /&gt;
2nd script contains this:
&lt;br /&gt;

&lt;br /&gt;
CREATE FULLTEXT INDEX ON [dbo].[MyTable] KEY INDEX [PK_MyTable] ON [ftCatalog]
&lt;br /&gt;
GO
&lt;br /&gt;

&lt;br /&gt;
Is there a project option that can be specified so that this difference is raised at the table level? Full-text indexing is &lt;span style=&quot;font-style: italic&quot;&gt;not &lt;/span&gt;selected under the 'Ignore' project option.
&lt;br /&gt;

&lt;br /&gt;
SQL Compare 10.3.8.406 Professional Edition running on Windows 7 64-bit.
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;
Chris</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17193</comments>
  <dc:creator>howarthcd</dc:creator>
  <pubDate>Mon, 20 May 2013 14:05:24 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62032#62032</guid>
 </item>
 <item>
  <title>RE: Incorrect syntax near ')'</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62025#62025</link>
  <description>We are glad that it is working now!</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17173</comments>
  <dc:creator>Anu Deshpande</dc:creator>
  <pubDate>Mon, 20 May 2013 08:51:53 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62025#62025</guid>
 </item>
 <item>
  <title>RE: Rollback scripts</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62013#62013</link>
  <description>EDIT:  I'm sorry, after rereading your question, I now realize you wanted to be able to reverse a migration script.  Sorry I missed that detail initially.   I'll leave my somewhat out of context answer in the hopes that it may prove useful to &lt;span style=&quot;font-style: italic&quot;&gt;someone&lt;/span&gt;!  
&lt;br /&gt;
--------------------------------------
&lt;br /&gt;

&lt;br /&gt;
As you noted, this isn't possible for all types of changes, but I've taken to using this technique with good success:
&lt;br /&gt;

&lt;br /&gt;
&lt;ul&gt;1) Run your compare, select your objects and create your deployment script through the deployment wizard.  I like to save it under a name similar to: &lt;span style=&quot;color: blue&quot;&gt;your_deploy_name.date.&lt;span style=&quot;font-weight: bold&quot;&gt;deploy&lt;/span&gt;.sql&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
2) After the wizard completes, you are dropped back in the compare screen.  &lt;span style=&quot;font-style: italic&quot;&gt;Do not change any selections!&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
3) Near the top of the compare screen, right-click the blue arrow between the two databases under compare and select 'Switch deployment direction.'  The arrow changes to green and now points to the left.  (Ctrl-D is a shortcut for this)
&lt;br /&gt;

&lt;br /&gt;
4) Rerun the compare wizard only this time name you file something simtlar to: &lt;span style=&quot;color: blue&quot;&gt;your_deploy_name.date.&lt;span style=&quot;font-weight: bold&quot;&gt;rollback&lt;/span&gt;.sql&lt;/span&gt;&lt;/ul&gt;
&lt;br /&gt;

&lt;br /&gt;
You now have two script files, one to deploy and one to backout.
&lt;br /&gt;

&lt;br /&gt;
As an extra verification step, I have TeamCity running locally and use it and various RedGate tools to:
&lt;br /&gt;
&lt;ul&gt;1) Build a brand new image of our production database on our development server.
&lt;br /&gt;
2) Run a compare to insure the two are identical
&lt;br /&gt;
3) Apply the deployment script
&lt;br /&gt;
4) Run a compare against source control.  Either insure they're identcal or account for any differences.
&lt;br /&gt;
5) Apply the rollback script.
&lt;br /&gt;
6) Run another compare to insure we're again identical to production&lt;/ul&gt;</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17157</comments>
  <dc:creator>John Palmer</dc:creator>
  <pubDate>Sat, 18 May 2013 17:15:32 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62013#62013</guid>
 </item>
 <item>
  <title>RE: Incorrect syntax near ')'</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62000#62000</link>
  <description>Sorry.  Ignore me.  It was caused by a bad merge that removed the TransactionWeek column.</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17173</comments>
  <dc:creator>kevinw</dc:creator>
  <pubDate>Fri, 17 May 2013 13:00:09 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62000#62000</guid>
 </item>
 <item>
  <title>Incorrect syntax near ')'</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=61999#61999</link>
  <description>Hi,
&lt;br /&gt;

&lt;br /&gt;
I'm using SQL Compare 10.3.8.406.  I'm comparing a TFS source controlled script folder to a database.
&lt;br /&gt;

&lt;br /&gt;
From the command line or via the UI it appears that SQL compare is not reading the content of a script file correctly resulting in a badly formed migration script.
&lt;br /&gt;

&lt;br /&gt;
The script file contains this :
&lt;br /&gt;

&lt;br /&gt;
CREATE TABLE [dbo].[CategorySales]
&lt;br /&gt;
(
&lt;br /&gt;
[CategorySalesId] [int] NOT NULL IDENTITY(1, 1),
&lt;br /&gt;
[TransactionDate] [datetime] NOT NULL,
&lt;br /&gt;
[LocationId] [int] NOT NULL,
&lt;br /&gt;
[CategoryId] [int] NOT NULL,
&lt;br /&gt;
[TransactionYear] [int] NOT NULL,
&lt;br /&gt;
[TransactionMonth] [int] NOT NULL,
&lt;br /&gt;
[TotalValue] [money] NOT NULL,
&lt;br /&gt;
[TotalCost] [money] NOT NULL CONSTRAINT [DF_CategorySales_TotalCost] DEFAULT ((0)),
&lt;br /&gt;
[TotalMargin] [money] NOT NULL CONSTRAINT [DF_CategorySales_TotalMargin] DEFAULT ((0)),
&lt;br /&gt;
[SalesTax] [money] NOT NULL CONSTRAINT [DF_CategorySales_SalesTax] DEFAULT ((0))
&lt;br /&gt;
) ON [PRIMARY]
&lt;br /&gt;
CREATE UNIQUE CLUSTERED INDEX [CU_CategorySales_TransDateLocationIdCategoryId] ON [dbo].[CategorySales] ([TransactionDate], [LocationId], [CategoryId]) ON [PRIMARY]
&lt;br /&gt;

&lt;br /&gt;
CREATE NONCLUSTERED INDEX [IX_CategorySales_TransactionMonth] ON [dbo].[CategorySales] ([TransactionMonth]) ON [PRIMARY]
&lt;br /&gt;

&lt;br /&gt;
CREATE NONCLUSTERED INDEX [IX_CategorySales_TransactionWeek] ON [dbo].[CategorySales] ([TransactionWeek]) ON [PRIMARY]
&lt;br /&gt;

&lt;br /&gt;
CREATE NONCLUSTERED INDEX [IX_CategorySales_TransactionYear] ON [dbo].[CategorySales] ([TransactionYear]) ON [PRIMARY]
&lt;br /&gt;

&lt;br /&gt;
ALTER TABLE [dbo].[CategorySales] ADD CONSTRAINT [PK_CategorySales] PRIMARY KEY NONCLUSTERED  ([CategorySalesId]) ON [PRIMARY]
&lt;br /&gt;

&lt;br /&gt;
GO
&lt;br /&gt;

&lt;br /&gt;
But when I point SQL compare to the script folder as the source and view the differences it appears like this :
&lt;br /&gt;

&lt;br /&gt;
-- Columns
&lt;br /&gt;

&lt;br /&gt;
CREATE TABLE [dbo].[CategorySales]
&lt;br /&gt;
(
&lt;br /&gt;
[CategorySalesId] [int] NOT NULL IDENTITY(1, 1),
&lt;br /&gt;
[TransactionDate] [datetime] NOT NULL,
&lt;br /&gt;
[LocationId] [int] NOT NULL,
&lt;br /&gt;
[CategoryId] [int] NOT NULL,
&lt;br /&gt;
[TransactionYear] [int] NOT NULL,
&lt;br /&gt;
[TransactionMonth] [int] NOT NULL,
&lt;br /&gt;
[TotalValue] [money] NOT NULL,
&lt;br /&gt;
[TotalCost] [money] NOT NULL CONSTRAINT [DF_CategorySales_TotalCost] DEFAULT ((0)),
&lt;br /&gt;
[TotalMargin] [money] NOT NULL CONSTRAINT [DF_CategorySales_TotalMargin] DEFAULT ((0)),
&lt;br /&gt;
[SalesTax] [money] NOT NULL CONSTRAINT [DF_CategorySales_SalesTax] DEFAULT ((0))
&lt;br /&gt;
)
&lt;br /&gt;
GO
&lt;br /&gt;
-- Constraints and Indexes
&lt;br /&gt;

&lt;br /&gt;
ALTER TABLE [dbo].[CategorySales] ADD CONSTRAINT [PK_CategorySales] PRIMARY KEY NONCLUSTERED  ([CategorySalesId])
&lt;br /&gt;
GO
&lt;br /&gt;
CREATE NONCLUSTERED INDEX [IX_CategorySales_TransactionWeek] ON [dbo].[CategorySales])
&lt;br /&gt;
GO
&lt;br /&gt;
CREATE UNIQUE CLUSTERED INDEX [CU_CategorySales_TransDateLocationIdCategoryId] ON [dbo].[CategorySales] ([TransactionDate], [LocationId], [CategoryId])
&lt;br /&gt;
GO
&lt;br /&gt;
CREATE NONCLUSTERED INDEX [IX_CategorySales_TransactionMonth] ON [dbo].[CategorySales] ([TransactionMonth])
&lt;br /&gt;
GO
&lt;br /&gt;
CREATE NONCLUSTERED INDEX [IX_CategorySales_TransactionYear] ON [dbo].[CategorySales] ([TransactionYear])
&lt;br /&gt;
GO
&lt;br /&gt;

&lt;br /&gt;
It's missed off some of the sql where it's creating the indexes.  This results in the migration script having incorrect syntax.
&lt;br /&gt;

&lt;br /&gt;
It looks like a bug in SQL compare to me.  How can I resolve this?
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;
Kevin</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17173</comments>
  <dc:creator>kevinw</dc:creator>
  <pubDate>Fri, 17 May 2013 12:18:42 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=61999#61999</guid>
 </item>
 <item>
  <title>Command line automation does not sync extended properties</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=61998#61998</link>
  <description>We are using SQLCompare.exe for automated deployment  of our databases. We realized that the deployment script created by sqlcompare.exe doesnt not  synchronize extended properties of the databases. When i try to create the deployment script from SQL Compare GUI, the resulting script does include part synchronizing the extended properties. The options in GUI and for command line set up in identical way. We are not using Ignore extended properties option. Any ideas?</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17172</comments>
  <dc:creator>ZHCS</dc:creator>
  <pubDate>Fri, 17 May 2013 11:36:03 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=61998#61998</guid>
 </item>
</channel>
</rss>
