Microsoft KB820328: "SharePoint Portal Server 2001 will not function on Windows Server 2003 because of incompatibilities between the versions of the Microsoft Web Storage System and Microsoft Internet Information Services (IIS) 6. There are currently no plans to release an update to the Web Storage System in SharePoint Portal Server 2001 to make it compatible with Windows Server 2003."
There are some tools available to ease a migration, such as SPIN and SPOUT. SPOUT is a document library Export Tool for SharePoint. SPOUT will export the workspace document library content as an XML manifest file and the individual content files. The XML manifest files is used to describe the different objects and properties of the documents. After running, SPOUT will generate 3 files:
I did some testing with SPOUT a while ago, just to get an idea how fast it would be. I ran it in a test environment with Windows 2000SP4, 512 MB RAM,SharePoint Portal Server 2001 SP2a, .Net Framework 1.1. On average I got export times between 1 and 3 secs per file with file size as the most important factor. Even when this would run twice as fast in a production environment time is still a limiting factor, exporting about 100000 files would take about 27 hours. You should also take into account the size of manifest.xml file, since XML parsing can become quite troublesome when your XML files contain a lot of data. (Tip : use Xpath queries since XMLDom manipulations can be very memory intensive, qua memory usage can run as high as 10 times the original filesize.)
Number of files | Size manifest.xml | MBs exported | Duration | |
Test 1 | 69 | 96K | 42.9 | 41 sec |
Test 2 | 154 | 216K | 48.6 | 55 sec |
Test 3 | 280 | 396K | 56.8 | 1min11sec |
Test 4 | 709 | 982K | 167 | 3min6sec |
If you want to try out some alternative tools for export and import you should definitely check out this GotDotNext workspace. Before starting a migration, take a look at the following links:
2 comments:
There are also several commercial solutions, such as the K-Wise Deployer (SharePoint 2001, Exchange & Lotus Notes migration to SharePoint 2003), which are better than the freewares, but tend to be a bit expensive.
You may want to check out Pre-SPin at www.pre-spin.com
It uses SPin and SPout but allows you to modify site structure and choose which files to migrate and which to leave behind.
Post a Comment