A new Flexera Community experience is coming on November 18th, click here for more information.
‎Apr 30, 2019 01:30 PM
You would have to do this for each Object Type - but below is an example that removes all Custom Properties on Assets....
-- delete properties for refresh - get ALL Properties for Assets and delete
DECLARE ap_cursor CURSOR FOR
select distinct PropertyName
from AssetTypeProperty
DECLARE @return_value int
DECLARE @ap_propertyName nvarchar(500)
OPEN ap_cursor
FETCH ap_cursor into @ap_propertyName
WHILE @@FETCH_STATUS=0
BEGIN
EXEC @return_value = [dbo].[DeleteAssetProperty] @ap_propertyName
FETCH NEXT FROM ap_cursor into @ap_propertyName
END
-- Close and deallocate the cursor
CLOSE ap_cursor
DEALLOCATE ap_cursor
‎Apr 30, 2019 05:17 PM
Try following statements to delete all custom property definitions:
DELETE FROM dbo.ComplianceUserTypeProperty DELETE FROM dbo.ComplianceComputerTypeProperty DELETE FROM dbo.VMHostProperty DELETE FROM dbo.PurchaseOrderProperty DELETE FROM dbo.PurchaseOrderDetailProperty DELETE FROM dbo.VendorProperty DELETE FROM dbo.ContractProperty DELETE FROM dbo.AssetTypeProperty DELETE FROM dbo.SoftwareTitleProperty DELETE FROM dbo.SoftwareLicenseTypeProperty DELETE FROM dbo.ImportedVMHostProperty DELETE FROM dbo.ImportedComputerCustomProperty -- Delete report column definitions for all custom properties. -- WARNING: This statement should be safe as long as the only custom columns defined are for custom properties. -- If your environment has other custom columns defined, you may need to consider whether to change the WHERE clause -- conditions to only delete what you want. DELETE FROM dbo.ComplianceSearchTypeColumn
WHERE ComplianceSearchTypeColumnID >= 10000 AND ColumnName LIKE '%Custom.%'
‎Apr 30, 2019 07:41 PM
User | Count |
---|---|
8 | |
7 | |
3 | |
3 |