I don't think you can do what you want using SELECT INTO.
You'll have to do it the "hard" way and create the table using DDL (CREATE TABLE #temp ADD COLUMN identitycolumn ... , etc.) then populate the newly created table via INSERT #temp SELECT ... FROM orders etc.
Jeff Mason
Custom Apps, Inc.
www.custom-apps.com