in reply to Help Copying records from one table to another.
Althought, I haven't had the chance to test this code, give the module a good try. I'm hopeful it should help.use DBIx::Copy; use DBI; my $dbh = DBI->connect('dbi:ODBC:ReportDB') or die "Error opening DB: +$DBI::errstr\n"; my %options=(); my $copy_handler= DBIx::Copy->new($dbh, $dbh, \%options); $copy_handler->copy (['dbo_Bulletins', 'knownbulletins']);
# Under Construction
|
|---|