How can we help you today? How can we help you today?
toebens
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