Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to copy data into an MSSQLServer 2005 database table which has an identity column.

I've seen how to disable the identity column by executing

SET IDENTITY_INSERT <table> ON

before the insert queries.

How can I do this when I'm using PreparedStatements to do batch inserts and I can't change the statement during the operation?

share|improve this question

2 Answers

up vote 2 down vote accepted

D'oh. Easy, figured it out I think.

Create a Statement first, execute SET IDENTITY_INSERT ON. Close statement.

Create PreparedStatement, do batch stuff, close preparedstatement.

Create a Statement, execute SET IDENTITY_INSERT OFF. Close and tidy up.

Welcome any refinements or advice on issues with this...

share|improve this answer
Pat urself on the back :) – Remus Rusanu Jun 15 '09 at 12:38
You should be able to do this as part of one prepared statement, you just have to separate the lines. – Yishai Jun 15 '09 at 12:48

You can include SET IDENTITY_INSERT ON/OFF as part of the prepared statement. This way you only execute one command from the perspective of the client.

share|improve this answer
Thanks, but how? Say I have: INSERT INTO NAMES_TABLE (id,name) VALUES (?,?) Which I want to use addBatch to do lots of inserts quickly. How would I modify this to do the SET... part as well? – Brabster Jun 15 '09 at 12:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.