sql server - How to split one large database table into multiple database tables -
i'm using sql server 2012 database servers. in database have table more 2,00,00,000. want split table in multiple tables 10,00,000 records in each table. can 1 tell me there way in sql server 2012 without using
insert table_name_2 select * table_name_1 condition_
or
select * table_name_2 table_name_1 condition_
there no special command this. using select * into... succinct gets.
if table size worry use table partition or view partition alternative splitting table.
Comments
Post a Comment