What is the best way to serialize data from an SQL Server 2005 table? The table has assorted columns like datetime, bigint, decimal, varchar, varchar(max).
The plan is to dump the data to a file, send the file to another server, then put the data into the table of that server.
You have a range of options:
Unless you planned on changing / merging the data the other end, I would BCP / Backup. If I was planning on performing some merge / transforms at the remote end, I would probably tend to use SSIS.