06-13-2025 07:26 AM
I am trying to get an inventory device types from CUCM, but not having a lot of luck with the sql queries. I have looked at RTMT but it doesn't appear to be a way to export.
I have found multiple sites that have examples but all give a syntax error.
Any assistance would be appreciated.
Joe
Solved! Go to Solution.
06-16-2025 12:39 PM
If you just want to see what is configured in the DB, you can use:
run sql select d.name as device, description, m.name as model from device d inner join typemodel m on d.tkmodel = m.enum where m.tkclass = 1 order by model.
06-13-2025 08:36 AM
You can also get this kind of information via the web interface. Go to Device and choose the option “Device Type” to search for a particular phone model
06-13-2025 10:26 AM
on Web interface, you can go to
>> Bulk Administration >> Phones >> Export Phones >> and get report based on Specific or All details
>> then open text file in Excel with Delimited with Comma..
also, see this post, maybe help >>
https://community.cisco.com/t5/collaboration-knowledge-base/getting-a-report-of-cucm-devices-with-ip-mac-firmware-version/ta-p/3995302
06-16-2025 12:39 PM
If you just want to see what is configured in the DB, you can use:
run sql select d.name as device, description, m.name as model from device d inner join typemodel m on d.tkmodel = m.enum where m.tkclass = 1 order by model.
06-16-2025 11:08 PM
The Device Count Report From the CUCM reporting page will provide an inventory of phone models configured with their counts.
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