you can open the .sql file and store the contents in a perl variable (lets
say $SQL) and then execute the command.

On Thu, May 26, 2011 at 3:28 PM, Woo, Hye Jin <hye-jin....@hp.com> wrote:

> Would you help me how to execute like @xx.sql in PL/SQL in perl?
>
> If I do not execute select query, I want to get the query result using by
> x.sql file.
>
> It mean that I want to execute x.sql file after connecting oracle, then I
> want to get the output.
>
> Is it possible or not ?
>
>
>
>
>
> use DBI;
>
> ...
> ...
>
> my $dbh = DBI->connect ($dsn, $username, $password, \%attr) || die
> "Database connection not mode : $DBI::errstr";
>
> my $que = "@/lhome/elcaro/scripts/admin/moniCPU.sql";
> #my $que = "select instance_name from v\$instance";
>
> my $cursor = $dbh->selectall_arrayref($que);
>
> for (@$cursor) {
>    print "@{$_} \n";
> }
>
> $dbh->disconnect;
>
>
>
>
> Hyejin Woo
> GM&Q / Network & DBA
>
> Certificate : CISA, CCNP, IBM AIX Expert, HP-UX, ITIL
>
> HP-DIS
> 23, Sungju-dong, Changwon, Kyeongnam, 641-745, South Korea
> Office : +82-55-269-1272 / Fax: +82-55-269-1261
> Mobile : +82-10-9300-6793
> Mail : hye-jin....@hp.com
>
>
>
>
> --
> To unsubscribe, e-mail: beginners-unsubscr...@perl.org
> For additional commands, e-mail: beginners-h...@perl.org
> http://learn.perl.org/
>
>
>

Reply via email to