Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Out of band detection setting column in database

sakshibansal
New Contributor II
New Contributor II

Hello,

I am trying to look for DB column where the out of band detection setting is enabled. I couldn't find it in endpoints table.

Could you please provide the SQL query to check the same.

sakshibansal_0-1684766545975.png

 

7 REPLIES 7

RakeshMG
Saviynt Employee
Saviynt Employee

Please check if the configuration table is exposed in your Data analyzer. 

If yes, please use following query : select * from configuration where name like '%outofband%'.

Value will be stored in column "CONFIGDATA".


​Regards

Rakesh M Goudar

I couldn't see this in Data Analyzer, but checked in Analytics. It doesn't show in which endpoint this setting is enabled. So, how to check it?

sakshibansal_0-1684838652681.png

 

RakeshMG
Saviynt Employee
Saviynt Employee

The numeric value is endpoint key. You can find with it.


​Regards

Rakesh M Goudar

sakshibansal
New Contributor II
New Contributor II

The numeric values are not the actual endpoint key where out of band detection is enabled.

RakeshMG
Saviynt Employee
Saviynt Employee

Numeric value in Name column is endpoint key

RakeshMG_0-1686555998946.png

 


​Regards

Rakesh M Goudar

Hi,

It isn't correct.

I verified the numeric values against the endpointkey and none of them had the below config set in those endpoints.

sakshibansal_0-1686570316232.png

vivekmohanty_pm
Saviynt Employee
Saviynt Employee

@sakshibansal

select configdata from configuration where name = (select concat(endpointkey,'_OUTOFBANDACTION') from endpoints where ENDPOINTNAME = '<Enter the Endpoint name here>');