up vote 1 down vote favorite
1
share [g+] share [fb]

We're trying to get rid of all of our SQL Server 2000 databases to re purpose our old DB server... Sharepoint 3.0 is being a showstopper.

I've looked at a lot of guides from Microsoft and tried the instructions in those. I've also just tried the good ol' exec sp_detach_db / sp_attach_db with no luck. Has anyone actually done this?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

my boss has. it was a real pain. permissions issues. he used the built in sharepoint backup tool. I can more details tomorrow if need. I'll check back.

I'm back. Here's the steps he used.

  • install an instance of sql server 2005 on the sql 2000 box (side-by-side)
  • back up the sharepoint site using the sharepoint admin tools. This will create a one mother of a large xml file w/ the whole kit and kaboodle (the site & all it's content)
  • delete the old-n-busted sharepoint site
  • create a new hotness sharepoint site using the sql server 2005 as the database.
  • do a restore from the xml backup using the admin tools - this will take hours to run (thank you xml ...)
  • Bingo!
  • P.S. I forgot, the account you use to do the restore must be an 'sa' account.
link|improve this answer
I'll give this a try and keep Stackoverflow up to date. – andyh_ky Sep 19 '08 at 15:03
Worked like a charm! – andyh_ky Sep 19 '08 at 21:53
feedback

Your Answer

 
or
required, but never shown

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