in reply to ODBC related perl module

Can't you grep through your source file and look for where ODBC is used in a use statement?

grep -nP 'use.+ODBC' file.pl

Or just show all use statements:

grep -in '^use ' dailysumm.pl
Perl 5.8.8 on Redhat Linux RHEL 5.5.56 (64-bit)