आप इसे वास्तव में काफी आसानी से कर सकते हैं:
-- Select everything into temp table
Select * Into
#tmpBigTable
From [YourBigTable]
-- Drop the Primary Key Column from the temp table
Alter Table #tmpBigTable Drop Column [PrimaryKeyColumn]
-- Insert that into your other big table
Insert Into [YourOtherBigTable]
Select * From #tmpBigTable
-- Drop the temp table you created
Drop Table #tmpBigTable
बशर्ते आपके पास "YourOtherBigTable" में आइडेंटिटी इंसर्ट ऑन हो और कॉलम बिल्कुल समान हों तो आप ठीक रहेंगे।