Network Management
Custom SQL Windows Node Credential Report
This article describes how to create a custom SQL report for Windows Nodes and their assigned credentials.
First published date
Last published date
Overview
This article describes how to create a custom SQL report for Windows Nodes and their assigned credentials.
Note: Custom SQL is not supported by SolarWinds Technical Support.
Product section
Resolution
- Navigate to the Manage Reports page.
- Click the Create New Report button.
- Select Custom table.
- Select the "Advanced SQL Database query" option under the Selection Method.
- Select "SQL" for the query type and paste this query:
--Disclaimer: --Scripts are not supported under any SolarWinds support program or service. Scripts are --provided AS IS without warranty of any kind. SolarWinds further disclaims all warranties --including, without limitation, any implied warranties of merchantability or of fitness for a --particular purpose. The risk arising out of the use or performance of the scripts and --documentation stays with you. In no event shall SolarWinds or anyone else involved in the --creation, production, or delivery of the scripts be liable for any damages whatsoever --(including, without limitation, damages for loss of business profits, business interruption, loss --of business information, or other pecuniary loss) arising out of the use of or inability to use --the scripts or documentation. select Credential.Name, nodes.Caption, nodes.NodeID, nodesettings.SettingName, NodeSettings.SettingValue from Nodes join NodeSettings on nodes.NodeID = Nodesettings.NodeID join Credential on nodesettings.SettingValue = Credential.ID where nodes.ObjectSubType = 'WMI' and nodesettings.SettingName = 'WMICredential'
- Adjust or add to the custom SQL query above to add more columns/information.