Aina ya tovuti Content katika Matumizi - Hitilafu wakati wa kuifuta Aina Content

Kama kupata “Aina ya tovuti Content katika Matumizi” hitilafu wakati wa kufuta aina ya maudhui.

Kubadili maudhui default aina kwa ajili ya orodha maktaba /, ambayo inatumia aina hii maudhui.

Basi kujaribu kufuta aina ya maudhui.

2 comments to Site Content Type in Use – Error while Deleting Content Type

  • KKelaiya

    How to find in which libraries this content type is used?

  • Refer to the discussion in my forum :
    http://www.mstechblogs.com/Forums/viewtopic.php?f=8&p=12&sid=cee7f065bed1fc88d9759c66b373d4dd#p12

    You can use Object Model to find :

    kutumia Mfumo wa;
    kutumia System.Collections.Generic;
    kutumia Microsoft.SharePoint;

    namespace Test
    {
    class ConsoleApp
    {
    static void Main(string[] args)
    {
    kutumia (SPSite siteCollection = new SPSite(“http://kwenye localhost”))
    {
    kutumia (SPWeb webSite = siteCollection.OpenWeb())
    {
    // Get the obsolete content type.
    SPContentType obsolete = webSite.ContentTypes[“Test”];

    kama (obsolete != 0) // We have a content type.
    {
    IList usages = SPContentTypeUsage.GetUsages(obsolete);
    kama (usages.Count > 0) // It is in use.
    {
    Console.WriteLine(“The content type is in use in the following locations:”);
    foreach (SPContentTypeUsage usage in usages)
    Console.WriteLine(usage.Url);
    }
    mwingine // The content type is not in use.
    {
    // Delete it.
    Console.WriteLine(“Deleting content type {0}…”, obsolete.Name);
    webSite.ContentTypes.Delete(obsolete.Id);
    }
    }
    mwingine // No content type found.
    {
    Console.WriteLine(“The content type does not exist in this site collection.”);
    }
    }
    }
    Console.Write(“\nPress ENTER to continue…”);
    Console.ReadLine();
    }
    }
    }

    Other Option would be using SQL query (beware its bit risky)

    SELECT *
    FROM AllUserData
    WHERE (tp_DirName LIKE ‘%’)
    NA ((tp_ContentType = ‘Document’) and tp_ListId=’C8723B19-0DAB-4F19-B195-3399D5375752′)

    You will find items referenced by content type. Delete this referenced items using query below.

    DELETE
    FROM AllUserData
    WHERE (tp_DirName LIKE ‘%’)
    NA ((tp_ContentType = ‘Document’) and tp_ListId=’C8723B19-0DAB-4F19-B195-3399D5375752′)

BBC

Unaweza kutumia haya HTML

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>