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's the information that can be stored inside a bit column?
Delete duplicate records from the table?(Table must have unique id)
7 Answers TCS, Thomson Reuters,
What the different topologies in which replication can be configured?
What is a trace frag?
What is a transact-sql statement?
What is the difference between delete and truncate statements?
What are the different types of stored procedures?
difference between function and procedure
3 Answers Cognizant, HCL, TCS, Theorem,
What do you understand by triggers?
hi i am having .mdf file and .ldf file ..how can i get the all table in my .mdf..plz give solution
How exceptions can be handled in sql server programming?
can primery key be a non clustered index?