Hi guys,
getting with error on a script
'Cannot insert duplicate key row in object 'CUBE_DIM_PC_PART_TAB' with unique index 'ixCubeDimPcPart_ItemKey'.
The statement has been terminated.'
This is the result of this script
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[CUBE_DIM_PC_PART_TAB]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[CUBE_DIM_PC_PART_TAB]
-- CREATE
CREATE TABLE [dbo].[CUBE_DIM_PC_PART_TAB] (
[item_key][varchar] (255) NOT NULL ,[part_desc] [varchar] (255)NOT NULL ,[part_lvl_display][varchar] (255) NOT NULL ,
[part_type][varchar] (25)NOT NULL
) ON [PRIMARY]
-- INDEX
CREATE UNIQUE CLUSTERED INDEX ixCubeDimPcPart_ItemKey ON [dbo].[CUBE_DIM_PC_PART_TAB] ([Item_Key])
-- LOAD
INSERT INTO [hydra].[dbo].[CUBE_DIM_PC_PART_TAB]
SELECT v1.item_key,
LEFT(v1.part_desc, 255),
LEFT(v1.part_lvl_display,255),
v1.part_type
FROM hydra.dbo.vwCube_Dim_PC_Part v1
ORDER BY v1.item_key
I have looked on the net and there appears fo be a few solutions, none of which are the problem i am having, anyone got any ideas?
getting with error on a script
'Cannot insert duplicate key row in object 'CUBE_DIM_PC_PART_TAB' with unique index 'ixCubeDimPcPart_ItemKey'.
The statement has been terminated.'
This is the result of this script
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[CUBE_DIM_PC_PART_TAB]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[CUBE_DIM_PC_PART_TAB]
-- CREATE
CREATE TABLE [dbo].[CUBE_DIM_PC_PART_TAB] (
[item_key][varchar] (255) NOT NULL ,[part_desc] [varchar] (255)NOT NULL ,[part_lvl_display][varchar] (255) NOT NULL ,
[part_type][varchar] (25)NOT NULL
) ON [PRIMARY]
-- INDEX
CREATE UNIQUE CLUSTERED INDEX ixCubeDimPcPart_ItemKey ON [dbo].[CUBE_DIM_PC_PART_TAB] ([Item_Key])
-- LOAD
INSERT INTO [hydra].[dbo].[CUBE_DIM_PC_PART_TAB]
SELECT v1.item_key,
LEFT(v1.part_desc, 255),
LEFT(v1.part_lvl_display,255),
v1.part_type
FROM hydra.dbo.vwCube_Dim_PC_Part v1
ORDER BY v1.item_key
I have looked on the net and there appears fo be a few solutions, none of which are the problem i am having, anyone got any ideas?