I need to copy some records from our SQLServer 2005 test server to our live server. It\'s a flat lookup table, so no foreign keys or other referential integrity to worry ab
I would just script to sql and run on the other server for quick and dirty transferring. If this is something that you will be doing often and you need to set up a mechanism, SQL Server Integration Services (SSIS) which is similar to the older Data Transformation Services (DTS) are designed for this sort of thing. You develop the solution in a mini-Visual Studio environment and can build very complex solutions for moving and transforming data.