I'm looking for the SQL syntax for adding a second DetailsURL in a Custom Resource.
The SQL spinet below works for the Node link but I need to provide the Volumes.Caption as a URL link as well:
SELECT TOP 20
Nodes.Caption AS NodeName,
'/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N:'+CAST(Nodes.NodeID as varchar(256)) as 'DetailsURL',
Volumes.Caption AS DiskName,
Volumes.VolumeSize AS VolumeSize,
Any advice?