Quantcast
Channel: THWACK: Message List
Viewing all articles
Browse latest Browse all 20625

Re: Filter on Top XX resource ?? PercentUsed < 100 ??

$
0
0

Deltona,

there is no report, but you can create one as a new SQL report. I extracted the SQL query from the resource and tweaked it to filter out the nodes with 100% Port usage.

 

SELECT TOP 10 * FROM

(

SELECT S.NodeID, N.Status, N.Caption, N.IP_Address, S.LastScan, S.LastSuccessfulScan, S.LastScanResult,

                ISNULL(AllPortCount.NodeTotal,0) AS [PortCount],

                ISNULL(AllActivePortCount.NodeTotal,0) AS [ActivePortCount],

 

 

                (ISNULL(AllPortCount.NodeTotal,0) - ISNULL(AllActivePortCount.NodeTotal,0)) AS PortsAvailable, CASE WHEN (ISNULL(AllPortCount.NodeTotal,0) = 0 OR ISNULL(AllActivePortCount.NodeTotal,0) = 0) THEN 0

                                ELSE ((ISNULL(AllActivePortCount.NodeTotal,0) * 100 ) / ISNULL(AllPortCount.NodeTotal,0)) END AS [PortPercentUsed]

 

 

                                FROM Nodes N

                INNER JOIN UDT_NodeCapability S ON N.NodeID=S.NodeID AND S.Capability = 2

                RIGHT OUTER JOIN (SELECT NodeID, COUNT(PortID) AS NodeTotal FROM UDT_Port  GROUP BY NodeID) AllPortCount ON AllPortCount.NodeID = S.NodeID

                RIGHT OUTER JOIN (SELECT NodeID, COUNT(PortID) AS NodeTotal FROM UDT_Port  GROUP BY NodeID, OperationalStatus HAVING OperationalStatus = 1) AllActivePortCount ON AllActivePortCount.NodeID = S.NodeID

                WHERE ISNULL(AllPortCount.NodeTotal,0) > 0

        

         ) as data

        

         Where PortPercentUsed < 100

         ORDER BY PortPercentUsed DESC, ActivePortCount DESC, PortsAvailable ASC

 

 

User Report Writer to create a new "Advanced SQL" report, where you can use this query, and tweak the displayed columns.

 

HTH,

 

Michal


Viewing all articles
Browse latest Browse all 20625

Trending Articles