How can we help you today? How can we help you today?
toebens

Activity overview

Latest activity by toebens

Table added columns-sync successfully-but col. still missing
hi, i had to add two additional columns to a table on my developer database. a user defined function that queried the table with * for all columns of that table made some problems. i "modify"ed the...
2 followers 2 comments 0 votes
Changes to the schema - after sync: constraint WITH NOCHECK
hi, i created a new database and compared my existing one with the new one with sql compare 7. i run the sync so the whole schema was published to the new, previously empty, database. i recompared ...
2 followers 2 comments 0 votes
the generated script for version 6.1 and 7.0 don't differ very much. they differ in the format of the datetime value: Script created by SQL Data Compare version 7.0.0.512 from Red Gate Software Ltd at 22.09.2008 14:30:52 there i had to add manually: SET LANGUAGE 'US_ENGLISH' GO .... -- Add 2 rows to [dbo].[Fiscal] SET IDENTITY_INSERT [dbo].[Fiscal] ON INSERT INTO [dbo].[Fiscal] ([FiscalID], [FiscalYear], [BaroVoteBeginDate], [BaroVoteEndDate]) VALUES (1, 2008, '2008-09-17 00:00:00.000', '2008-09-30 00:00:00.000') INSERT INTO [dbo].[Fiscal] ([FiscalID], [FiscalYear], [BaroVoteBeginDate], [BaroVoteEndDate]) VALUES (2, 2009, '2009-07-15 00:00:00.000', '2009-07-15 00:00:00.000') SET IDENTITY_INSERT [dbo].[Fiscal] OFF Script created by SQL Data Compare version 6.1.1.6 from Red Gate Software Ltd at 22.09.2008 17:08:54 (here i don't have to set the language explicitly - manually) -- Add 2 rows to [dbo].[Fiscal] SET IDENTITY_INSERT [dbo].[Fiscal] ON INSERT INTO [dbo].[Fiscal] ([FiscalID], [FiscalYear], [BaroVoteBeginDate], [BaroVoteEndDate]) VALUES (1, 2008, '20080917 00:00:00.000', '20080930 00:00:00.000') INSERT INTO [dbo].[Fiscal] ([FiscalID], [FiscalYear], [BaroVoteBeginDate], [BaroVoteEndDate]) VALUES (2, 2009, '20090715 00:00:00.000', '20090715 00:00:00.000') SET IDENTITY_INSERT [dbo].[Fiscal] OFF please fix this error in the new version ASAP / comments
the generated script for version 6.1 and 7.0 don't differ very much. they differ in the format of the datetime value: Script created by SQL Data Compare version 7.0.0.512 from Red Gate Software Ltd...
0 votes
IDENTITY_INSERT is already ON for table xyz
hi, i have the latest SQL Data compare installed and generated a complette sync script for every object. when i run the script in MS Sql management studio (due to the fact http://www.red-gate.com/m...
2 followers 2 comments 0 votes