Using ver 2.2
I have the following scenaria. I have two tables that are identical, but the column order of the two tables is different
eg.
CREATE TABLE [dbo].[Suppliers](
[Id] [uniqueidentifier] ROWGUIDCOL NOT NULL,
[TenantId] [uniqueidentifier] NOT NULL,
[SupplierTypeId] [uniqueidentifier] NOT NULL,
[Status] [int] NOT NULL,
[SupplierStatus] [int] NOT NULL,
[Code] [nvarchar](20) NOT NULL,
[Name] [nvarchar](50) NOT NULL
)
CREATE TABLE [dbo].[Suppliers](
[Id] [uniqueidentifier] ROWGUIDCOL NOT NULL,
[TenantId] [uniqueidentifier] NOT NULL,
[SupplierTypeId] [uniqueidentifier] NOT NULL,
[Status] [int] NOT NULL,
[Code] [nvarchar](20) NOT NULL,
[Name] [nvarchar](50) NOT NULL,
[SupplierStatus] [int] NOT NULL
)
The only difference between the structure of the two objects is the location of the SupplierStatus field
However in SQL Source Control, when pulling the latest changes from my Kiln repository it is reporting a conflict.
Use SQL Compare, it is reporting that this object between two databases are identical.
Is there a way within SQL Source Control to indicate that this type of conflict is not actually a conflict at all and can be safely ignored
I have the following scenaria. I have two tables that are identical, but the column order of the two tables is different
eg.
CREATE TABLE [dbo].[Suppliers](
[Id] [uniqueidentifier] ROWGUIDCOL NOT NULL,
[TenantId] [uniqueidentifier] NOT NULL,
[SupplierTypeId] [uniqueidentifier] NOT NULL,
[Status] [int] NOT NULL,
[SupplierStatus] [int] NOT NULL,
[Code] [nvarchar](20) NOT NULL,
[Name] [nvarchar](50) NOT NULL
)
CREATE TABLE [dbo].[Suppliers](
[Id] [uniqueidentifier] ROWGUIDCOL NOT NULL,
[TenantId] [uniqueidentifier] NOT NULL,
[SupplierTypeId] [uniqueidentifier] NOT NULL,
[Status] [int] NOT NULL,
[Code] [nvarchar](20) NOT NULL,
[Name] [nvarchar](50) NOT NULL,
[SupplierStatus] [int] NOT NULL
)
The only difference between the structure of the two objects is the location of the SupplierStatus field
However in SQL Source Control, when pulling the latest changes from my Kiln repository it is reporting a conflict.
Use SQL Compare, it is reporting that this object between two databases are identical.
Is there a way within SQL Source Control to indicate that this type of conflict is not actually a conflict at all and can be safely ignored