how to insert same value in auto generated column in sql server 2008
CREATE TABLE [dbo].[rr]( [id] [int] IDENTITY(1,1) NOT NULL, [name] [varchar](50) NULL, [add] [varchar](50) NULL )
id name address 1 aa noida 2 ss delhi 2 dd punjab 3 ee okhla
SET IDENTITY_INSERT [ database. [ owner. ] ] { table } { ON | OFF }
IDENTITY on
IDENTITY
PK
unique
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)