Hi
I need to archive let say Order table to OrderArchive table using SQL statement
Order table has 10,000 records.
I need to insert into OrderArchive table from Order with top 1000 rows in while loop.
How can I achieve this in SQL Server
Thanks.