Global size monitoring
What is the best way to get the size and other storage details of individual Globals in a namespace?
Thanks,
Mary
What is the best way to get the size and other storage details of individual Globals in a namespace?
Thanks,
Mary
To use SAM?
Thank you @Evgeny Shvarov. I was looking for an individual table/global level size check.
Maybe try this for individual globals to see the Allocated and Used size in MB:
Set tSC=##class(%Library.GlobalEdit).GetGlobalSize("location","global",.Allocated,.Used)
zw Allocated,Used
https://cedocs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cl...
Thank you @Jordan Simpson . This was helpful to solve my issue.