How can we help you today? How can we help you today?
mfal
These two statements are not what we're passing, they are the SQL output by SQL compare. Our create statements build the appropriate indexes on the same fields. / comments
These two statements are not what we're passing, they are the SQL output by SQL compare. Our create statements build the appropriate indexes on the same fields.
0 votes
Not sure what examples you're looking for, but Data Compare creates the following statements for our two environments: PROD CREATE TABLE [dbo].[ContractOrgItem] ( [ID] [bigint] NOT NULL IDENTITY(1, 1), [ContractOrgID] [int] NOT NULL, [VendorItemID] [bigint] NOT NULL, [UOM] [varchar] (2) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Quantity] [int] NOT NULL, [Price] [money] NOT NULL, [StartDate] [datetime] NOT NULL, [EndDate] [datetime] NOT NULL, [IsMyItem] [tinyint] NOT NULL CONSTRAINT [DF_ContractOrgItem_IsMyItem] DEFAULT ((0)), [Surcharge] [smallmoney] NOT NULL CONSTRAINT [DF_ContractOrgItem_Adjustment] DEFAULT ((0)) ) ON [ContractOrgIDPartScheme] ([ContractOrgID]) WITH (DATA_COMPRESSION = PAGE) GO DEV CREATE TABLE [dbo].[ContractOrgItem] ( [ID] [bigint] NOT NULL IDENTITY(1, 1), [ContractOrgID] [int] NOT NULL, [VendorItemID] [bigint] NOT NULL, [UOM] [varchar] (2) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Quantity] [int] NOT NULL, [Price] [money] NOT NULL, [StartDate] [datetime] NOT NULL, [EndDate] [datetime] NOT NULL, [IsMyItem] [tinyint] NOT NULL CONSTRAINT [DF_ContractOrgItem_IsMyItem] DEFAULT ((0)), [Surcharge] [smallmoney] NOT NULL CONSTRAINT [DF_ContractOrgItem_Adjustment] DEFAULT ((0)) ) ON [ContractOrgIDPartScheme] ([VendorItemID]) WITH (DATA_COMPRESSION = PAGE) GO Again, both of these tables and all indexes are partitioned in the same way as validated by my previously supplied query. So the question remains why Data Compare shows them as being different. / comments
Not sure what examples you're looking for, but Data Compare creates the following statements for our two environments:PROD CREATE TABLE [dbo].[ContractOrgItem] ( [ID] &#...
0 votes
Thanks, I found it. If possible, for future releases, it would be nice to see the full blocking chain in a screen. I'm used to seeing that in other utilities. / comments
Thanks, I found it. If possible, for future releases, it would be nice to see the full blocking chain in a screen. I'm used to seeing that in other utilities.
0 votes