vote up 3 vote down star

I have a temp table with the exact structure of a concrete table T. It was created like this: select top 0 * into #tmp from T

After processing and filling in content into #tmp, I want to copy the content back to T like this: insert into T select * from #tmp

This is okay as long as T doesn't have identity column, but in my case it does. Is there anyways I can ignore the auto-increment identity column from #tmp when I copy to T? My motivation is to avoid having to spell out every column name in the Insert Into list.

EDIT: toggling identity_insert wouldn't work because the pkeys in #tmp may collide with those in T if rows were inserted into T outside of my script, that's if #tmp has auto-incremented the pkey to sync with T's in the first place.

flag

32% accept rate
Can you explain a bit more about why you want a temp table copy in the first place please? There may be a better way to accomplish what you are looking for. – Rob Allen Sep 23 '08 at 18:09
1. it gives me a chance to preview the data before I do the insert 2. I have joins between temp tables as part of my calculation; temp tables allows me to focus on the exact set data that I am working with. I think that was it. Any suggestions/comments? – Haoest Sep 23 '08 at 18:14

7 Answers

vote up 2 vote down check

As identity will be generated during insert anyway, could you simply remove this column from #tmp before inserting the data back to T?

alter table #tmp drop id
link|flag
From my simple experiments, it looks like this does the job :) thanks. Can anybody think of any ways where the cell contents maybe misaligned due to the fact that the source table #tmp has 1 less column than the destination T? – Haoest Sep 23 '08 at 18:41
vote up -1 vote down
  1. it gives me a chance to preview the data before I do the insert
  2. I have joins between temp tables as part of my calculation; temp tables allows me to focus on the exact set data that I am working with. I think that was it. Any suggestions/comments?

For part 1, as mentioned by Kolten in one of the comments, encapsulating your statements in a transaction and adding a parameter to toggle between display and commit will meet your needs. For Part 2, I would needs to see what "calculations" you are attempting. Limiting your data to a temp table may be over complicating the situation.

link|flag
vote up 0 vote down

Might an "update where T.ID = #tmp.ID" work?

link|flag
no, there's no content in #tmp – Haoest Sep 23 '08 at 18:28
vote up 1 vote down

Just list the colums you want to re-insert, you should never use select * anyway. If you don't want to type them ,just drag them from the object browser (If you expand the table and drag the word, columns, you will get all of them, just delete the id column)

link|flag
design error or something, this table has some 80 columns, 30 of which are deprecated. Because of the way #tmp is created, I think it's okay to make an exception of using select *. – Haoest Sep 23 '08 at 18:27
vote up 1 vote down

Not with SELECT * - if you selected every column but the identity, it will be fine. The only way I can see is that you could do this by dynamically building the INSERT statement.

link|flag
vote up 0 vote down

set identity_insert on

link|flag
vote up 6 vote down

SET IDENTITY_INSERT ON

INSERT command

SET IDENTITY_INSERT OFF

link|flag
There may be primary key collision if I do that because by the time #tmp is ready for copying, same keys may have been inserted into T. – Haoest Sep 23 '08 at 18:04
Would packaging it up as a transaction work then? – Kolten Sep 23 '08 at 18:06
Ahh, that would work. I didn't start the transaction until #tmp's were ready for copying ( I have many tmps to calculate ) to minimize lock time. I guess now it's justifiable. – Haoest Sep 23 '08 at 18:10

Your Answer

Get an OpenID
or

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