Deleted assigned template still showing up in node summary page. How to remove from node page summary as this is showing the component as unknown on all pages.
Removing templates after deletion and the template remains on the node.
ie. {data_base_name} could be Orion
{name_of_template} the name of the template you are removing
{node_id} the node you wish to remove the template from
Query 1:
Select * from {data_base_name}.dbo.apm_application where name like '%{name_of_template}%'
Query 2:
Delete from {data_base_name}.dbo.apm_application where name like '%{name_of_template}%' and nodeid = '{node_id}'
These are simple queries to get the basic idea across. Please use at your discretion.