When I put an object in Maintenance Mode through SquaredUp and fill in the additional comments, how do I go back and see that information? Is there a way to dashboard who did it, reason and additional comments?
1 Like
Currently, there’s no way of viewing this info in Squared Up v3, though this was possible in v2. Probably best to send a request to support.
You could write a SQL query to pull MM info, though I wouldn’t know where to begin with this, as I’m not even sure which DB it’s stored in
1 Like
Give this a try…
- Add a new SQL tile to a dashboard
- Choose SQL (Table)
- Use your OperationsManager database. For example:
- Data Source=FQDN.Of.Your.OpsMgr.DB;Initial Catalog=OperationsManager;Integrated Security=True;
- For your query string, use the following SQL:
I found the above SQL code at this web site: http://www.culham.net/sql/what-scom-objects-are-in-maintenance-mode-sql-query/
2 Likes
Brilliant, thanks, looks like that will do the trick.
Had to replace ‘’ with ‘’ to get it working.