cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2491
Views
15
Helpful
2
Replies

SQL CDR reporting in CUCM ver 8

GarageLand42
Level 1
Level 1

I was able to run this SQL statement in ver 7, but it does not work in version 8

run sql select * from car:tbl_billing_data where originalcalledpartynumber like '%2966' 

  in CUCM ver 8, I recieve the following error

"Database not found or no system permissions"

1 Accepted Solution

Accepted Solutions

Jaime Valencia
Cisco Employee
Cisco Employee

The syntax for the qry has changed, it must look like this:

run sql car select * from tbl_billing_data where originalcalledpartynumber like '%2966' 

HTH

java

If this helps, please rate

www.cisco.com/go/pdihelpdesk

HTH

java

if this helps, please rate

View solution in original post

2 Replies 2

Jaime Valencia
Cisco Employee
Cisco Employee

The syntax for the qry has changed, it must look like this:

run sql car select * from tbl_billing_data where originalcalledpartynumber like '%2966' 

HTH

java

If this helps, please rate

www.cisco.com/go/pdihelpdesk

HTH

java

if this helps, please rate

Awesome,  that worked.