06-24-2021 12:57 PM
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
Solved! Go to Solution.
06-24-2021 01:33 PM
You'll have to look into the "Person" table (instead of Agent table).
select * from Person
where LoginEnabled = 'Y'
06-24-2021 01:33 PM
You'll have to look into the "Person" table (instead of Agent table).
select * from Person
where LoginEnabled = 'Y'
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide