#!/usr/bin/perl # # ADMIN_archive_log_tables.pl version 2.14 # # This script is designed to put all records from call_log, vicidial_log and # vicidial_agent_log in relevant _archive tables and delete records in original # tables older than X days or months from current date. Also, deletes old # server_performance table records without archiving them as well as optimizing # all involved tables. # # Place in the crontab and run every month after one in the morning, or whenever # your server is not busy with other tasks # 30 1 1 * * /usr/share/astguiclient/ADMIN_archive_log_tables.pl # # NOTE: On a high-load outbound dialing system, this script can take hours to # run. While the script is running the system is unusable. Please schedule to # run this script at a time when the system will not be used for several hours. # # original author: I. Taushanov(okli) # Based on perl scripts in ViciDial from Matt Florell and post: # http://www.vicidial.org/VICIDIALforum/viewtopic.php?p=22506&sid=ca5347cffa6f6382f56ce3db9fb3d068#22506 # # Copyright (C) 2026 I. Taushanov, Matt Florell LICENSE: AGPLv2 # # CHANGES # 90615-1701 - First version # 100101-1722 - Added error safety checks # 100103-2052 - Formatting fixes, name change, added initial table counts and added archive tables to official SQL files # 100109-1018 - Added vicidial_carrier_log archiving # 100328-1008 - Added --months CLI option # 110218-1200 - Added notes and search log archiving # 110430-1442 - Added queue-log and closer-log options, changed quiet to --quiet flag # 110525-1040 - Added vicidial_outbound_ivr_log archiving # 110801-2140 - Added vicidial_url_log table purging and vicidial_log_extended to rolling processes # 110808-0055 - Added vicidial_log_noanswer process # 110822-1257 - Added did_agent_log process # 120402-2144 - Added "--daily" flag that will archive call_log and vicidial_log_extended logs past 24 hours # 120831-1536 - Added rolling of vicidial_dial_log entries # 140107-1508 - Added rolling of vicidial_api_log entries # 140305-0955 - Changed to use --days (--months is approximation[bug fix]), changed default from 2 months to 2 years # 150107-2308 - Added vicidial_api_log to daily process # 150712-2208 - Added vicidial_dtmf_log # 151109-1646 - Added --carrier-daily flag, only active if --daily flag is also used # 151124-2252 - Added --vlog-daily flag, only active if --daily flag is also used, Also added system_settings date # 160612-0703 - Added --only-trim-archive-... options # 160827-0957 - Added --recording-log-days=X option # 161212-1659 - Added --cpd-log-purge-days=XX option # 170209-1213 - Added vicidial_api_urls table rolling and purging to all vicidial_api_log sections # 170325-1108 - Added vicidial_drop_log table rolling # 170508-1212 - Added vicidial_rt_monitor_log table rolling # 170809-1926 - Added rolling of user_call_log if over 1000000 records # 170817-1318 - Added rolling of vicidial_inbound_survey_log # 170825-2243 - Added rolling of vicidial_xfer_log # 171026-0105 - Added --wipe-closer-log flag # 180410-1728 - Added vicidial_agent_function_log archiving # 180712-1641 - Added --wipe-all-being-archived AND --did-log-days options # 190318-1541 - Added vicidial_amd_log archiving # 190531-0841 - Added vicidial_log_extended_sip archiving # 190926-0005 - Added vicidial_sip_action_log archiving # 200102-0846 - Added vicidial_vmm_counts archiving # 201107-2206 - Added optional park_log archiving # 210317-2104 - Added vicidial_agent_visibility_log archiving # 210407-2023 - Added vicidial_peer_event_log archiving # 210819-0826 - Added vicidial_inbound_caller_codes archiving # 210912-1546 - Added --api-log-days=X and --api-only flags # 220309-2246 - Added --api-archive-days=X and --api-archive-only flags # 220312-0859 - Added vicidial_dial_cid_log table archiving, same as vicidial_dial_log # 230418-1341 - Added vicidial_user_dial_log archiving, same as vicidial_dial_log # 230421-0057 - Added vicidial_agent_latency_summary_log archiving # 230507-0804 - Added vicidial_latency_gaps archiving # 231028-0810 - Added --url-log-only and --url-log-days=x options for purging of vicidial_url_log table only # 231117-1914 - Added vicidial_3way_press_log archiving # 231126-2227 - Added vicidial_hci_log archiving # 240916-2159 - Added --extended-log-only # 240924-2041 - Added --vicidial-log-only # 250914-1537 - Added archiving of recording_log_stereo and recording_log_parallel tables # 251011-2048 - Added archiving of recording_live_log table # 251024-1518 - Added --vicidial-dial-log-only flag # 260111-2138 - Added --agent-log-only flag # 260516-2149 - Added internal logging # $CALC_TEST=0; $T=0; $TEST=0; $only_trim_archive=0; $recording_log_archive=0; $did_log_archive=0; $park_log_archive=0; $wipe_closer_log=0; $api_log_only=0; $api_archive_only=0; $url_log_only=0; $url_log_archive=0; $agent_log_only=0; $script_name = 'ADMIN_archive_log_tables.pl'; ### begin parsing run-time options ### if (length($ARGV[0])>1) { $i=0; while ($#ARGV >= $i) { $args = "$args $ARGV[$i]"; $i++; } if ($args =~ /--help/i) { print "allowed run time options:\n"; print " [--daily] = only archives call_log, vicidial_log_extended, vicidial_dial_log and vicidial_drop_log tables, only last 24 hours kept\n"; print " [--carrier-daily] = will also archive the vicidial_carrier_log table when --daily is run\n"; print " [--vlog-daily] = will also archive the vicidial_log table when --daily is run\n"; print " [--days=XX] = number of days to archive past, default is 732(2 years)\n"; print " [--months=XX] = number of months to archive past, default is 24(2 years) If 'days' used then 'months' ignored\n"; print " [--queue-log] = archive QM queue_log records\n"; print " [--only-trim-archive-level-one] = will not perform normal archive process, instead this will only delete records\n"; print " that are older than XX months from least important log archive tables:\n"; print " call_log_archive, vicidial_log_extended_archive, vicidial_dial_log_archive, vicidial_drop_log\n"; print " [--only-trim-archive-level-two] = same as --only-trim-archive-level-one, except includes tables:\n"; print " vicidial_carrier_log_archive, vicidial_api_log_archive, vicidial_rt_monitor_log_archive\n"; print " [--only-trim-archive-level-three] = same as --only-trim-archive-level-two, except includes tables:\n"; print " vicidial_log_archive, vicidial_agent_log_archive, vicidial_closer_log_archive, vicidial_xfer_log_archive\n"; print " [--recording-log-days=XX] = OPTIONAL, number of days to archive recording_log table only past\n"; print " [--did-log-days=XX] = OPTIONAL, number of days to archive vicidial_did_log table only past\n"; print " [--park-log-days=XX] = OPTIONAL, number of days to archive park_log table only past\n"; print " [--api-only] = OPTIONAL, only archive vicidial_api_log table then exit\n"; print " [--api-log-days=XX] = REQUIRED FOR --api-only, number of days to archive vicidial_api_log table only past\n"; print " [--vicidial-log-only] = OPTIONAL, only archive vicidial_log table then exit\n"; print " [--vicidial-log-days=XX] = REQUIRED FOR --vicidial-log-only, number of days to archive vicidial_log table only past\n"; print " [--vicidial-dial-log-only] = OPTIONAL, only archive vicidial_dial_log table then exit\n"; print " [--vicidial-dial-log-days=XX] = REQUIRED FOR --vicidial-dial-log-only, number of days to archive vicidial_dial_log table only past\n"; print " [--extended-log-only] = OPTIONAL, only archive vicidial_log_extended table then exit\n"; print " [--extended-log-days=XX] = REQUIRED FOR --extended-log-only, number of days to archive vicidial_log_extended table only past\n"; print " [--agent-log-only] = OPTIONAL, only archive vicidial_agent_log table then exit\n"; print " [--api-archive-only] = OPTIONAL, only purge vicidial_api_log_archive table then exit\n"; print " [--api-archive-days=XX] = REQUIRED FOR --api-archive-only, number of days to purge vicidial_api_log_archive table only past\n"; print " [--url-log-only] = OPTIONAL, only purge vicidial_url_log table then exit\n"; print " [--url-log-days=XX] = REQUIRED FOR --url-log-only, number of days to purge vicidial_url_log table only past\n"; print " [--cpd-log-purge-days=XX] = OPTIONAL, number of days to purge vicidial_cpd_log table only past\n"; print " [--wipe-closer-log] = OPTIONAL, deletes all records from vicidial_closer_log after archiving\n"; print " [--wipe-all-being-archived] = OPTIONAL, deletes all records from most tables after archiving\n"; print " [--quiet] = quiet\n"; print " [--calc-test] = date calculation test only\n"; print " [--test] = test\n"; print " [--debug] = debug output for some options\n\n"; exit; } else { if ($args =~ /-quiet/i) { $q=1; $Q=1; } if ($args =~ /--test/i) { $T=1; $TEST=1; print "\n-----TESTING-----\n\n"; } if ($args =~ /--debug/i) { $DB=1; print "\n-----DEBUG-----\n\n"; } if ($args =~ /--calc-test/i) { $CALC_TEST=1; print "\n-----DATE CALCULATION TESTING ONLY-----\n\n"; } if ($args =~ /--wipe-closer-log/i) { $wipe_closer_log=1; print "\n----- WIPE CLOSER LOG: $wipe_closer_log -----\n\n"; } if ($args =~ /--wipe-all-being-archived/i) { $wipe_all=1; print "\n----- WIPE ALL LOG TABLES BEING ARCHIVED: $wipe_all -----\n\n"; } if ($args =~ /--daily/i) { $daily=1; if ($Q < 1) {print "\n----- DAILY ONLY -----\n\n";} if ($args =~ /--carrier-daily/i) { $carrier_daily=1; if ($Q < 1) {print "\n----- CARRIER DAILY OPTION -----\n\n";} } if ($args =~ /--vlog-daily/i) { $vlog_daily=1; if ($Q < 1) {print "\n----- VLOG DAILY OPTION -----\n\n";} } } if ($args =~ /--months=/i) { @data_in = split(/--months=/,$args); $CLImonths = $data_in[1]; $CLImonths =~ s/ .*$//gi; $CLImonths =~ s/\D//gi; if ($CLImonths > 9999) {$CLImonths=24;} if ($Q < 1) {print "\n----- MONTHS OVERRIDE: $CLImonths -----\n\n";} } if ($args =~ /--days=/i) { @data_in = split(/--days=/,$args); $CLIdays = $data_in[1]; $CLIdays =~ s/ .*$//gi; $CLIdays =~ s/\D//gi; if ($CLIdays > 999999) {$CLIdays=730;} if ($Q < 1) {print "\n----- DAYS OVERRIDE: $CLIdays -----\n\n";} } if ($args =~ /--queue-log/i) { $queue_log=1; if ($Q < 1) {print "\n----- QUEUE LOG ARCHIVE -----\n\n";} } if ($args =~ /--only-trim-archive-level-one/i) { $only_trim_archive=1; if ($Q < 1) {print "\n----- ONLY TRIM LOG ARCHIVES LEVEL 1 -----\n\n";} } if ($args =~ /--only-trim-archive-level-two/i) { $only_trim_archive=2; if ($Q < 1) {print "\n----- ONLY TRIM LOG ARCHIVES LEVEL 2 -----\n\n";} } if ($args =~ /--only-trim-archive-level-three/i) { $only_trim_archive=3; if ($Q < 1) {print "\n----- ONLY TRIM LOG ARCHIVES LEVEL 3 -----\n\n";} } if ($args =~ /--recording-log-days=/i) { $recording_log_archive++; @data_in = split(/--recording-log-days=/,$args); $RECORDINGdays = $data_in[1]; $RECORDINGdays =~ s/ .*$//gi; $RECORDINGdays =~ s/\D//gi; if ($RECORDINGdays > 999999) {$RECORDINGdays=1825;} if ($Q < 1) {print "\n----- RECORDING LOG ARCHIVE ACTIVE, DAYS: $RECORDINGdays -----\n\n";} } if ($args =~ /--did-log-days=/i) { $did_log_archive++; @data_in = split(/--did-log-days=/,$args); $diddays = $data_in[1]; $diddays =~ s/ .*$//gi; $diddays =~ s/\D//gi; if ($diddays > 999999) {$diddays=1825;} if ($Q < 1) {print "\n----- DID LOG ARCHIVE ACTIVE, DAYS: $diddays -----\n\n";} } if ($args =~ /--park-log-days=/i) { $park_log_archive++; @data_in = split(/--park-log-days=/,$args); $parkdays = $data_in[1]; $parkdays =~ s/ .*$//gi; $parkdays =~ s/\D//gi; if ($parkdays > 999999) {$parkdays=1825;} if ($Q < 1) {print "\n----- PARK LOG ARCHIVE ACTIVE, DAYS: $parkdays -----\n\n";} } if ($args =~ /--api-only/i) { $api_log_only++; if ($Q < 1) {print "\n----- API LOG ARCHIVE ONLY -----\n\n";} } if ($args =~ /--api-log-days=/i) { $api_log_archive++; @data_in = split(/--api-log-days=/,$args); $apidays = $data_in[1]; $apidays =~ s/ .*$//gi; $apidays =~ s/\D//gi; if ($apidays > 999999) {$apidays=1825;} if ($Q < 1) {print "\n----- API LOG ARCHIVE ACTIVE, DAYS: $apidays -----\n\n";} } if ($args =~ /--vicidial-log-only/i) { $vicidial_log_only++; if ($Q < 1) {print "\n----- VICIDIAL LOG ARCHIVE ONLY $vicidial_log_only -----\n\n";} } if ($args =~ /--vicidial-log-days=/i) { $vicidial_log_only++; @data_in = split(/--vicidial-log-days=/,$args); $extendeddays = $data_in[1]; $extendeddays =~ s/ .*$//gi; $extendeddays =~ s/\D//gi; if ($extendeddays > 999999) {$extendeddays=1825;} if ($Q < 1) {print "\n----- VICIDIAL LOG ARCHIVE ACTIVE, DAYS: $extendeddays -----\n\n";} } if ($args =~ /--vicidial-dial-log-only/i) { $vicidial_dial_log_only++; if ($Q < 1) {print "\n----- VICIDIAL DIAL LOG ARCHIVE ONLY $vicidial_dial_log_only -----\n\n";} } if ($args =~ /--vicidial-dial-log-days=/i) { $vicidial_dial_log_only++; @data_in = split(/--vicidial-dial-log-days=/,$args); $extendeddays = $data_in[1]; $extendeddays =~ s/ .*$//gi; $extendeddays =~ s/\D//gi; if ($extendeddays > 999999) {$extendeddays=1825;} if ($Q < 1) {print "\n----- VICIDIAL DIAL LOG ARCHIVE ACTIVE, DAYS: $extendeddays -----\n\n";} } if ($args =~ /--extended-log-only/i) { $extended_log_only++; if ($Q < 1) {print "\n----- EXTENDED LOG ARCHIVE ONLY $extended_log_only -----\n\n";} } if ($args =~ /--extended-log-days=/i) { $extended_log_only++; @data_in = split(/--extended-log-days=/,$args); $extendeddays = $data_in[1]; $extendeddays =~ s/ .*$//gi; $extendeddays =~ s/\D//gi; if ($extendeddays > 999999) {$extendeddays=1825;} if ($Q < 1) {print "\n----- EXTENDED LOG ARCHIVE ACTIVE, DAYS: $extendeddays -----\n\n";} } if ($args =~ /--api-archive-only/i) { $api_archive_only++; if ($Q < 1) {print "\n----- API ARCHIVE PURGE ONLY -----\n\n";} } if ($args =~ /--api-archive-days=/i) { $api_log_archive_purge++; @data_in = split(/--api-archive-days=/,$args); $apiarchivedays = $data_in[1]; $apiarchivedays =~ s/ .*$//gi; $apiarchivedays =~ s/\D//gi; if ($apiarchivedays > 999999) {$apiarchivedays=1825;} if ($Q < 1) {print "\n----- API ARCHIVE PURGE, DAYS: $apiarchivedays -----\n\n";} } if ($args =~ /--url-log-only/i) { $url_log_only++; if ($Q < 1) {print "\n----- URL LOG PURGE ONLY -----\n\n";} } if ($args =~ /--url-log-days=/i) { $url_log_only++; @data_in = split(/--url-log-days=/,$args); $urldays = $data_in[1]; $urldays =~ s/ .*$//gi; $urldays =~ s/\D//gi; if ($urldays > 999999) {$urldays=1825;} if ($Q < 1) {print "\n----- URL LOG PURGE ACTIVE, DAYS: $urldays -----\n\n";} } if ($args =~ /--agent-log-only/i) { $agent_log_only++; if ($Q < 1) {print "\n----- AGENT LOG ONLY: |$agent_log_only| -----\n\n";} } if ($args =~ /--cpd-log-purge-days=/i) { $cpd_log_purge++; @data_in = split(/--cpd-log-purge-days=/,$args); $CPDdays = $data_in[1]; $CPDdays =~ s/ .*$//gi; $CPDdays =~ s/\D//gi; if ($CPDdays > 999999) {$CPDdays=1825;} if ($Q < 1) {print "\n----- CPD LOG PURGE ACTIVE, DAYS: $CPDdays -----\n\n";} } } } else { print "no command line options set\n"; } ### end parsing run-time options ### if ( ($CLImonths > 9999) || ($CLImonths < 1) || (length($CLImonths)<1) ) {$CLImonths=24;} if ( (length($CLIdays)<1) || ($CLIdays < 1) ) { $CLIdays = ($CLImonths * 30.5); $CLIdays = sprintf("%.0f",$CLIdays); } $secX = time(); ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); if ($daily > 0) { $CLIdays = '*** DAILY MODE ***'; $del_epoch = ($secX - 86400); # 24 hours ago ($RMsec,$RMmin,$RMhour,$RMmday,$RMmon,$RMyear,$RMwday,$RMyday,$RMisdst) = localtime($del_epoch); $RMyear = ($RMyear + 1900); $RMmon++; if ($RMmon < 10) {$RMmon = "0$RMmon";} if ($RMmday < 10) {$RMmday = "0$RMmday";} if ($RMhour < 10) {$RMhour = "0$RMhour";} if ($RMmin < 10) {$RMmin = "0$RMmin";} if ($RMsec < 10) {$RMsec = "0$RMsec";} $del_time = "$RMyear-$RMmon-$RMmday $RMhour:$RMmin:$RMsec"; $del_date = "$RMyear-$RMmon-$RMmday"; } else { $del_epoch = ($secX - (86400 * $CLIdays)); # X days ago ($RMsec,$RMmin,$RMhour,$RMmday,$RMmon,$RMyear,$RMwday,$RMyday,$RMisdst) = localtime($del_epoch); $RMyear = ($RMyear + 1900); $RMmon++; if ($RMmon < 10) {$RMmon = "0$RMmon";} if ($RMmday < 10) {$RMmday = "0$RMmday";} if ($RMhour < 10) {$RMhour = "0$RMhour";} if ($RMmin < 10) {$RMmin = "0$RMmin";} if ($RMsec < 10) {$RMsec = "0$RMsec";} $del_time = "$RMyear-$RMmon-$RMmday $RMhour:$RMmin:$RMsec"; $del_date = "$RMyear-$RMmon-$RMmday"; } if ($recording_log_archive > 0) { $RECdel_epoch = ($secX - (86400 * $RECORDINGdays)); # X days ago ($RECsec,$RECmin,$REChour,$RECmday,$RECmon,$RECyear,$RECwday,$RECyday,$RECisdst) = localtime($RECdel_epoch); $RECyear = ($RECyear + 1900); $RECmon++; if ($RECmon < 10) {$RECmon = "0$RECmon";} if ($RECmday < 10) {$RECmday = "0$RECmday";} if ($REChour < 10) {$REChour = "0$REChour";} if ($RECmin < 10) {$RECmin = "0$RECmin";} if ($RECsec < 10) {$RECsec = "0$RECsec";} $RECdel_time = "$RECyear-$RECmon-$RECmday $REChour:$RECmin:$RECsec"; } if ($did_log_archive > 0) { $DIDdel_epoch = ($secX - (86400 * $diddays)); # X days ago ($DIDsec,$DIDmin,$DIDhour,$DIDmday,$DIDmon,$DIDyear,$DIDwday,$DIDyday,$DIDisdst) = localtime($DIDdel_epoch); $DIDyear = ($DIDyear + 1900); $DIDmon++; if ($DIDmon < 10) {$DIDmon = "0$DIDmon";} if ($DIDmday < 10) {$DIDmday = "0$DIDmday";} if ($DIDhour < 10) {$DIDhour = "0$DIDhour";} if ($DIDmin < 10) {$DIDmin = "0$DIDmin";} if ($DIDsec < 10) {$DIDsec = "0$DIDsec";} $DIDdel_time = "$DIDyear-$DIDmon-$DIDmday $DIDhour:$DIDmin:$DIDsec"; } if ($park_log_archive > 0) { $PARKdel_epoch = ($secX - (86400 * $parkdays)); # X days ago ($PARKsec,$PARKmin,$PARKhour,$PARKmday,$PARKmon,$PARKyear,$PARKwday,$PARKyday,$PARKisdst) = localtime($PARKdel_epoch); $PARKyear = ($PARKyear + 1900); $PARKmon++; if ($PARKmon < 10) {$PARKmon = "0$PARKmon";} if ($PARKmday < 10) {$PARKmday = "0$PARKmday";} if ($PARKhour < 10) {$PARKhour = "0$PARKhour";} if ($PARKmin < 10) {$PARKmin = "0$PARKmin";} if ($PARKsec < 10) {$PARKsec = "0$PARKsec";} $PARKdel_time = "$PARKyear-$PARKmon-$PARKmday $PARKhour:$PARKmin:$PARKsec"; } if ($api_log_archive > 0) { $APIdel_epoch = ($secX - (86400 * $apidays)); # X days ago ($APIsec,$APImin,$APIhour,$APImday,$APImon,$APIyear,$APIwday,$APIyday,$APIisdst) = localtime($APIdel_epoch); $APIyear = ($APIyear + 1900); $APImon++; if ($APImon < 10) {$APImon = "0$APImon";} if ($APImday < 10) {$APImday = "0$APImday";} if ($APIhour < 10) {$APIhour = "0$APIhour";} if ($APImin < 10) {$APImin = "0$APImin";} if ($APIsec < 10) {$APIsec = "0$APIsec";} $APIdel_time = "$APIyear-$APImon-$APImday $APIhour:$APImin:$APIsec"; } if ($api_log_archive_purge > 0) { $APIPURGEdel_epoch = ($secX - (86400 * $apiarchivedays)); # X days ago ($APIPURGEsec,$APIPURGEmin,$APIPURGEhour,$APIPURGEmday,$APIPURGEmon,$APIPURGEyear,$APIPURGEwday,$APIPURGEyday,$APIPURGEisdst) = localtime($APIPURGEdel_epoch); $APIPURGEyear = ($APIPURGEyear + 1900); $APIPURGEmon++; if ($APIPURGEmon < 10) {$APIPURGEmon = "0$APIPURGEmon";} if ($APIPURGEmday < 10) {$APIPURGEmday = "0$APIPURGEmday";} if ($APIPURGEhour < 10) {$APIPURGEhour = "0$APIPURGEhour";} if ($APIPURGEmin < 10) {$APIPURGEmin = "0$APIPURGEmin";} if ($APIPURGEsec < 10) {$APIPURGEsec = "0$APIPURGEsec";} $APIPURGEdel_time = "$APIPURGEyear-$APIPURGEmon-$APIPURGEmday $APIPURGEhour:$APIPURGEmin:$APIPURGEsec"; } if ($url_log_only > 0) { $URLdel_epoch = ($secX - (86400 * $urldays)); # X days ago ($URLsec,$URLmin,$URLhour,$URLmday,$URLmon,$URLyear,$URLwday,$URLyday,$URLisdst) = localtime($URLdel_epoch); $URLyear = ($URLyear + 1900); $URLmon++; if ($URLmon < 10) {$URLmon = "0$URLmon";} if ($URLmday < 10) {$URLmday = "0$URLmday";} if ($URLhour < 10) {$URLhour = "0$URLhour";} if ($URLmin < 10) {$URLmin = "0$URLmin";} if ($URLsec < 10) {$URLsec = "0$URLsec";} $URLdel_time = "$URLyear-$URLmon-$URLmday $URLhour:$URLmin:$URLsec"; } if ( ($extended_log_only > 0) || ($vicidial_log_only > 0) || ($vicidial_dial_log_only > 0) ) { $EXTENDEDdel_epoch = ($secX - (86400 * $extendeddays)); # X days ago ($EXTENDEDsec,$EXTENDEDmin,$EXTENDEDhour,$EXTENDEDmday,$EXTENDEDmon,$EXTENDEDyear,$EXTENDEDwday,$EXTENDEDyday,$EXTENDEDisdst) = localtime($EXTENDEDdel_epoch); $EXTENDEDyear = ($EXTENDEDyear + 1900); $EXTENDEDmon++; if ($EXTENDEDmon < 10) {$EXTENDEDmon = "0$EXTENDEDmon";} if ($EXTENDEDmday < 10) {$EXTENDEDmday = "0$EXTENDEDmday";} if ($EXTENDEDhour < 10) {$EXTENDEDhour = "0$EXTENDEDhour";} if ($EXTENDEDmin < 10) {$EXTENDEDmin = "0$EXTENDEDmin";} if ($EXTENDEDsec < 10) {$EXTENDEDsec = "0$EXTENDEDsec";} $EXTENDEDdel_time = "$EXTENDEDyear-$EXTENDEDmon-$EXTENDEDmday $EXTENDEDhour:$EXTENDEDmin:$EXTENDEDsec"; } if ($cpd_log_purge > 0) { $CPDdel_epoch = ($secX - (86400 * $CPDdays)); # X days ago ($CPDsec,$CPDmin,$CPDhour,$CPDmday,$CPDmon,$CPDyear,$CPDwday,$CPDyday,$CPDisdst) = localtime($CPDdel_epoch); $CPDyear = ($CPDyear + 1900); $CPDmon++; if ($CPDmon < 10) {$CPDmon = "0$CPDmon";} if ($CPDmday < 10) {$CPDmday = "0$CPDmday";} if ($CPDhour < 10) {$CPDhour = "0$CPDhour";} if ($CPDmin < 10) {$CPDmin = "0$CPDmin";} if ($CPDsec < 10) {$CPDsec = "0$CPDsec";} $CPDdel_time = "$CPDyear-$CPDmon-$CPDmday $CPDhour:$CPDmin:$CPDsec"; } if (!$Q) {print "\n\n-- ADMIN_archive_log_tables.pl --\n\n";} if (!$Q) {print "This program is designed to put all records from call_log, vicidial_log,\n";} if (!$Q) {print "server_performance, vicidial_agent_log, vicidial_carrier_log, \n";} if (!$Q) {print "vicidial_call_notes, vicidial_lead_search_log and others into relevant\n";} if (!$Q) {print "_archive tables and delete records in original tables older than\n";} if (!$Q) {print "$CLIdays days ( $del_time [$del_date]|$del_epoch ) from current date \n\n";} if ( (!$Q) && ($recording_log_archive > 0) ) {print "REC $RECORDINGdays days ( $RECdel_time|$RECdel_epoch ) from current date \n\n";} if ( (!$Q) && ($did_log_archive > 0) ) {print "DID $diddays days ( $DIDdel_time|$DIDdel_epoch ) from current date \n\n";} if ( (!$Q) && ($park_log_archive > 0) ) {print "PARK $parkdays days ( $PARKdel_time|$PARKdel_epoch ) from current date \n\n";} if ( (!$Q) && ($api_log_archive > 0) ) {print "API $apidays days ( $APIdel_time|$APIdel_epoch ) from current date \n\n";} if ( (!$Q) && ($api_log_archive_purge > 0) ) {print "API PURGE $apiarchivedays days ( $APIPURGEdel_time|$APIPURGEdel_epoch ) from current date \n\n";} if ( (!$Q) && ($cpd_log_purge > 0) ) {print "CPD $CPDdays days ( $CPDdel_time|$CPDdel_epoch ) from current date \n\n";} if ($CALC_TEST > 0) { exit; } # default path to astguiclient configuration file: $PATHconf = '/etc/astguiclient.conf'; open(conf, "$PATHconf") || die "can't open $PATHconf: $!\n"; @conf = ; close(conf); $i=0; foreach(@conf) { $line = $conf[$i]; $line =~ s/ |>|\n|\r|\t|\#.*|;.*//gi; if ( ($line =~ /^PATHhome/) && ($CLIhome < 1) ) {$PATHhome = $line; $PATHhome =~ s/.*=//gi;} if ( ($line =~ /^PATHlogs/) && ($CLIlogs < 1) ) {$PATHlogs = $line; $PATHlogs =~ s/.*=//gi;} if ( ($line =~ /^PATHagi/) && ($CLIagi < 1) ) {$PATHagi = $line; $PATHagi =~ s/.*=//gi;} if ( ($line =~ /^PATHweb/) && ($CLIweb < 1) ) {$PATHweb = $line; $PATHweb =~ s/.*=//gi;} if ( ($line =~ /^PATHsounds/) && ($CLIsounds < 1) ) {$PATHsounds = $line; $PATHsounds =~ s/.*=//gi;} if ( ($line =~ /^PATHmonitor/) && ($CLImonitor < 1) ) {$PATHmonitor = $line; $PATHmonitor =~ s/.*=//gi;} if ( ($line =~ /^VARserver_ip/) && ($CLIserver_ip < 1) ) {$VARserver_ip = $line; $VARserver_ip =~ s/.*=//gi;} if ( ($line =~ /^VARDB_server/) && ($CLIDB_server < 1) ) {$VARDB_server = $line; $VARDB_server =~ s/.*=//gi;} if ( ($line =~ /^VARDB_database/) && ($CLIDB_database < 1) ) {$VARDB_database = $line; $VARDB_database =~ s/.*=//gi;} if ( ($line =~ /^VARDB_user/) && ($CLIDB_user < 1) ) {$VARDB_user = $line; $VARDB_user =~ s/.*=//gi;} if ( ($line =~ /^VARDB_pass/) && ($CLIDB_pass < 1) ) {$VARDB_pass = $line; $VARDB_pass =~ s/.*=//gi;} if ( ($line =~ /^VARDB_port/) && ($CLIDB_port < 1) ) {$VARDB_port = $line; $VARDB_port =~ s/.*=//gi;} $i++; } # Customized Variables $server_ip = $VARserver_ip; # Asterisk server IP use DBI; $dbhA = DBI->connect("DBI:mysql:$VARDB_database:$VARDB_server:$VARDB_port", "$VARDB_user", "$VARDB_pass") or die "Couldn't connect to database: " . DBI->errstr; $action='start'; $stage='LOGGED INTO MYSQL SERVER'; &internal_logger; ############################################# ##### Gather system_settings ##### $stmtA = "SELECT sip_event_logging FROM system_settings;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $SSsip_event_logging = $aryA[0]; } $sthA->finish(); ########################################### if (!$T) { if ($only_trim_archive > 0) { # the "only-trim-archive" process will not perform the normal archive process, # instead this will only delete records that are older than XX months from # least important log archive tables. There are three levels: # LEVEL 1: # call_log_archive, vicidial_log_extended_archive, vicidial_dial_log_archive, vicidial_drop_log # LEVEL 2: # vicidial_carrier_log_archive, vicidial_api_log_archive # LEVEL 3: # vicidial_log_archive, vicidial_agent_log_archive, vicidial_closer_log_archive, vicidial_xfer_log_archive # NOTE: script will exit once trim process has completed if (!$Q) {print "\nONLY-TRIM-ARCHIVE PROCESS LAUNCHING, GOING TO LEVEL: $only_trim_archive\n";} if (!$Q) {print "Starting 'only-trim-archive' process, level: ONE\n";} ##### BEGIN call_log_archive trim processing ##### $stmtA = "SELECT count(*) from call_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $call_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming call_log_archive table... ($call_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM call_log_archive WHERE start_time < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from call_log_archive table \n";} $stmtA = "optimize table call_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END call_log_archive trim processing ##### ##### BEGIN vicidial_log_extended_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_log_extended_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_log_extended_archive table... ($vicidial_log_extended_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_log_extended_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_extended_archive table \n";} $stmtA = "optimize table vicidial_log_extended_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_log_extended_archive trim processing ##### if ($SSsip_event_logging > 0) { ##### BEGIN vicidial_log_extended_sip_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_log_extended_sip_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_sip_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_log_extended_sip_archive table... ($vicidial_log_extended_sip_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_log_extended_sip_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_extended_sip_archive table \n";} $stmtA = "optimize table vicidial_log_extended_sip_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_log_extended_sip_archive trim processing ##### } ##### BEGIN vicidial_drop_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_drop_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_drop_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_drop_log_archive table... ($vicidial_drop_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_drop_log_archive WHERE drop_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_drop_log_archive table \n";} $stmtA = "optimize table vicidial_drop_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_drop_log_archive trim processing ##### ##### BEGIN vicidial_dial_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_dial_log_archive table... ($vicidial_dial_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_dial_log_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_dial_log_archive table \n";} $stmtA = "optimize table vicidial_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_dial_log_archive trim processing ##### ##### BEGIN vicidial_user_dial_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_user_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_user_dial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_user_dial_log_archive table... ($vicidial_user_dial_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_user_dial_log_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_user_dial_log_archive table \n";} $stmtA = "optimize table vicidial_user_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_user_dial_log_archive trim processing ##### ##### BEGIN vicidial_dial_cid_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_dial_cid_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_cid_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_dial_cid_log_archive table... ($vicidial_dial_cid_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_dial_cid_log_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_dial_cid_log_archive table \n";} $stmtA = "optimize table vicidial_dial_cid_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_dial_cid_log_archive trim processing ##### if ($only_trim_archive > 1) { if (!$Q) {print "Starting 'only-trim-archive' process, level: TWO\n";} ##### BEGIN vicidial_carrier_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_carrier_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_carrier_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_carrier_log_archive table... ($vicidial_carrier_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_carrier_log_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_carrier_log_archive table \n";} $stmtA = "optimize table vicidial_carrier_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_carrier_log_archive trim processing ##### ##### BEGIN vicidial_api_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_api_log_archive table... ($vicidial_api_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_api_log_archive WHERE api_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_log_archive table \n";} $stmtA = "optimize table vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } $stmtA = "SELECT count(*) from vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_urls_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_api_urls_archive table... ($vicidial_api_urls_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_api_urls_archive WHERE api_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_urls_archive table \n";} $stmtA = "optimize table vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_api_log_archive trim processing ##### ##### BEGIN vicidial_rt_monitor_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_rt_monitor_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_rt_monitor_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_rt_monitor_log_archive table... ($vicidial_rt_monitor_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_rt_monitor_log_archive WHERE monitor_start_time < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_rt_monitor_log_archive table \n";} $stmtA = "optimize table vicidial_rt_monitor_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_rt_monitor_log_archive trim processing ##### } if ($only_trim_archive > 2) { if (!$Q) {print "Starting 'only-trim-archive' process, level: THREE\n";} ##### BEGIN vicidial_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_log_archive table... ($vicidial_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_log_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_archive table \n";} $stmtA = "optimize table vicidial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_log_archive trim processing ##### ##### BEGIN vicidial_agent_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_agent_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_agent_log_archive table... ($vicidial_agent_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_agent_log_archive WHERE event_time < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_agent_log_archive table \n";} $stmtA = "optimize table vicidial_agent_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_agent_log_archive trim processing ##### ##### BEGIN vicidial_agent_visibility_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_agent_visibility_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_visibility_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_agent_visibility_log_archive table... ($vicidial_agent_visibility_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_agent_visibility_log_archive WHERE db_time < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_agent_visibility_log_archive table \n";} $stmtA = "optimize table vicidial_agent_visibility_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_agent_visibility_log_archive trim processing ##### ##### BEGIN vicidial_closer_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_closer_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_closer_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_closer_log_archive table... ($vicidial_closer_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_closer_log_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_closer_log_archive table \n";} $stmtA = "optimize table vicidial_closer_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_closer_log_archive trim processing ##### ##### BEGIN vicidial_xfer_log_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_xfer_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_xfer_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_xfer_log_archive table... ($vicidial_xfer_log_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_xfer_log_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_xfer_log_archive table \n";} $stmtA = "optimize table vicidial_xfer_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_xfer_log_archive trim processing ##### ##### BEGIN vicidial_inbound_caller_codes_archive trim processing ##### $stmtA = "SELECT count(*) from vicidial_inbound_caller_codes_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_inbound_caller_codes_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "Trimming vicidial_inbound_caller_codes_archive table... ($vicidial_inbound_caller_codes_archive_count)\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_inbound_caller_codes_archive WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_inbound_caller_codes_archive table \n";} $stmtA = "optimize table vicidial_inbound_caller_codes_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_inbound_caller_codes_archive trim processing ##### } if (!$Q) {print "Trim process complete, exiting...\n";} exit; } if ($daily > 0) { # The --daily option was added because these tables(call_log, vicidial_dial_log, # vicidial_log_extended and vicidial_api_log) are not used for any processes or # reports past 24 hours, and on systems dialing 500,000 calls per day or more, # this can lead to system delay issues even if the 1-month archive process is # run every weekend. This --daily option will keep only the last # 24-hours and can improve DB performance greatly if (!$Q) {print "\nStarting daily arcchive process...\n";} ##### BEGIN call_log DAILY processing ##### $stmtA = "SELECT count(*) from call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $call_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from call_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $call_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing call_log table... ($call_log_count|$call_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO call_log_archive SELECT * from call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into call_log_archive table\n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM call_log WHERE start_time < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from call_log table \n";} $stmtA = "optimize table call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END call_log DAILY processing ##### ##### BEGIN vicidial_log_extended DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_extended_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log_extended table... ($vicidial_log_extended_count|$vicidial_log_extended_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_extended_archive SELECT * from vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_extended_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_log_extended WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_extended table \n";} $stmtA = "optimize table vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_log_extended DAILY processing ##### if ($SSsip_event_logging > 0) { ##### BEGIN vicidial_log_extended_sip DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_log_extended_sip;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_sip_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_extended_sip_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_sip_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log_extended_sip table... ($vicidial_log_extended_sip_count|$vicidial_log_extended_sip_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_extended_sip_archive SELECT * from vicidial_log_extended_sip;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_extended_sip_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_log_extended_sip WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_extended_sip table \n";} $stmtA = "optimize table vicidial_log_extended_sip;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_log_extended_sip DAILY processing ##### } ##### BEGIN vicidial_drop_log DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_drop_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_drop_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_drop_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_drop_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_drop_log table... ($vicidial_drop_log_count|$vicidial_drop_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_drop_log_archive SELECT * from vicidial_drop_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_drop_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_drop_log WHERE drop_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_drop_log table \n";} $stmtA = "optimize table vicidial_drop_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_drop_log DAILY processing ##### ##### BEGIN vicidial_dial_log DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_dial_log table... ($vicidial_dial_log_count|$vicidial_dial_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_dial_log_archive SELECT * from vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_dial_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_dial_log WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_dial_log table \n";} $stmtA = "optimize table vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_dial_log DAILY processing ##### ##### BEGIN vicidial_user_dial_log DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_user_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_user_dial_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_user_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_user_dial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_user_dial_log table... ($vicidial_user_dial_log_count|$vicidial_user_dial_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_user_dial_log_archive SELECT * from vicidial_user_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_user_dial_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_user_dial_log WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_user_dial_log table \n";} $stmtA = "optimize table vicidial_user_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_user_dial_log DAILY processing ##### ##### BEGIN vicidial_dial_cid_log DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_dial_cid_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_cid_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_dial_cid_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_cid_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_dial_cid_log table... ($vicidial_dial_cid_log_count|$vicidial_dial_cid_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_dial_cid_log_archive SELECT * from vicidial_dial_cid_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_dial_cid_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_dial_cid_log WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_dial_cid_log table \n";} $stmtA = "optimize table vicidial_dial_cid_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_dial_cid_log DAILY processing ##### ##### BEGIN vicidial_api_log DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_api_log table... ($vicidial_api_log_count|$vicidial_api_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_api_log_archive SELECT * from vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_api_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_api_log WHERE api_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_log table \n";} $stmtA = "optimize table vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_api_log DAILY processing ##### ##### BEGIN vicidial_api_urls DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_urls_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_urls_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_api_urls table... ($vicidial_api_urls_count|$vicidial_api_urls_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_api_urls_archive SELECT * from vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_api_urls_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_api_urls WHERE api_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_urls table \n";} $stmtA = "optimize table vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_api_urls DAILY processing ##### if ($carrier_daily) { ##### BEGIN vicidial_carrier_log DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_carrier_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_carrier_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_carrier_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_carrier_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_carrier_log table... ($vicidial_carrier_log_count|$vicidial_carrier_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_carrier_log_archive SELECT * from vicidial_carrier_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_carrier_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_carrier_log WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_carrier_log table \n";} $stmtA = "optimize table vicidial_carrier_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_carrier_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_carrier_log DAILY processing ##### } if ($vlog_daily) { ##### BEGIN vicidial_log DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log table... ($vicidial_log_count|$vicidial_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_archive SELECT * from vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_log WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log table \n";} $stmtA = "optimize table vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_log DAILY processing ##### ##### BEGIN vicidial_amd_log DAILY processing ##### $stmtA = "SELECT count(*) from vicidial_amd_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_amd_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_amd_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_amd_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_amd_log table... ($vicidial_amd_log_count|$vicidial_amd_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_amd_log_archive SELECT * from vicidial_amd_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_amd_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_amd_log WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_amd_log table \n";} $stmtA = "optimize table vicidial_amd_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_amd_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### END vicidial_amd_log DAILY processing ##### } ### calculate time to run script ### $secY = time(); $secZ = ($secY - $secX); $secZm = ($secZ /60); if (!$Q) {print "\nscript execution time in seconds: $secZ minutes: $secZm\n";} exit; } ########## END of --daily flag processing ########## ########## BEGIN --api-log-only flag processing ########## if ($api_log_only > 0) { ##### vicidial_api_log $stmtA = "SELECT count(*) from vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_api_log table... ($vicidial_api_log_count|$vicidial_api_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_api_log_archive SELECT * from vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_api_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_api_log;";} else {$stmtA = "DELETE FROM vicidial_api_log WHERE api_date < '$APIdel_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_log table \n";} $stmtA = "optimize table vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_api_urls $stmtA = "SELECT count(*) from vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_urls_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_urls_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_api_urls table... ($vicidial_api_urls_count|$vicidial_api_urls_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_api_urls_archive SELECT * from vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_api_urls_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_api_urls;";} else {$stmtA = "DELETE FROM vicidial_api_urls WHERE api_date < '$APIdel_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_urls table \n";} $stmtA = "optimize table vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } exit; } ########## END --api-log-only flag processing ########## ########## BEGIN --api-archive-only flag processing ########## if ($api_archive_only > 0) { ##### vicidial_api_log_archive $stmtA = "SELECT count(*) from vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_api_log_archive table... ($vicidial_api_log_archive_count)\n";} $stmtA = "DELETE FROM vicidial_api_log_archive WHERE api_date < '$APIPURGEdel_time';"; if ($DB > 0) {print " DEBUG: |$stmtA|\n";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_log_archive table \n";} $stmtA = "optimize table vicidial_api_log_archive;"; if ($DB > 0) {print " DEBUG: |$stmtA|\n";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "SELECT count(*) from vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_urls_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_api_urls_archive table... ($vicidial_api_urls_archive_count)\n";} $stmtA = "DELETE FROM vicidial_api_urls_archive WHERE api_date < '$APIPURGEdel_time';"; if ($DB > 0) {print " DEBUG: |$stmtA|\n";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_urls_archive table \n";} $stmtA = "optimize table vicidial_api_urls_archive;"; if ($DB > 0) {print " DEBUG: |$stmtA|\n";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; exit; } ########## END --api-archive-only flag processing ########## ########## BEGIN --url-log-only flag processing ########## if ($url_log_only > 0) { ##### vicidial_url_log $stmtA = "SELECT count(*) from vicidial_url_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_url_log_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_url_log table... ($vicidial_url_log_count)\n";} $stmtA = "DELETE FROM vicidial_url_log WHERE url_date < '$URLdel_time';"; if ($DB > 0) {print " DEBUG: |$stmtA|\n";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_url_log table \n";} $stmtA = "optimize table vicidial_url_log;"; if ($DB > 0) {print " DEBUG: |$stmtA|\n";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "SELECT count(*) from vicidial_url_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_url_log_count_now = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_url_log table finished: ($vicidial_url_log_count -> $vicidial_url_log_count_now)\n";} exit; } ########## END --url-log-only flag processing ########## ########## BEGIN --extended-log-only flag processing ########## if ($extended_log_only > 0) { ##### vicidial_log_extended $stmtA = "SELECT count(*) from vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_extended_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log_extended table... ($vicidial_log_extended_count|$vicidial_log_extended_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_extended_archive SELECT * from vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_extended_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_log_extended;";} else {$stmtA = "DELETE FROM vicidial_log_extended WHERE call_date < '$EXTENDEDdel_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_extended table \n";} $stmtA = "optimize table vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } if (!$Q) {print "\nProcessing vicidial_log_extended table finished: ($sthArows rows deleted) \n";} exit; } ########## END --extended-log-only flag processing ########## ########## BEGIN --vicidial-log-only flag processing ########## if ($vicidial_log_only > 0) { ##### vicidial_log $stmtA = "SELECT count(*) from vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log table... ($vicidial_log_count|$vicidial_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_archive SELECT * from vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_log;";} else {$stmtA = "DELETE FROM vicidial_log WHERE call_date < '$EXTENDEDdel_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log table \n";} $stmtA = "optimize table vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } if (!$Q) {print "\nProcessing vicidial_log table finished: ($sthArows rows deleted) \n";} exit; } ########## END --vicidial-log-only flag processing ########## ########## BEGIN --vicidial-dial-log-only flag processing ########## if ($vicidial_dial_log_only > 0) { ##### vicidial_dial_log $stmtA = "SELECT count(*) from vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_dial_log table... ($vicidial_dial_log_count|$vicidial_dial_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_dial_log_archive SELECT * from vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_dial_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_dial_log;";} else {$stmtA = "DELETE FROM vicidial_dial_log WHERE call_date < '$EXTENDEDdel_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_dial_log table \n";} $stmtA = "optimize table vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } if (!$Q) {print "\nProcessing vicidial_dial_log table finished: ($sthArows rows deleted) \n";} exit; } ########## END --vicidial-dial-log-only flag processing ########## ########## BEGIN --agent-log-only flag processing ########## if ($agent_log_only > 0) { ##### vicidial_agent_log $stmtA = "SELECT count(*) from vicidial_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_agent_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_agent_log table... ($vicidial_agent_log_count|$vicidial_agent_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_agent_log_archive SELECT * from vicidial_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_agent_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_agent_log;";} else {$stmtA = "DELETE FROM vicidial_agent_log WHERE event_time < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_agent_log table \n";} $stmtA = "optimize table vicidial_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } if (!$Q) {print "\nProcessing vicidial_agent_log table finished: ($sthArows rows deleted) \n";} exit; } ########## END --agent-log-only flag processing ########## if ($queue_log > 0) { ############################################# ##### START QUEUEMETRICS LOGGING LOOKUP ##### $stmtA = "SELECT enable_queuemetrics_logging,queuemetrics_server_ip,queuemetrics_dbname,queuemetrics_login,queuemetrics_pass,queuemetrics_log_id,queuemetrics_eq_prepend,queuemetrics_loginout,queuemetrics_dispo_pause FROM system_settings;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $enable_queuemetrics_logging = $aryA[0]; $queuemetrics_server_ip = $aryA[1]; $queuemetrics_dbname = $aryA[2]; $queuemetrics_login= $aryA[3]; $queuemetrics_pass = $aryA[4]; $queuemetrics_log_id = $aryA[5]; $queuemetrics_eq_prepend = $aryA[6]; $queuemetrics_loginout = $aryA[7]; $queuemetrics_dispo_pause = $aryA[8]; } $sthA->finish(); ##### END QUEUEMETRICS LOGGING LOOKUP ##### ########################################### $dbhB = DBI->connect("DBI:mysql:$queuemetrics_dbname:$queuemetrics_server_ip:3306", "$queuemetrics_login", "$queuemetrics_pass") or die "Couldn't connect to database: " . DBI->errstr; if ($DBX) {print "CONNECTED TO QM DATABASE: $queuemetrics_server_ip|$queuemetrics_dbname\n";} ##### queue_log $stmtB = "SELECT count(*) from queue_log;"; $sthB = $dbhB->prepare($stmtB) or die "preparing: ",$dbhB->errstr; $sthB->execute or die "executing: $stmtB ", $dbhB->errstr; $sthBrows=$sthB->rows; if ($sthBrows > 0) { @aryB = $sthB->fetchrow_array; $queue_log_count = $aryB[0]; } $sthB->finish(); $stmtB = "SELECT count(*) from queue_log_archive;"; $sthB = $dbhB->prepare($stmtB) or die "preparing: ",$dbhB->errstr; $sthB->execute or die "executing: $stmtB ", $dbhB->errstr; $sthBrows=$sthB->rows; if ($sthBrows > 0) { @aryB = $sthB->fetchrow_array; $queue_log_archive_count = $aryB[0]; } $sthB->finish(); if (!$Q) {print "\nProcessing queue_log table... ($queue_log_count|$queue_log_archive_count)\n";} $stmtB = "INSERT IGNORE INTO queue_log_archive SELECT * from queue_log;"; $sthB = $dbhB->prepare($stmtB) or die "preparing: ",$dbhB->errstr; $sthB->execute or die "executing: $stmtB ", $dbhB->errstr; $sthBrows = $sthB->rows; if (!$Q) {print "$sthBrows rows inserted into queue_log_archive table\n";} $rv = $sthB->err(); if (!$rv) { $stmtB = "DELETE FROM queue_log WHERE time_id < $del_epoch;"; $sthB = $dbhB->prepare($stmtB) or die "preparing: ",$dbhB->errstr; $sthB->execute or die "executing: $stmtB ", $dbhB->errstr; $sthBrows = $sthB->rows; if (!$Q) {print "$sthBrows rows deleted from queue_log table \n";} $stmtB = "optimize table queue_log;"; $sthB = $dbhB->prepare($stmtB) or die "preparing: ",$dbhB->errstr; $sthB->execute or die "executing: $stmtB ", $dbhB->errstr; } } ##### call_log $stmtA = "SELECT count(*) from call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $call_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from call_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $call_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing call_log table... ($call_log_count|$call_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO call_log_archive SELECT * from call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into call_log_archive table\n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM call_log;";} else {$stmtA = "DELETE FROM call_log WHERE start_time < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from call_log table \n";} $stmtA = "optimize table call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "DELETE from call_log_archive where channel LIKE 'Local/9%' and extension not IN('8365','8366','8367','8368','8369','8370','8371','8372','8373','8374') and caller_code LIKE 'V%' and length_in_sec < 75 and start_time < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from call_log_archive table \n";} $stmtA = "optimize table call_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_log $stmtA = "SELECT count(*) from vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log table... ($vicidial_log_count|$vicidial_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_archive SELECT * from vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_log;";} else {$stmtA = "DELETE FROM vicidial_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log table \n";} $stmtA = "optimize table vicidial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_closer_log $stmtA = "SELECT count(*) from vicidial_closer_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_closer_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_closer_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_closer_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_closer_log table... ($vicidial_closer_log_count|$vicidial_closer_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_closer_log_archive SELECT * from vicidial_closer_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_closer_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ( ($wipe_closer_log > 0) || ($wipe_all > 0) ) {$stmtA = "DELETE FROM vicidial_closer_log;";} else {$stmtA = "DELETE FROM vicidial_closer_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_closer_log table \n";} $stmtA = "optimize table vicidial_closer_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_closer_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_xfer_log $stmtA = "SELECT count(*) from vicidial_xfer_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_xfer_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_xfer_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_xfer_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_xfer_log table... ($vicidial_xfer_log_count|$vicidial_xfer_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_xfer_log_archive SELECT * from vicidial_xfer_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_xfer_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_xfer_log;";} else {$stmtA = "DELETE FROM vicidial_xfer_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_xfer_log table \n";} $stmtA = "optimize table vicidial_xfer_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_xfer_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_inbound_caller_codes $stmtA = "SELECT count(*) from vicidial_inbound_caller_codes;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_inbound_caller_codes_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_inbound_caller_codes_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_inbound_caller_codes_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_inbound_caller_codes table... ($vicidial_inbound_caller_codes_count|$vicidial_inbound_caller_codes_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_inbound_caller_codes_archive SELECT * from vicidial_inbound_caller_codes;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_inbound_caller_codes_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_inbound_caller_codes;";} else {$stmtA = "DELETE FROM vicidial_inbound_caller_codes WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_inbound_caller_codes table \n";} $stmtA = "optimize table vicidial_inbound_caller_codes;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_inbound_caller_codes_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_log_extended $stmtA = "SELECT count(*) from vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_extended_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log_extended table... ($vicidial_log_extended_count|$vicidial_log_extended_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_extended_archive SELECT * from vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_extended_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_log_extended;";} else {$stmtA = "DELETE FROM vicidial_log_extended WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_extended table \n";} $stmtA = "optimize table vicidial_log_extended;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_log_extended_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } if ($SSsip_event_logging > 0) { ##### vicidial_log_extended_sip $stmtA = "SELECT count(*) from vicidial_log_extended_sip;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_sip_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_extended_sip_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_extended_sip_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log_extended_sip table... ($vicidial_log_extended_sip_count|$vicidial_log_extended_sip_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_extended_sip_archive SELECT * from vicidial_log_extended_sip;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_extended_sip_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_log_extended_sip;";} else {$stmtA = "DELETE FROM vicidial_log_extended_sip WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_extended_sip table \n";} $stmtA = "optimize table vicidial_log_extended_sip;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_log_extended_sip_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } } ##### vicidial_drop_log $stmtA = "SELECT count(*) from vicidial_drop_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_drop_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_drop_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_drop_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_drop_log table... ($vicidial_drop_log_count|$vicidial_drop_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_drop_log_archive SELECT * from vicidial_drop_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_drop_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_drop_log;";} else {$stmtA = "DELETE FROM vicidial_drop_log WHERE drop_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_drop_log table \n";} $stmtA = "optimize table vicidial_drop_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_drop_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_dial_log $stmtA = "SELECT count(*) from vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_dial_log table... ($vicidial_dial_log_count|$vicidial_dial_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_dial_log_archive SELECT * from vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_dial_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_dial_log;";} else {$stmtA = "DELETE FROM vicidial_dial_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_dial_log table \n";} $stmtA = "optimize table vicidial_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_user_dial_log $stmtA = "SELECT count(*) from vicidial_user_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_user_dial_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_user_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_user_dial_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_user_dial_log table... ($vicidial_user_dial_log_count|$vicidial_user_dial_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_user_dial_log_archive SELECT * from vicidial_user_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_user_dial_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_user_dial_log;";} else {$stmtA = "DELETE FROM vicidial_user_dial_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_user_dial_log table \n";} $stmtA = "optimize table vicidial_user_dial_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_user_dial_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_dial_cid_log $stmtA = "SELECT count(*) from vicidial_dial_cid_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_cid_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_dial_cid_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dial_cid_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_dial_cid_log table... ($vicidial_dial_cid_log_count|$vicidial_dial_cid_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_dial_cid_log_archive SELECT * from vicidial_dial_cid_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_dial_cid_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_dial_cid_log;";} else {$stmtA = "DELETE FROM vicidial_dial_cid_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_dial_cid_log table \n";} $stmtA = "optimize table vicidial_dial_cid_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_dial_cid_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_api_log $stmtA = "SELECT count(*) from vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_api_log table... ($vicidial_api_log_count|$vicidial_api_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_api_log_archive SELECT * from vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_api_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_api_log;";} else {$stmtA = "DELETE FROM vicidial_api_log WHERE api_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_log table \n";} $stmtA = "optimize table vicidial_api_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_api_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_api_urls $stmtA = "SELECT count(*) from vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_urls_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_api_urls_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_api_urls table... ($vicidial_api_urls_count|$vicidial_api_urls_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_api_urls_archive SELECT * from vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_api_urls_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_api_urls;";} else {$stmtA = "DELETE FROM vicidial_api_urls WHERE api_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_api_urls table \n";} $stmtA = "optimize table vicidial_api_urls;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_api_urls_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_rt_monitor_log $stmtA = "SELECT count(*) from vicidial_rt_monitor_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_rt_monitor_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_rt_monitor_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_rt_monitor_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_rt_monitor_log table... ($vicidial_rt_monitor_log_count|$vicidial_rt_monitor_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_rt_monitor_log_archive SELECT * from vicidial_rt_monitor_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_rt_monitor_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_rt_monitor_log;";} else {$stmtA = "DELETE FROM vicidial_rt_monitor_log WHERE monitor_start_time < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_rt_monitor_log table \n";} $stmtA = "optimize table vicidial_rt_monitor_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_rt_monitor_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### user_call_log $user_call_log_count_mil=0; $stmtA = "SELECT count(*) from user_call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $user_call_log_count = $aryA[0]; } $sthA->finish(); $user_call_log_count_mil = ($user_call_log_count - 1000000); $stmtA = "SELECT count(*) from user_call_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $user_call_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing user_call_log table... ($user_call_log_count|$user_call_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO user_call_log_archive SELECT * from user_call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into user_call_log_archive table \n";} $rv = $sthA->err(); if ( (!$rv) && ($user_call_log_count_mil > 0) ) { if ($wipe_all > 0) {$stmtA = "DELETE FROM user_call_log;";} else {$stmtA = "DELETE FROM user_call_log WHERE call_date < '$del_time' order by user_call_log_id limit $user_call_log_count_mil;";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from user_call_log table \n";} $stmtA = "optimize table user_call_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table user_call_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_peer_event_log $vicidial_peer_event_log_count_mil=0; $stmtA = "SELECT count(*) from vicidial_peer_event_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_peer_event_log_count = $aryA[0]; } $sthA->finish(); $vicidial_peer_event_log_count_mil = ($vicidial_peer_event_log_count - 1000000); $stmtA = "SELECT count(*) from vicidial_peer_event_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_peer_event_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_peer_event_log table... ($vicidial_peer_event_log_count|$vicidial_peer_event_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_peer_event_log_archive SELECT * from vicidial_peer_event_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_peer_event_log_archive table \n";} $rv = $sthA->err(); if ( (!$rv) && ($vicidial_peer_event_log_count_mil > 0) ) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_peer_event_log;";} else {$stmtA = "DELETE FROM vicidial_peer_event_log WHERE event_date < '$del_time' order by peer_event_id limit $vicidial_peer_event_log_count_mil;";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_peer_event_log table \n";} $stmtA = "optimize table vicidial_peer_event_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_peer_event_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_inbound_survey_log $stmtA = "SELECT count(*) from vicidial_inbound_survey_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_inbound_survey_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_inbound_survey_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_inbound_survey_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_inbound_survey_log table... ($vicidial_inbound_survey_log_count|$vicidial_inbound_survey_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_inbound_survey_log_archive SELECT * from vicidial_inbound_survey_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_inbound_survey_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_inbound_survey_log;";} else {$stmtA = "DELETE FROM vicidial_inbound_survey_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_inbound_survey_log table \n";} $stmtA = "optimize table vicidial_inbound_survey_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_inbound_survey_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_log_noanswer $stmtA = "SELECT count(*) from vicidial_log_noanswer;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_noanswer_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_log_noanswer_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_log_noanswer_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_log_noanswer table... ($vicidial_log_noanswer_count|$vicidial_log_noanswer_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_log_noanswer_archive SELECT * from vicidial_log_noanswer;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_log_noanswer_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_log_noanswer;";} else {$stmtA = "DELETE FROM vicidial_log_noanswer WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_log_noanswer table \n";} $stmtA = "optimize table vicidial_log_noanswer;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_log_noanswer_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_did_agent_log $stmtA = "SELECT count(*) from vicidial_did_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_did_agent_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_did_agent_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_did_agent_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_did_agent_log table... ($vicidial_did_agent_log_count|$vicidial_did_agent_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_did_agent_log_archive SELECT * from vicidial_did_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_did_agent_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_did_agent_log;";} else {$stmtA = "DELETE FROM vicidial_did_agent_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_did_agent_log table \n";} $stmtA = "optimize table vicidial_did_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_did_agent_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_amd_log $stmtA = "SELECT count(*) from vicidial_amd_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_amd_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_amd_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_amd_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_amd_log table... ($vicidial_amd_log_count|$vicidial_amd_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_amd_log_archive SELECT * from vicidial_amd_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_amd_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_amd_log;";} else {$stmtA = "DELETE FROM vicidial_amd_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_amd_log table \n";} $stmtA = "optimize table vicidial_amd_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_amd_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_vmm_counts $stmtA = "SELECT count(*) from vicidial_vmm_counts;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_vmm_counts_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_vmm_counts_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_vmm_counts_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_vmm_counts table... ($vicidial_vmm_counts_count|$vicidial_vmm_counts_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_vmm_counts_archive SELECT * from vicidial_vmm_counts;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_vmm_counts_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_vmm_counts;";} else {$stmtA = "DELETE FROM vicidial_vmm_counts WHERE call_date < '$del_date';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_vmm_counts table \n";} $stmtA = "optimize table vicidial_vmm_counts;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_vmm_counts_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### server_performance $stmtA = "SELECT count(*) from server_performance;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $server_performance_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing server_performance table... ($server_performance_count)\n";} if ($wipe_all > 0) {$stmtA = "DELETE FROM server_performance;";} else {$stmtA = "DELETE FROM server_performance WHERE start_time < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from server_performance table \n";} $stmtA = "optimize table server_performance;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; ##### vicidial_url_log $stmtA = "SELECT count(*) from vicidial_url_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_url_log_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_url_log table... ($vicidial_url_log_count)\n";} $stmtA = "DELETE FROM vicidial_url_log WHERE url_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_url_log table \n";} $stmtA = "optimize table vicidial_url_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; ##### vicidial_dtmf_log $stmtA = "SELECT count(*) from vicidial_dtmf_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_dtmf_log_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_dtmf_log table... ($vicidial_dtmf_log_count)\n";} $stmtA = "DELETE FROM vicidial_dtmf_log WHERE dtmf_time < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_dtmf_log table \n";} $stmtA = "optimize table vicidial_dtmf_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; ##### vicidial_agent_log $stmtA = "SELECT count(*) from vicidial_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_agent_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_agent_log table... ($vicidial_agent_log_count|$vicidial_agent_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_agent_log_archive SELECT * from vicidial_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_agent_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_agent_log;";} else {$stmtA = "DELETE FROM vicidial_agent_log WHERE event_time < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_agent_log table \n";} $stmtA = "optimize table vicidial_agent_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_agent_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_agent_visibility_log $stmtA = "SELECT count(*) from vicidial_agent_visibility_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_visibility_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_agent_visibility_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_visibility_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_agent_visibility_log table... ($vicidial_agent_visibility_log_count|$vicidial_agent_visibility_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_agent_visibility_log_archive SELECT * from vicidial_agent_visibility_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_agent_visibility_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_agent_visibility_log;";} else {$stmtA = "DELETE FROM vicidial_agent_visibility_log WHERE db_time < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_agent_visibility_log table \n";} $stmtA = "optimize table vicidial_agent_visibility_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_agent_visibility_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_agent_latency_summary_log $stmtA = "SELECT count(*) from vicidial_agent_latency_summary_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_latency_summary_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_agent_latency_summary_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_latency_summary_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_agent_latency_summary_log table... ($vicidial_agent_latency_summary_log_count|$vicidial_agent_latency_summary_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_agent_latency_summary_log_archive SELECT * from vicidial_agent_latency_summary_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_agent_latency_summary_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_agent_latency_summary_log;";} else {$stmtA = "DELETE FROM vicidial_agent_latency_summary_log WHERE log_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_agent_latency_summary_log table \n";} $stmtA = "optimize table vicidial_agent_latency_summary_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_agent_latency_summary_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_latency_gaps $stmtA = "SELECT count(*) from vicidial_latency_gaps;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_latency_gaps_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_latency_gaps_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_latency_gaps_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_latency_gaps table... ($vicidial_latency_gaps_count|$vicidial_latency_gaps_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_latency_gaps_archive SELECT * from vicidial_latency_gaps;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_latency_gaps_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_latency_gaps;";} else {$stmtA = "DELETE FROM vicidial_latency_gaps WHERE gap_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_latency_gaps table \n";} $stmtA = "optimize table vicidial_latency_gaps;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_latency_gaps_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_carrier_log $stmtA = "SELECT count(*) from vicidial_carrier_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_carrier_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_carrier_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_carrier_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_carrier_log table... ($vicidial_carrier_log_count|$vicidial_carrier_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_carrier_log_archive SELECT * from vicidial_carrier_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_carrier_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_carrier_log;";} else {$stmtA = "DELETE FROM vicidial_carrier_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_carrier_log table \n";} $stmtA = "optimize table vicidial_carrier_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_carrier_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_3way_press_log $stmtA = "SELECT count(*) from vicidial_3way_press_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_3way_press_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_3way_press_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_3way_press_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_3way_press_log table... ($vicidial_3way_press_log_count|$vicidial_3way_press_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_3way_press_log_archive SELECT * from vicidial_3way_press_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_3way_press_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_3way_press_log;";} else {$stmtA = "DELETE FROM vicidial_3way_press_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_3way_press_log table \n";} $stmtA = "optimize table vicidial_3way_press_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_3way_press_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_hci_log $stmtA = "SELECT count(*) from vicidial_hci_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_hci_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_hci_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_hci_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_hci_log table... ($vicidial_hci_log_count|$vicidial_hci_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_hci_log_archive SELECT * from vicidial_hci_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_hci_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_hci_log;";} else {$stmtA = "DELETE FROM vicidial_hci_log WHERE call_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_hci_log table \n";} $stmtA = "optimize table vicidial_hci_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_hci_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_call_notes $stmtA = "SELECT count(*) from vicidial_call_notes;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_call_notes_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_call_notes_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_call_notes_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_call_notes table... ($vicidial_call_notes_count|$vicidial_call_notes_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_call_notes_archive SELECT * from vicidial_call_notes;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_call_notes_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_call_notes WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_call_notes table \n";} $stmtA = "optimize table vicidial_call_notes;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_call_notes_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_lead_search_log $stmtA = "SELECT count(*) from vicidial_lead_search_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_lead_search_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_lead_search_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_lead_search_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_lead_search_log table... ($vicidial_lead_search_log_count|$vicidial_lead_search_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_lead_search_log_archive SELECT * from vicidial_lead_search_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_lead_search_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_lead_search_log WHERE event_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_lead_search_log table \n";} $stmtA = "optimize table vicidial_lead_search_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_lead_search_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_agent_function_log $stmtA = "SELECT count(*) from vicidial_agent_function_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_function_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_agent_function_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_agent_function_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_agent_function_log table... ($vicidial_agent_function_log_count|$vicidial_agent_function_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_agent_function_log_archive SELECT * from vicidial_agent_function_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_agent_function_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_agent_function_log;";} else {$stmtA = "DELETE FROM vicidial_agent_function_log WHERE event_time < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_agent_function_log table \n";} $stmtA = "optimize table vicidial_agent_function_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_agent_function_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_outbound_ivr_log $stmtA = "SELECT count(*) from vicidial_outbound_ivr_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_outbound_ivr_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_outbound_ivr_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_outbound_ivr_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_outbound_ivr_log table... ($vicidial_outbound_ivr_log_count|$vicidial_outbound_ivr_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_outbound_ivr_log_archive SELECT * from vicidial_outbound_ivr_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_outbound_ivr_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { if ($wipe_all > 0) {$stmtA = "DELETE FROM vicidial_outbound_ivr_log;";} else {$stmtA = "DELETE FROM vicidial_outbound_ivr_log WHERE event_date < '$del_time';";} $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_outbound_ivr_log table \n";} $stmtA = "optimize table vicidial_outbound_ivr_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_outbound_ivr_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### vicidial_sip_action_log $stmtA = "SELECT count(*) from vicidial_sip_action_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_sip_action_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_sip_action_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_sip_action_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_sip_action_log table... ($vicidial_sip_action_log_count|$vicidial_sip_action_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_sip_action_log_archive SELECT * from vicidial_sip_action_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_sip_action_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_sip_action_log WHERE call_date < '$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_sip_action_log table \n";} $stmtA = "optimize table vicidial_sip_action_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_sip_action_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } if ($recording_log_archive > 0) { ##### recording_log $stmtA = "SELECT count(*) from recording_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $recording_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from recording_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $recording_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing recording_log table... ($recording_log_count|$recording_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO recording_log_archive SELECT * from recording_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into recording_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM recording_log WHERE start_time < '$RECdel_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from recording_log table \n";} $stmtA = "optimize table recording_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table recording_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### recording_log_stereo $stmtA = "SELECT count(*) from recording_log_stereo;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $recording_log_stereo_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from recording_log_stereo_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $recording_log_stereo_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing recording_log_stereo table... ($recording_log_stereo_count|$recording_log_stereo_archive_count)\n";} $stmtA = "INSERT IGNORE INTO recording_log_stereo_archive SELECT * from recording_log_stereo;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into recording_log_stereo_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM recording_log_stereo WHERE start_time < '$RECdel_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from recording_log_stereo table \n";} $stmtA = "optimize table recording_log_stereo;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table recording_log_stereo_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### recording_log_parallel $stmtA = "SELECT count(*) from recording_log_parallel;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $recording_log_parallel_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from recording_log_parallel_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $recording_log_parallel_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing recording_log_parallel table... ($recording_log_parallel_count|$recording_log_parallel_archive_count)\n";} $stmtA = "INSERT IGNORE INTO recording_log_parallel_archive SELECT * from recording_log_parallel;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into recording_log_parallel_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM recording_log_parallel WHERE start_time < '$RECdel_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from recording_log_parallel table \n";} $stmtA = "optimize table recording_log_parallel;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table recording_log_parallel_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ##### recording_live_log $stmtA = "SELECT count(*) from recording_live_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $recording_live_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from recording_live_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $recording_live_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing recording_live_log table... ($recording_live_log_count|$recording_live_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO recording_live_log_archive SELECT * from recording_live_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into recording_live_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM recording_live_log WHERE start_time < '$RECdel_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from recording_live_log table \n";} $stmtA = "optimize table recording_live_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table recording_live_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } } if ($did_log_archive > 0) { ##### vicidial_did_log $stmtA = "SELECT count(*) from vicidial_did_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $did_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from vicidial_did_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $did_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_did_log table... ($did_log_count|$did_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO vicidial_did_log_archive SELECT * from vicidial_did_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into vicidial_did_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM vicidial_did_log WHERE call_date < '$DIDdel_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_did_log table \n";} $stmtA = "optimize table vicidial_did_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table vicidial_did_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } } if ($park_log_archive > 0) { ##### park_log $stmtA = "SELECT count(*) from park_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $park_log_count = $aryA[0]; } $sthA->finish(); $stmtA = "SELECT count(*) from park_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $park_log_archive_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing park_log table... ($park_log_count|$park_log_archive_count)\n";} $stmtA = "INSERT IGNORE INTO park_log_archive SELECT * from park_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows inserted into park_log_archive table \n";} $rv = $sthA->err(); if (!$rv) { $stmtA = "DELETE FROM park_log WHERE parked_time < '$PARKdel_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from park_log table \n";} $stmtA = "optimize table park_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $stmtA = "optimize table park_log_archive;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } } if ($cpd_log_purge > 0) { ##### vicidial_cpd_log $stmtA = "SELECT count(*) from vicidial_cpd_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows=$sthA->rows; if ($sthArows > 0) { @aryA = $sthA->fetchrow_array; $vicidial_cpd_log_count = $aryA[0]; } $sthA->finish(); if (!$Q) {print "\nProcessing vicidial_cpd_log table... ($vicidial_cpd_log_count)\n";} $stmtA = "DELETE FROM vicidial_cpd_log WHERE event_date < '$CPDdel_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; $sthArows = $sthA->rows; if (!$Q) {print "$sthArows rows deleted from vicidial_cpd_log table \n";} $stmtA = "optimize table vicidial_cpd_log;"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } $stmtA = "UPDATE system_settings SET oldest_logs_date='$del_time';"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr; } ### calculate time to run script ### $secY = time(); $secZ = ($secY - $secX); $secZm = ($secZ /60); if (!$Q) {print "\nscript execution time in seconds: $secZ minutes: $secZm\n";} $stmtA = "UPDATE vicidial_internal_log SET up_time=NOW(), action='finished', stage='Run seconds: $secZ' WHERE process='$script_name' and server_ip='$server_ip' order by db_time desc limit 1;"; if($DB){print STDERR "|$stmtA|";} my $affected_rows = $dbhA->do($stmtA); if($DB){print STDERR "$affected_rows|\n";} exit; sub internal_logger { $stmtA = "INSERT INTO vicidial_internal_log SET db_time=NOW(), up_time=NOW(), process='$script_name', server_ip='$server_ip', action='$action', stage='$stage';"; if($DB){print STDERR "|$stmtA|";} my $affected_rows = $dbhA->do($stmtA); if($DB){print STDERR "$affected_rows|\n";} }