I've just upgraded my Oracle database from 8.0.6.3 to 9.2.0.5
This connection used to work with Oracle 8 but doesn't work with 9.
The user running the job, is identified externally to the database.
The internal user was deprecated with Oracle 9.
I have a requirement that I can not put hard coded userids and passwords in script files, nor pass them in on the command line.
Any help with connecting without a password would be appreciated.
Thanks
Jan
This connection used to work with Oracle 8 but doesn't work with 9.
Code:
my $dbh = DBI->connect "dbi:Oracle:", "internal", " ",
{PrintError => 0, AutoCommit => 0,
ora_session_mode => 2} ) ;
The internal user was deprecated with Oracle 9.
I have a requirement that I can not put hard coded userids and passwords in script files, nor pass them in on the command line.
Any help with connecting without a password would be appreciated.
Thanks
Jan