Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Christina 127 posts 390 karma points notactivated
    Jun 15, 2022 @ 11:07
    Christina
    0

    An item with the same key has already been added Upgrade Error Umbraco 8 to Umbraco 9

    Hi I need som help where I should starts looking I'm trying to upgrade the Umbraco 8 to Umbraco 9.5.2 and I got this error when I'm trying to upgrade the DB Can someone please advice me where to find this Item *An item with the same key has already been added. * /Many Thanks Christina

    System.ArgumentException: An item with the same key has already been added. Key: settings at System.Collections.Generic.Dictionary2.TryInsert(TKey key, TValue value, InsertionBehavior behavior) at System.Collections.ObjectModel.KeyedCollection2.AddKey(TKey key, TItem item) at System.Collections.ObjectModel.KeyedCollection2.InsertItem(Int32 index, TItem item) at Umbraco.Cms.Core.Models.PropertyGroupCollection.InsertItem(Int32 index, PropertyGroup item) at Umbraco.Cms.Core.Models.PropertyGroupCollection.Add(PropertyGroup item) at Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement.ContentTypeCommonRepository.MapGroupsAndProperties(IDictionary2 contentTypes) at Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement.ContentTypeCommonRepository.GetAllTypesInternal() at Umbraco.Extensions.AppCacheExtensions.<>cDisplayClass0_0`1.b0() at

  • Marc Goodson 2155 posts 14406 karma points MVP 9x c-trib
    Jun 19, 2022 @ 00:08
    Marc Goodson
    100

    Hi Christina, which nersion of V8 are you moving from?

    And did you have tabs and. /or groups organising your properties on your document types...

    ... The error message seems to indicate that a property group has already been added on a doc type with the same name as another...

    ... But that could be because of the reintroduction of tabs in V8...

    So you might need to upgrade to latest V8... If not check for any groups or tabs on doc types with the same name...

    Regards

    Marc

  • Christina 127 posts 390 karma points notactivated
    Jun 20, 2022 @ 12:15
    Christina
    0

    Hi Marc Thanks a lot! It was tabs that caused the error

    /Christina

  • Garret 69 posts 309 karma points
    Jun 17, 2024 @ 18:26
    Garret
    0

    If someone encountered the same problem, the SQL query to identify the culprit(s)

    SELECT contenttypeNodeId, [text], COUNT() AS duplicate_count FROM [dbo].[cmsPropertyTypeGroup] GROUP BY contenttypeNodeId, [text] HAVING COUNT() > 1;

    Maybe even better to replace [text] with alias

  • Meni 271 posts 528 karma points
    Jul 25, 2024 @ 21:01
    Meni
    0

    After running this SQL query, how do I fix the issue?

    This is what I got when running:

    SELECT cct.[alias], [contentTypeId], cpt.[alias], count(cpt.[Alias]) FROM [cmsPropertyType] cpt JOIN [cmsContentType] cct on cpt.contentTypeId = cct.nodeid GROUP BY cct.[alias], [contentTypeId], cpt.[alias] HAVING COUNT(cpt.[alias]) > 1

    enter image description here

    Is it says I have duplications?

    If yes, how can I fix it ?

    Thanks.

Please Sign in or register to post replies

Write your reply to:

Draft