Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Connect w/o Listener
hberry schreef:
> 10g
>
> How to connect to a local DB (localhost) without needing to start & go thru
> the Listener ?
>
> thx
>
>
Use a BEQUEATH connection:
MY_ALIAS =
(DESCRIPTION=
(ADDRESS = (PROTOCOL = BEQ)(PROGRAM=oracle)
(ARGV0=oracleORCL)
(ARGS='(DESCRIPTION=(LOCAL=yes)(ADDRESS=(PROTOCOL=BEQ)))')
)
(CONNECT_DATA=(SID=ORCL)
)
)
More on http://vanbortel.blogspot.com/2006/03/network-blues.html
-- Regards, Frank van Bortel Top-posting is one way to shut me up...Received on Fri Sep 29 2006 - 12:43:21 CDT
![]() |
![]() |