I have a table ABC in a database DB. I want to create copies of ABC with names ABC_1, ABC_2, ABC_3 in the same DB. How can I do that using either Management Studio (preferab
1st option
select * into ABC_1 from ABC;
2nd option: use SSIS, that is right click on database in object explorer > all tasks > export data