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

Export UCCX Agents

zdesignstudio
Level 4
Level 4

What do I need to do to export agents/supervisors from UCCX? I'm guessing I need to do a SQL query but I have no idea what db to connect to or what table everything is located in. I would like if possible to see all agents and assigned skills w/ levels, etc.

Exporting from v7.0(1)SR05_Build504

Thanks,

Please rate useful posts and mark answers as correct if applicable.
1 Accepted Solution

Accepted Solutions

Deepak Rawat
Cisco Employee
Cisco Employee

export agents/supervisors from UCCX

This cannot be done.

I would like if possible to see all agents and assigned skills w/ levels, etc.

This can be done using SQL DB connect to the Master DB if I remember it correctly since it had been a while I worked on windows based UCCX and then choose db_cra and run below query

select s.skillname, rsm.competencelevel, r.resourceLoginID, r.extension, r.resourceFirstName, r.ResourceLastName,t.teamname from skill s inner join resourceskillmapping rsm on s.skillid = rsm.skillid inner join resource r on rsm.resourceskillmapid = r.resourceskillmapid join team t on r.assignedteamid = t.teamid where s.active = 't' and r.active = 't' order by s.skillname, competencelevel, resourceloginid

Regards

Deepak

View solution in original post

1 Reply 1

Deepak Rawat
Cisco Employee
Cisco Employee

export agents/supervisors from UCCX

This cannot be done.

I would like if possible to see all agents and assigned skills w/ levels, etc.

This can be done using SQL DB connect to the Master DB if I remember it correctly since it had been a while I worked on windows based UCCX and then choose db_cra and run below query

select s.skillname, rsm.competencelevel, r.resourceLoginID, r.extension, r.resourceFirstName, r.ResourceLastName,t.teamname from skill s inner join resourceskillmapping rsm on s.skillid = rsm.skillid inner join resource r on rsm.resourceskillmapid = r.resourceskillmapid join team t on r.assignedteamid = t.teamid where s.active = 't' and r.active = 't' order by s.skillname, competencelevel, resourceloginid

Regards

Deepak