tables not maching
dawidg
Posts: 2
I have a couple of tables that don't match. One Ex:
CREATE TABLE [Data].[ActionItems]
(
[Id] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (50) NOT NULL,
[ActionsId] [int] NOT NULL,
[QueriesId] [int] NOT NULL,
[ExecuteOrder] [int] NOT NULL,
[UsePreviousActionItemDataForParameters] [bit] NOT NULL DEFAULT ((0))
)
GO
CREATE TABLE [data].[ActionItems]
(
[Id] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (50) NOT NULL,
[ActionsId] [int] NOT NULL,
[QueriesId] [int] NOT NULL,
[ExecuteOrder] [int] NOT NULL,
[UsePreviousActionItemDataForParameters] [bit] NOT NULL DEFAULT ((0))
)
GO
Notice that the schema names aren't exactly the same. Even so, I tried to create a schema called Data where a schema called data exists, but failed. So, since the schemas are the same according the SQL server, why don't the tables match?
When will the table mapping feature be available?
CREATE TABLE [Data].[ActionItems]
(
[Id] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (50) NOT NULL,
[ActionsId] [int] NOT NULL,
[QueriesId] [int] NOT NULL,
[ExecuteOrder] [int] NOT NULL,
[UsePreviousActionItemDataForParameters] [bit] NOT NULL DEFAULT ((0))
)
GO
CREATE TABLE [data].[ActionItems]
(
[Id] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (50) NOT NULL,
[ActionsId] [int] NOT NULL,
[QueriesId] [int] NOT NULL,
[ExecuteOrder] [int] NOT NULL,
[UsePreviousActionItemDataForParameters] [bit] NOT NULL DEFAULT ((0))
)
GO
Notice that the schema names aren't exactly the same. Even so, I tried to create a schema called Data where a schema called data exists, but failed. So, since the schemas are the same according the SQL server, why don't the tables match?
When will the table mapping feature be available?
Comments
Simon C