Skip to content

Delete Tags #1167

Answered by DavidWiseman
PBuskey asked this question in Q&A
Jan 2, 2025 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

Once the tag is no longer in use - it's deleted from the last server it will no longer be visible in the list of available tags. You can use the tag grouping & filtering in the GUI to identify where the tag is in use, or the Tags tab under the Configuration node in the tree at root level.

Or if you want to do this via a script:

DECLARE @TagID INT = ??? /* Find tag from dbo.Tags table. e.g. SELECT * FROM Tags */

DELETE dbo.InstanceTags 
WHERE TagID = @TagID

DELETE dbo.InstanceIDsTags
WHERE TagID = @TagID
	
DELETE dbo.Tags
WHERE TagID = @TagID

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@PBuskey
Comment options

Answer selected by PBuskey
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants