In our db there is a table that has a little over 80 columns. It has a primary key and Identity insert is turned on. I\'m looking for a way to insert into this table every colum
Why not just create a VIEW of the original data, removing the unwanted fields? Then 'Select * into' your hearts desire.