Help for this page

Select Code to Download


  1. or download this
     
    my @dbs = (
        [ 'OWNER', 'dbi:...', 'user', 'pass' ],
    ...
         PopulateTableStats( $dbh, $fh, ... );
         DumpTableStats( $dbh, $fh, ... );
    }
    
  2. or download this
    sub Query4Over500 {
        my ( $dbh, $FHExtract, $tb_name ) = @_;
        $tb_name = $dbh->quote_identifier( $tb_name );
    ...
            print $FHExtract ToCsv( $aref );
        }
    }