SQL Query for low space in c drive
Created: 17 Jan 2013 | Updated: 17 Jan 2013 | 4 comments
This issue has been solved. See solution.
Hello All,
How we can check low space in c drive of all client machine's (Which are in SEPM) through SQL query?
Discussion Filed Under:
Comments 4 Comments • Jump to latest comment
Check Vikram Comments on this thread
https://www-secure.symantec.com/connect/forums/not...
Thanks In Advance
Ashish Sharma
SEPM Knowledgebase Documents
Hi,
Please find the same.
This query will tell u that how many space available in your c drive..
USE sem5
Thank& Regards,
Ambesh
Please mark your thread as 'SOLVED' with the answer that helps you.
Agree with above comment, one more ption to find the low disk systems. Use the query in Sep Content Distribution Montior and find the low disk space system
https://www-secure.symantec.com/connect/downloads/new-sep-content-distribution-monitor-gup-health-checking
SELECT computer_name, AGENT.FREE_DISK/1048576 from SEM_AGENT as AGENT LEFT OUTER JOIN V_SEM_COMPUTER as COMP ON AGENT.COMPUTER_ID = COMP.COMPUTER_ID LEFT OUTER JOIN IDENTITY_MAP as ID_MAP ON ID_MAP.ID = AGENT.GROUP_ID where AGENT.FREE_DISK/1048576 < 2000
Regards
Sumit G.
Thank you very much all, Great Job !!!!!
I got my answer properly ..
Would you like to reply?
Login or Register to post your comment.