cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Symptoms:

Unable to delete License Server Admin Set

Diagnosis:

The Delete button in the License Server Administrative Sets page does not work

Solution:

There is an existing bug on this issue. 

Below is the workaround. The  License Server Admin set can be removed from the database directly by means of an SQL script.

The customer needs to modify the line "SET Name = 't3'" to use the name of the set you're wanting to delete.
This is for SQL Server.

DECLARE @Name NVARCHAR(max)
SET @Name = 't3'

-- Remove users from the set:
DELETE aa
FROM MGR_LICSRVR_ADMINSET_ADMIN AS aa
JOIN MGR_LICSRVR_ADMINSET as aset ON aa.ADMINSET_ID = aset.ID
WHERE aset.NAME = @NAME

-- Remove servers from the set:
DELETE ag
FROM MGR_LICSVRADMSET_LICSVRGRP AS ag
JOIN MGR_LICSRVR_ADMINSET as aset ON ag.ADMINISTRATIVE_SET_ID = aset.ID
WHERE aset.NAME = @NAME

-- Remove the set itself:
DELETE MGR_LICSRVR_ADMINSET WHERE NAME = @NAME

Was this article helpful? Yes No
No ratings
Version history
Last update:
‎Nov 22, 2019 03:24 PM
Updated by: