This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Deleted assigned template still showing up in node summary page.

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.

attachments.zip
  • 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.