We just need to use below query to dump one table data into other table.
Select * into SampleProductTracking_tableDump
from SampleProductTracking;
SampleProductTracking_tableDump
is a new table which will be created automatically
when using with above query.
It will copy the records from SampleProductTracking
to SampleProductTracking_tableDump