Quick question about moving data from one database table to another. I have one test environment and one production environment. I want to move the content in the tables from the production environment into the same database on the test environment. What is the best way to do this? I dont want to do a restore because i need the stored procedures and everything else to stay intact on the test environment. And if i do an import, it will just add to the existing content, giving me duplicates.
What is the best practices for this kind of things?
Note: Im using SQL Server 2005