I'm getting the following error when I run the below code snippet.  Any
ideas what's wrong?

Error is :
Out of memory during "large" request for 4198400 bytes, total sbrk() is
13050512 bytes at /starfish/oracle/Apache/Apache/cgi-bin/validate2.pl
line 47.


    34      my @domains = ();
    35      my @row = ();
    36
    37      my $dbh =
DBI->connect("dbi:Oracle:sid=lang1;host=starfish.protocol.
com", "oracle", "oracle",
    38          {AutoCommit => 1}) || die $DBI::errstr;
    39
    40      # get the domains for the selected tag
    41      my $sth = $dbh->prepare("
    42                          select tag from tag
    43                          ") || die $dbh->errstr;
    44
    45      $sth->execute || die $dbh->errstr;
    46      while ((@row = $sth=>fetchrow_array)) {
    47          push @domains, $row[0];
    48      }
    49      $sth=>finish;


Reply via email to