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 |
Explain multiserver query
What is the difference between for trigger and after trigger?
where do you use Isolations?give me some exmpale?
What triggers long term care?
What is filestream?
what is a correlated sub-query? : Sql server database administration
Why use “nolock” in sql server?
How to link up the text file to a Database table?
What is the difference between Drop and Truncate
How can you know if the row fetched from cursor is still valid in underlying table?
How can you set the threshold at which sql server will generate keysets asynchronously?
Where the sql logs gets stored? : sql server database administration
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)