Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Deleting a package in Microsoft Application Virtualization fails with Error code 0000B005


Symptoms

When a Microsoft Application Virtualization (App-V) administrator attempts to delete an old App-V package on an App-V 4.5 SP2 Management server, the operation fails with the following error:

Unexpected error occurred.

Unable to delete the specified application.  Please report the following error code to your system administrator.
Error code: 0000B005.

↑ Back to the top


Cause

This can occur if the Application_Usage table is too large (e.g. has millions of rows) and there is an Application record in the Application_Usage table associated to the Application ID of the App-V Package that is being deleted.

↑ Back to the top


Resolution

To resolve this issue, truncate the Application_Usage table or delete the specific Application ID records from the Application_Usage table for the application you wish to delete.

First, check the Message_Log and Application_usage tables to determine if they are too large (have millions of rows). To do this, cut and paste the following script into a SQL query window focused on the AppVirt DB:

select count(*) from MESSAGE_LOG
go
select count(*) from APPLICATION_USAGE
go

If millions of rows are found in either table, backup the App-V database and truncate the tables using the following SQL script focused on the App-V Database. Please be aware that this will remove all data from both tables.

truncate table MESSAGE_LOG
go

truncate table APPLICATION_USAGE
go


↑ Back to the top


Keywords: kb

↑ Back to the top

Article Info
Article ID : 2760974
Revision : 2
Created on : 3/27/2020
Published on : 3/27/2020
Exists online : False
Views : 79