How to get all the DeviceID and Machine Finger Print of a user from Advanced Authentication database?
All Risk Authentication Environment
DB: Oracle
You can run the below query against the database to get all the DeviceID and Machine Finger Print of a user
select * from ARRFDEVICEINFO where deviceidseqid IN( select deviceidseqid from arrfdevuserasso where username='<USERNAME>' and orgname='<ORGNAME>');
N/A