我需要解决方案
Hi all,
I'm trying to put together a SQL script that will give me the following info:
Host Name, Host Name IP, Node Name, lastUpdatedTime, bytesWritten
So far I've been able to query the Node Name and lastUpdatedTime using the following script:
select
name, UTCBigIntToNomTime (lastUpdatedTime)
from domain_Client a
where lastUpdatedTime = (select max(lastUpdatedTime) from domain_Client b
where a.name = b.name
This is where I am stuck. I need to finish the script to include Host Name, Host Name IP, bytesWritten
Thank you.