cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
320
Views
10
Helpful
3
Replies

Export Specific Details Phone list

msmalik
Level 1
Level 1

Hello,

Is there a way to just export the devices who doesn't have any route partition selected.

We have around 8k devices in our cucm and i am trying to figure out a way to just export those which doesn't have any Route_Partition selected.

 

Route_Partition.PNG

 

 

Thanks

3 Replies 3

If you are trying to find all DNs that don't have a partition, you can use the route plan report to find all Directory Numbers where the Partition is Empty.

DNList.jpg

That will show all of the DNs with or without a Partition, and what device (if any) that DN is associated with. Use "View in File" under Related Links to export this list as a CSV. The CSV will include both the DN and any associated device.

Maren

Thanks Maren, you are a Gem !!!!

That was super easy. 

The below SQL query will show only the phones with DN which has partitions assigned.

 

run sql select device.name as DeviceMAC, numplan.dnorpattern as Parition, routepartition.name as CSS from device ,numplan , devicenumplanmap , routepartition where devicenumplanmap.fkdevice =device.pkid and devicenumplanmap.fknumplan =nUMPLAN.pkid and numplan.fkroutepartition= routepartition.pkid and tkclass =1 order by routepartition.name

 

From Bulk Export the phone Information and filter out the phones which doesn't have DN assigned will be another option.



Response Signature