Database connection through Directory Naming

Joe Simunac

Member²
Our DBAs are converting from Local Naming to Directory Naming for connecting to our Oracle DB. This works fine in SQL*PLUS, but I can't figure out how to set it up in PL/SQL Developer.

We have a few copies of Toad 9.x and it gives you the choice of TNS, Direct or LDAP. Is this possible in Developer? I sure hope so, since we're going to be forced to use LDAP after April.

Thanks!

-Joe
 
This is transparent to the application. You can simply pass the username, password and database, and Oracle Net will use the name resolution method as configured.
 
You can connect with any naming method, including LDAP. You will have to enter the database name by hand though.
 
Hi how do I setup an LDAP database connection manually?
What is the syntax?

These are my LDAP database details.
ldap.ora:
DIRECTORY_SERVERS = (XXX.XX.XXXXXX.XXX::XXXX)
DEFAULT_ADMIN_CONTEXT = "dc=XX,dc=XXXXXXXX,dc=XXX,dc=XX"
DIRECTORY_SERVER_TYPE = OID

database connection name: XXXXXXXXX

Where do I put these details in the connection dialog box?
I've tried everything with no luck.

Thanks in advance.
 
Last edited:
Back
Top