緩慢加載的一個問題是在每次更新時都進行提交。確保自動提交關閉,並且每1000行或者其他操作一次。如果它不是一個巨大的負載,不要做它們。另外,請勿在加載過程中創建索引,然後再創建索引。
此外,我不確定OLE是如何做到這一點的最佳方式。我一直使用DBI和Win32 :: ODBC加載Access數據庫。速度非常快。
根據要求,這裏是樣本加載程序,在WinXP,Access 2003,ActiveState Perl 5.8.8上每分鐘做了大約100k條記錄。
use strict;
use warnings;
use Win32::ODBC;
$| = 1;
my $dsn = "LinkManagerTest";
my $db = new Win32::ODBC($dsn)
or die "Connect to database $dsn failed: " . Win32::ODBC::Error();
my $rows_added = 0;
my $error_code;
while (<>) {
chomp;
print STDERR "." unless $. % 100;
print STDERR " $.\n" unless $. % 5000;
my ($source, $source_link, $url, $site_name) = split /\t/;
my $insert = qq{
insert into Links (
URL,
SiteName,
Source,
SourceLink
)
values (
'$url',
'$site_name',
'$source',
'$source_link'
)
};
$error_code = $db->Sql($insert);
if ($error_code) {
print "\nSQL update failed on line $. with error code $error_code\n";
print "SQL statement:\n$insert\n\n";
print "Error:\n" . $db->Error() . "\n\n";
}
else {
$rows_added++;
}
$db->Transact('SQL_COMMIT') unless $. % 1000;
}
$db->Transact('SQL_COMMIT');
$db->Close();
print "\n";
print "Lines Read: $.\n";
print "Rows Added: $rows_added\n";
exit 0;
在20分鐘內裝載了多少行?每行有多少列(字段)?輸入文件總共有多大字節?你是否在加載時創建索引? –