How can we help you today? How can we help you today?
mfal

Activity overview

Latest activity by 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
Partition differences innacurate
We have a database in two different environment with a large partitioned table. The table has 5 indexes on it, 4 which are partitioned on one field, 1 which is partitioned differently. This was d...
2 followers 7 comments 0 votes
SQL Server Base Monitoring service using excessive resources
We're having an issue where SQL monitor is continually consuming more and more memory, up to the max of 16 GB of the server. It takes about 15 minutes from start of the hosting machine to consume ...
6 followers 8 comments 0 votes