Possibility to connect to database via full connect string?

Claus Pedersen

Member³
It is possible to connect to a database, not via an alias in the TNSnames file, but by writing the entire connect string, e.g. to SQL*PLUS:

sqlplus scott/tiger@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SID=oracle)))

Is it possible to connect to a database by this method via the normal PLD logon (or another way), or does it require that all connection strings are present in the TNSnames file?

I know this is a bit exotic, but I just wondered ;)
 
Back
Top