views:

297

answers:

2

I'm copying an SQL Server 2005 database from one server to another, with the Database>Tasks>Copy Database wizard, and it works great, except for the timestamp column whose values are not copied.

Is there a way to have the timestamp values be preserved on database copy?

+4  A: 

Is it possible for you to use a backup and then restore it to the server instead? Could be more trouble than it's worth in some cases, but it worked for me more than one time.

Bård
+1  A: 

Database backup restore is likely to work, but the best method I've used is SQL Data Compare: http://www.red-gate.com/products/SQL_Data_Compare/index.htm

Makes patching data and schema changes (via the SQL Compare product) so easy...

Justin