Quantcast
Viewing all articles
Browse latest Browse all 20518

Re: Looking for a SQL query to get unmanaged nodes in the future

If you are looking for nodes that have been set to be unmanaged starting in the future, you can use this:

 

SELECT   CAPTION AS 'DEVICE',   IP_ADDRESS AS 'IP ADDRESS',   UNMANAGEFROM AS 'BEGIN UNMANAGE',   UNMANAGEUNTIL AS 'END UNMANAGE'
FROM NODES 
WHERE UNMANAGEFROM > (GETDATE())

 

If you are trying to use SQL to set devices to be unmanaged in the future, that will be different.

 

- ZackM

http://www.loop1systems.com


Viewing all articles
Browse latest Browse all 20518

Trending Articles