Say if we have a table that contains only a single column ,
say OrderID, which has IDENTITY attribute defined on it. So
how can we insert data in this table.
I am reframing my question, that how can we make the table
to increment the column "OrderID" value several times???
Answers were Sorted based on User's Feedback
Answer / madhu
To insert values into Identity column use the
IDENTITY_INSERT option like
SET IDENTITY_INSERT Table_Name ON
Insert Table_Name
(OrderID)
Values(10)
SET IDENTITY_INSERT Table_Name OFF
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / brahma
create table t1(a int identity(1,1))
insert into t1 default value
set identity_insert t1 off
(or)
set identity_insert t1 on
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between index seek vs. Index scan?
Define full outer join?
what are the critical issues you have resloved in your company
How do you check sql server is up and running?
Can a table have 2 primary keys?
What are security principals used in sql server 2005?
What is sub-query in sql server? Explain its properties.
Explain trigger classes i.e. Instead of and after trigger?
What is the difference between varchar and varchar types?
What are cursors in ms sql server?
What is sql profiler. What are the default templates with it? : sql server database administration
Are semicolons required at the end of sql statements in sql server 2005?