I need to execute an SQL file against an Oracle database using the Perl DBI. With a quick search I found some solutions executing the SQL file by line by line, but I want to load the SQL in its entirety file as in SQL Developer.
In SQL Dveloper or SQL*Plus command line I can execute;
@/path/to/file.sql;
If I execute this statement in Perl as below
my $query = "@/path/to/file.sql";
my $sth = $dbh->prepare($query)
or die "Couldn't prepare query: ". $dbh->errstr;
$sth->execute();
I get the error: ORA-00900: Invalid statement