Skip to main content
InSource Solutions

TN - 1121 Identifying The Sentinel Administrator

Description

This article from InSource discusses the Sentinel Administrator account its identification

  • Author: Mario Meza
  • Published: 3/19/2021
  • Applies to: Sentinel

 

Sentinel uses the account credentials of the logged in user as the default Administrator during the initial installation. Should this information be misplaced you can execute the following SQL query to identify this user:

USE SentinelDB

GO

SELECT A.ID, A.Name, C.RoleName 
FROM [User] A, SentinelRole_User B, Roles C 
WHERE A.ID = B.SentinelUserId AND C.ID = B.SentinelRoleId 
ORDER BY A.ID

 

clipboard_e92a470f6dc86c8eb10a961363b8b4d88.png

  • Was this article helpful?