SSMS
 sql >> Base de Dados >  >> Database Tools >> SSMS

T-SQL Inserir na tabela sem precisar especificar todas as colunas


Você pode fazer isso facilmente na verdade:
-- 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

Desde que você tenha Identity Insert On em "YourOtherBigTable" e as colunas sejam absolutamente idênticas, você ficará bem.