How can i redirect Oracle SQL query results into a external CSV file on the drive at the same time printing them onto the screen in perl
here is what i'am planning to do
my $dbh = DBI->connect('dbi:ODBC:Test2', 'XXX', 'XXXX') || die ("Connection Failed \n");
$sql="select a,b from xxx";
my $sth = $dbh->prepare($sql);
$sth->execute();
my $dat;
while( $dat = $sth->fetchrow_hashref() ){ print ("$dat->{a}",print ("$dat->{b}" * here i'am getting the results on the screen }
**My main challenge is to get the results into a csv file on my local disk -- Any help would be appreciated.....**

FileandScreen– stevenl May 23 '12 at 1:16tail -forlessand pressFon your linux shell while running your program in another shell. If you want to know how to connect to the DB and query it, please ask specifically and provide code that you have already tried. – simbabque May 23 '12 at 8:07