This is my requirement, I am trying to elaborate that in terms of Adventure works database.
I have to delete all records of Production.Product table which has constraints and Foreign key relation and fill the data from other table (currently I am using this statement to copy data in the table)
SELECT * INTO Product_temp
FROM [AdventureWorks].[Production].[Product]
So I have to delete all records from Product table and then insert from product_temp.
I have found this answer, but I am unable to find this option in SQL SERVER 2005