Correct me if I'm wrong, but isn't the address list (above) for using 2 network cards (each with it's own IP) in 1 server?
Or failover for a RAC environment...
From "Enhanced Service Accessibility with Multiple Listeners" link above:
"For some configurations, such as Oracle9i Real Application Clusters, multiple listeners on multiple nodes can be configured to handle client connection requests for the same database service. In the following example, sales.us.acme.com can connect to sales.us.acme.com using listeners on either sales1-server or sales2-server."
will it increase the posting speed in server, when it receives bulk data from 2 clients ???
Certanly not! Data to be inserted/updated/deleted/retrived fint/from the database *never* goes through the listener. Database server and the client talk directly to each other, no listener is involved in that. Listener only take its part between the client and the database during the connection time. Once the session is established listener is no longer needed - you can even shut it down and the connected sessions will still happily comunicate with the database.
Jurij Modic ASCII a stupid question, get a stupid ANSI
24 hours in a day .... 24 beer in a case .... coincidence?
Yea, I guess he wasn't concerned about overloading a nic or a port with new connections.
I agree that the listener has nothing to do with established connections data throughput. The listener's job is to start the user's server process and step aside.
Certanly not! Data to be inserted/updated/deleted/retrived fint/from the database *never* goes through the listener. Database server and the client talk directly to each other, no listener is involved in that. Listener only take its part between the client and the database during the connection time. Once the session is established listener is no longer needed - you can even shut it down and the connected sessions will still happily comunicate with the database.
That's what I was going to say until I thought maybe they're connecting each time before they insert (don't laugh, I've seen it).
Bookmarks