Shoretel CDR Database Schema Upgrade 19.XX to 21.82
Schema Upgrade Script Before Import Old Records Immediately after upgrading from Shoreware 19.XX to Shoreware 21.82, you will want to import your old CDR records. Before you can do that, you must upgrade the old CDR records by adding some new fields. My upgrade script will take your old CDR and add those fields. To use it, import your old CDR into a stand-alone mysql instance and then upgrade it using my handy script, then export it out, finally import the records into your Shoreware director. Create a Stand-alone Instance of the CDR database 1 2 3 4 5 drop database shorewarecdr; CREATE DATABASE shorewarecdr; GRANT ALL ON shorewarecdr.* TO st_cdrreport@localhost IDENTIFIED BY 'passwordcdrreport' ; GRANT ALL ON shorewarecdr.* TO `root`@` 127 . 0 . 0 . 1 ` IDENTIFIED BY 'passwordcdrreport' ; FLUSH PRIVILEGES ; Upgrade the old CDR 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32...