Endpoint Protection

 View Only
  • 1.  Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 07:20 AM

    Hello,

    I ran a query "select name from V_GROUPS" in SQL server and exported the group names to compare it with the SEPM. However, Both are not matching. SQL result consist of old groups which is not existing in the SEPM now. Is this something shows that the Database contains old entries of the SEPM.



  • 2.  RE: Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 07:23 AM

    What's the exact SEPM version here?



  • 3.  RE: Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 07:27 AM

    It is 12.1 RU3



  • 4.  RE: Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 07:34 AM

    This view contains the whole lot.  If you want to see only the groups that currently exist, you'll need to filter out the records that have DELETED = 1 (this is the last column if you look at it from SQL Management Studio).



  • 5.  RE: Groups in SEPM and Database is not matching
    Best Answer

    Posted Oct 13, 2014 07:39 AM

    Here you go, this should do it:

    SELECT TOP 1000 [ID]
          ,[NAME]
          ,[TYPE]
          ,[DOMAIN_ID]
          ,[DELETED]
      FROM [sem5].[dbo].[V_GROUPS]
      where [DELETED] is null

    Note:  I'm not a DBA, so there may well be a better way of doing this!



  • 6.  RE: Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 08:39 AM

    Thank you very much for your query. This is the query I needed. Is it possible to execute a query or generate a report in SEPM to find the un-used groups. I don think there is a report to find this.



  • 7.  RE: Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 10:12 AM

    I know there's a Computer Status report in the SEPM that shows the number of clients per group, but I'm not aware of any way to filter this to just those that have 0 clients (nor are my t-sql skills quite up to the task crying)



  • 8.  RE: Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 10:17 AM

    Is it possible to identify the same in the SEPM reports



  • 9.  RE: Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 10:31 AM

    Like I said, there's a Computer Status report on the SEPM, but it doesn't allow filtering to just those with 0 clients.

    The report itself is called Client Count by Group if you want to have a look at it



  • 10.  RE: Groups in SEPM and Database is not matching

    Posted Oct 13, 2014 10:48 AM

    This also helps. Thank you very much