Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


here id col have primary key and identity
id name
1 a
2 b
3 c
4 d

delete 2nd row then o/p will be

id name
1 a
3 c
4 d

next inssert 2nd row and i want o/p will be
id name
1 a
2 e
3 c
4 d

Answers were Sorted based on User's Feedback



here id col have primary key and identity id name 1 a 2 b 3 c 4 d delete 2nd row ..

Answer / challa yerriswamy

set identity_insert <table_name> on
insert into text1(id,id_name) values(2,'insertedat2')

Is This Answer Correct ?    13 Yes 0 No

here id col have primary key and identity id name 1 a 2 b 3 c 4 d delete 2nd row ..

Answer / qwerty

set identity_insert <table_name> on
insert into <table_name>(id,name) values(2,'e')
set identity_insert <table_name> off

Is This Answer Correct ?    12 Yes 0 No

here id col have primary key and identity id name 1 a 2 b 3 c 4 d delete 2nd row ..

Answer / sunilkumar

set identity_insert on
insert into test1(Id ,id_name) values (2 ,'insertedat2')

Is This Answer Correct ?    7 Yes 3 No

here id col have primary key and identity id name 1 a 2 b 3 c 4 d delete 2nd row ..

Answer / boby

insert into <table_name>(id,name) values(2,'e')ORDER BY ID

Is This Answer Correct ?    1 Yes 0 No

here id col have primary key and identity id name 1 a 2 b 3 c 4 d delete 2nd row ..

Answer / pradeep aryan

set identity_insert on
insert into test1(Id ,id_name) values (2 ,'e')
set identity_insert off

Is This Answer Correct ?    0 Yes 3 No

here id col have primary key and identity id name 1 a 2 b 3 c 4 d delete 2nd row ..

Answer / s pattnaik

SET IDENTITY_INSERT dbo.test1 OFF
Then
insert into test1(Id ,id_name) values (2 ,'insertedat2')

Is This Answer Correct ?    6 Yes 12 No

here id col have primary key and identity id name 1 a 2 b 3 c 4 d delete 2nd row ..

Answer / karthikeyan

select * from table_name order by id;

Is This Answer Correct ?    1 Yes 14 No

Post New Answer

More SQL Server Interview Questions

Is it possible to call a stored procedure within a stored procedure?

0 Answers  


Is the primary key column of a table an index in ms sql server?

0 Answers  


What are the properties of the transactions?

0 Answers  


How many non clustered indexes there can be on table ?

0 Answers  


Define right outer join?

0 Answers  


What are the different types of replication are there in sql server 2000?

0 Answers  


Suppose i have a table that contains 5 columns like col1,col2...colm5.I want to import only two column through BCP utility.How to do same through BCP in sybase.

0 Answers   HCL,


What are the different authentication modes in sql server?

0 Answers  


what do you understand by change data capture?

0 Answers  


How to create a store procedure with encryption?

0 Answers  


Why we should not use triggers?

0 Answers  


Explain nested join?

0 Answers  


Categories