This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Uninstall the software, un-deployed the solution, removed from servers including SQL. Error in CA. MissingFeature Database has reference to a missing feature. The feature is referenced in the database, but is not installed on the current farm.

Uninstall the software, un-deployed the solution, removed from servers including SQL. Error in CA. MissingFeature Database has reference to a missing feature. The feature is referenced in the database, but is not installed on the current farm.
Parents
  • Hello Kelly,

     

    Please try the following steps

     

    • Navigate to SQL server
    • run the following query within sql to locate what lists are still referencing our feature via SQL Query:

     

    SELECT

         *

     FROM [ContentDBName].[dbo].[AllLists]

     where tp_FeatureId = 'ab15b0c9-3ce5-4b02-a099-cfd028f3c2ef'

     

    • Then remove the list with the following PowerShell commands (SharePoint Management Shell):

     

    $w = Get-SPWeb “http://WebApplicationUrl”

     

    $w.Lists.Delete([System.Guid]$w.Lists["Idera SharePoint Backup Self-Service Recovery Users"].ID)

     

    Kind Regards

Reply
  • Hello Kelly,

     

    Please try the following steps

     

    • Navigate to SQL server
    • run the following query within sql to locate what lists are still referencing our feature via SQL Query:

     

    SELECT

         *

     FROM [ContentDBName].[dbo].[AllLists]

     where tp_FeatureId = 'ab15b0c9-3ce5-4b02-a099-cfd028f3c2ef'

     

    • Then remove the list with the following PowerShell commands (SharePoint Management Shell):

     

    $w = Get-SPWeb “http://WebApplicationUrl”

     

    $w.Lists.Delete([System.Guid]$w.Lists["Idera SharePoint Backup Self-Service Recovery Users"].ID)

     

    Kind Regards

Children
No Data