vote up 2 vote down star
2

Got myself in a bit of a pickle here ... working on a CMS project, under the assumption that sql server 2008 was greenlighted as the db of choice. Well it wasn't, we now have to backport all of our content out SQL Server 2008 and into SQL Server 2005.

A simple backup/restore procedure yields: "RESTORE HEADERONLY is terminating abnormally. (Microsoft SQL Server, Error: 3241)".

Unfortunately, exporting the data to an excel spreadsheet yields multiple OLE errors which I believe is actually a problem in the db of the cms.

Does anyone out there have other approaches they would like to recommend for this task? Thanks in advance

flag

Grab the sql compare/data compare tools as suggested by ocdecio. Works a treat for this kinda thing. stackoverflow.com/questions/413699/… . – Kev Jan 5 at 17:58

6 Answers

vote up 3 vote down check

Use RedGate

http://www.red-gate.com/products/sql_data_compare/index.htm

link|flag
SQL Compare & SQL Data Compare rock. Their free 14 day trial (which they'll extend if you ask nicely) got me out of a hole like this. Defo on the shopping list. – Kev Jan 5 at 17:55
Please if this saves you a day buy the software don't use the trial for commercial gain. In my last role we purchased the software and it paid for itself many times over. – David Waters Jan 6 at 9:49
this did the trick! thanks! – Keith Fitzgerald Jan 6 at 21:34
vote up 2 vote down

Rather than do a backup and restore you might try using SQL 2005's Import/Export Data wizard.

http://support.microsoft.com/default.aspx?scid=kb;en-us;314546

http://msdn.microsoft.com/en-us/library/ms140052(SQL.90).aspx

link|flag
vote up 1 vote down

It's not possible to restore to previous versions in SQL Server

Is there no SQL 2005 backup around? Otherwise you really are limited to export the entire database in 2008, and re-import back into 2005, or the Import/Export wizard in 2008

Or rely on 3rd party tools. e.g. Red Gate Data Compare is able to sync. the DATA between 2 servers/databases

link|flag
vote up 1 vote down

Use the Generate SCripts to create the database and schema and ensure you target SQL Server 2005 and script data.

link|flag
vote up 0 vote down

I only use mysql but can you export your data into sql statments, and then import then into sql2005? Just a thought..

link|flag
Ah I did try that. The sql then ran for 12+ hours last night. The DB isn't that large so i think something is wrong. – Keith Fitzgerald Jan 5 at 16:50
vote up 0 vote down

I faced a similar problem (sql 2005 to sql 2000), and found that I happened to have a blank database at the older version. I used bcp.exe to copy all the data.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.