Hi Tim,
the configuration is just like using the 'identified externally' feature. In
fact you have to use this for connecting through Kerberos.
'sqlplus /' for IPC connections or 'sqlplus /@sid' for remote
connections.
This runs only after initializing Kerberos with a ticket.
In fact I use following script
use DBI;
$db = DBI->connect( 'dbi:Oracle:', '/', '' ) or die;
$th = $db->prepare( "select sysdate from dual" );
$th->execute();
print "\n", $th->fetchrow_array, "\n";
and I get the error
DBI->connect() failed: ORA-12649: Unknown encryption or data integrity
algorithm (DBD ERROR: OCIServerAttach) at ./t line 2
Thanks a lot for your support
Felix
-----Ursprungliche Nachricht-----
Von: Tim Bunce [mailto:[EMAIL PROTECTED]]
Gesendet: Donnerstag, 4. April 2002 19:56
An: Castillo, Felix
Cc: [EMAIL PROTECTED]
Betreff: Re: Connect to Oracle Database using Kerberos Tickets
Please let me know if you find out anything.
Meanwhile, what parameters do you pass to SQL*Plus?
Tim.
On Thu, Apr 04, 2002 at 09:39:21AM +0200, Castillo, Felix wrote:
> Hi,
>
> I'm trying to connect to an Oracle database using ASO and Kerberos5. The
> connection through SQL*Plus works properly but I couldn't find any
> documentation/hints on how to connect through DBI/DBD.
>
> Is there anybody who know how to connect?
>
> Thanks for any hint
>
> Felix