in reply to Connecting 'as sysdba' using DBD::Oracle
or did you just remove the username before posting? Try using the username "system" like so:my $dbh = DBI->connect($dsn, "", "", { ora_session_mode => ORA_SYSDBA +});
with the proper $sysdba_password ofcourse.my $dbh = DBI->connect($dsn, "system", $sysdba_password, { ora_session +_mode => ORA_SYSDBA });
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Connecting 'as sysdba' using DBD::Oracle
by laminee (Novice) on Aug 05, 2009 at 11:27 UTC | |
by FloydATC (Deacon) on Aug 05, 2009 at 11:36 UTC |