Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Re: SQL*Net & loopback connector
>
> At the risk of showing my ignorance, exactly how does one
> use IPC between instances on the same system?
>
It is easily setup via the net config tool.
Or if your java is not working quite right, ( a not too unusual situation, no? ) you can tnsnames.ora by hand.
The IPC connect string needs to appear before the TPC string in tnsnames.ora. Here is an example.
TS02 =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(Key = ts02)) (ADDRESS = (PROTOCOL = TCP)(HOST = poirot)(PORT = 1521)))
(SERVER = DEDICATED) (SERVICE_NAME = ts02)
Confirm that IPC is being used by using tnsping. The output displays whether TPC or IPC is being used.
Jared
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Fri Jul 02 2004 - 09:19:41 CDT
![]() |
![]() |