cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
916
Views
5
Helpful
1
Replies

How can I get a list of active Agents (marked as Login Enabled) from AW sql ?

acerda
Level 1
Level 1

Hi Team, I am looking for a sql query to show me the agents marked as Login Enabled in CCE Admin, we have about 5000 entries but I just need to know the ones Enables.

Many thanks in advance

 

 

PCCE 12.0 2K

1 Accepted Solution

Accepted Solutions

Piyush Verma
Level 4
Level 4

You'll have to look into the "Person" table (instead of Agent table).

 

select * from Person
where LoginEnabled = 'Y'

View solution in original post

1 Reply 1

Piyush Verma
Level 4
Level 4

You'll have to look into the "Person" table (instead of Agent table).

 

select * from Person
where LoginEnabled = 'Y'