I have a table in a SQL Server 7.0 database with columns like:
Column_1 varchar(10) null
Column_2 int null
Column_3 varchar(15) null
Column_4 float(53) null
Column_5 float(53) null
Column_6 text(16) null
Column_7 text(16) null
Column_8 varchar(25) null
Column_9 datetime null
and I need to move it to a table in SQL Server 2005. What is the quickest and easiest way? I would generally just INSERT (cols...) SELECT cols.. FROM OtherDatabase.dbo.table
but I can't do that because it is SQL Server 7.0.