item_id item 1 car 2 no of door-- table values CREATE TABLE [dbo].[values] ( [id] [int] IDENTITY(1,1) NOT NULL, [item_id] [int] NULL, [value_text] [varchar](50) NULL, [value_int] [int] NULL ) ON [PRIMARY]; the values in values table should be populated depending item id..if item\_id = 1 then value_text column is populated and if item\_id=2 then value_int is populated.
id item_id value_text value_int 1 1 bmw NULL 2 1 toyota NULL 3 2 NULL 2 4 3 NULL 4can anyone give any suggestion how to proceed to distribute the data to 2 different columns of same table based on item_id by SSIS using?