i have a table for which the creating script is:CREATE TABLE [dbo].[Updates_table]( [node code] [nvarchar](50) COLLATE SQL_Latin1_General_CP1256_CI_AS NULL, [Team_number] [nvarchar](10) COLLATE SQL_Latin1_General_CP1256_CI_AS NULL, [Status] [nvarchar](56) COLLATE SQL_Latin1_General_CP1256_CI_AS NULL, [Notes] [nvarchar](500) COLLATE SQL_Latin1_General_CP1256_CI_AS NULL, [is_assigned] [bit] NOT NULL, [Activity] [nvarchar](50) COLLATE SQL_Latin1_General_CP1256_CI_AS NULL, [is_other] [bit] NOT NULL, [id] [int] IDENTITY(1,1) NOT NULL) ON [PRIMARY]
when i run this insert comand:Insert into updates_table select [node code],IC,status,[client name],IC,status,IC from dbo.remote_list_view() f1 order by glallocationid desc
whene ever i run the previos query i get this errorAn explicit value for the identity column in table 'updates_table' can only be specified when a column list is used and IDENTITY_INSERT is ON.what am i doing wrong..i tried adding set identity_insert on before the query but i made no deferance