in reply to How can I change my script to make multiple connections to do the job
What this achieves is less clear.my $conn = 20; my @dbh = map { DBI->connect ('DBI:Oracle:host=EM12;sid=orcl',"hr","hr +") or die "Failed to connect to database: " . DBI->errstr} 1..$co +nn; for my $t (1..$tables){ my $sql = .... $dbh[$t % $conn]->do ($sql) or die DBI->errstr; }
"By three methods we may learn wisdom: First, by reflection, which is noblest; Second, by imitation, which is easiest; and third by experience, which is the bitterest." -Confucius
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How can I change my script to make multiple connections to do the job
by terrykhatri531 (Novice) on Jan 10, 2013 at 20:29 UTC |