vote up 1 vote down star

Hi

I'm having an issue when trying to import an existing export using stsadm.

Having succesfully exported the site collection, I then create a new blank site. When I run the import command, it runs for a while, then completes with the following error:

01/28/2009 13:04:28.84 STSADM.EXE (0x3F54) 0x1D74 Windows SharePoint Services General 72ju High stsadm: A duplicate name "Team" was found. Callstack: at Microsoft.SharePoint.SPFieldCollection.AddFieldToWeb(String strXml, Boolean checkDisplayName) at Microsoft.SharePoint.SPFieldCollection.AddFieldAsXmlInternal(String schemaXml, Boolean addToDefaultView, SPAddFieldOptions op) at Microsoft.SharePoint.Deployment.FieldTemplateSerializer.CreateField(SPWeb web, SerializationInfoHelper infoHelper) at Microsoft.SharePoint.Deployment.FieldTemplateSerializer.SetObjectData(Object obj, SerializationInfo info, StreamingContext context, ISurrogateSelector selector) at Microsoft.SharePoint.Deployment.XmlFormatter.ParseObject(Type objectType, Boolean isChildObject) at Microsoft.SharePoint.Deployment.XmlFormatter.DeserializeObject(Type objectType, Boolean isChildObject, Deployme... 01/28/2009 13:04:28.84* STSADM.EXE (0x3F54) 0x1D74 Windows SharePoint Services General 72ju High ...ntObject envelope) at Microsoft.SharePoint.Deployment.XmlFormatter.Deserialize(Stream serializationStream) at Microsoft.SharePoint.Deployment.ObjectSerializer.Deserialize(Stream serializationStream) at Microsoft.SharePoint.Deployment.ImportObjectManager.ProcessObject(XmlReader xmlReader) at Microsoft.SharePoint.Deployment.SPImport.DeserializeObjects() at Microsoft.SharePoint.Deployment.SPImport.Run() at Microsoft.SharePoint.StsAdmin.SPImportOperation.Run(StringDictionary keyValues) at Microsoft.SharePoint.StsAdmin.SPStsAdmin.RunOperation(SPGlobalAdmin globalAdmin, String strOperation, StringDictionary keyValues, SPParamCollection pars)

When I then run the site, it seems to have just done half a job and stopped at the error.

Can anyone point me in the right direction for what might be causing this error?

Many Thanks

Kieran

flag

54% accept rate

3 Answers

vote up 1 vote down

The stack trace tells us a lot about what is happening. The most important line is Microsoft.SharePoint.SPFieldCollection.AddFieldToWeb This means that the error is occurring when a field, not a list is being added to an SPWeb. If you add to an SPFieldCollection with an existing name, this will error.

You can use SharePointManager to have a peak at the site things are going into if you are curious.

The reason this is happening is you are restoring to a sub site and the main site still has all the fields there.

Your best bet is to make sure you have the latest patches etc (see Lars suggestion).

Walm3864 post is correct in that a new site collection will not have the same problem. A new site collection is usually a serious decision to make and has to be judged in light of your current information architecture.

This will not affect search as the new site collection can be added to the existing url using a managed path (e.g. http://intranet/sites/mynewsiteyay)

It will impact on your backup strategy as you will need to add the new database to that process.

It can be beneficial to add new site collections for some larger sub sites as it will improve the backup times if all databases are under 100GB. It is important to split out potentially large sites early as it is hard to do it after the fact.

link|flag
Thanks Nat. I had a look at the target site after the import failed and I dont see any field called 'Team'. This is what is confusing me is the fact that I cant identify what it is referring to as 'Team' to try and resolve it. Do you know how I can track down what 'Team' is? – 78lro Feb 17 at 15:37
Forgot to mention, I used the SharePointManager to do this – 78lro Feb 17 at 15:37
If it does not exists in the "web", checkout the site collection and see if it is there. – Nat Feb 17 at 21:11
Are you referring to the SharePointManager to do this? I expanded the site collection and looked under fields, is that correct? – 78lro Feb 18 at 10:23
vote up 1 vote down

Have you installed the December cumulative update? Microsoft has recently fixed a number of bugs in the content migration framework.

link|flag
Lars, do you think this cumulative patch will fix such an issue as this? – 78lro Feb 18 at 12:31
Yes, I think there is a good chance it will. As far as I recall this or a similar problem was already fixed in the Oct CU. But please check the description of this CU or the Dec CU to see if your specific error was addressed. Otherwise try it out on another test box – Lars Fastrup Feb 18 at 16:35
Lars, I think the same issue is mentioned in this hotfix support.microsoft.com/kb/956057 part of the August CU. So I installed all of the August CU. Same error. I had a look using the SPManager for the field, I've now found one called 'team' so would changing the static name fix this issue? – 78lro Feb 27 at 9:09
vote up 0 vote down

It might be a conflict with list id's. Try this, create a new content db and then create a new site collection and make a import?

link|flag
I meant field.. sorry was coding a with splistitem at that moment and somehow that went in the answer ;) – Walm3864 Jan 28 at 22:34
Hey I'm not sure why there would be a conflict given that the site I am importing to is a clean blank site? If I create a new content db, will that not impact on future backups/searching across the farm? Is there a way to find what is conflicting? – 78lro Feb 24 at 14:41

Your Answer

Get an OpenID
or

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