Activity overview
Latest activity by kodexe
Brian Donahue wrote:
The bug report is for the GUI. It creates the synchronization in the same way given the same options. And yes, it is the same code (RedGate.SqlCompare.Engine.dll)
Actually, as mentioned in the original post in this topic, we've recreated situations where the command-line tool actually produces different results (in this case, the GUI tool did *not* see any changes in the target database, which means no index rebuild or table recreate was made). I'll see if I can get databases to help you see this! / comments
Brian Donahue wrote:
The bug report is for the GUI. It creates the synchronization in the same way given the same options. And yes, it is the same code (RedGate.SqlCompare.Engine.dll)
Actually,...
Brian Donahue wrote:
I have opened a bug about this ( SC-5219 ). The problem seems to occur when a column is both a primary key column and the unique index for a filestream at the same time. SQL Compare will filter out this index if this is the case. The fix for this may not appear for some time as it is not trivial to implement.
Any idea about why the GUI version of the same tool does NOT exhibit this erroneous behavior? To a layman like me, it sounds like you just need to copy the synchronization code from SqlCompareGui.bas to SqlCompareCmd.bas. / comments
Brian Donahue wrote:
I have opened a bug about this ( SC-5219 ). The problem seems to occur when a column is both a primary key column and the unique index for a filestream at the same time. SQL...
Command-line SQL compare breaks FileStream - but not GUI
I have a table with a FileStream blob field and a PK Guid ID, declared thusly:CREATE TABLE [dbo].[MyTable](
[Id] [uniqueidentifier] ROWGUIDCOL NOT NULL,
[...