.ora-code.com

Links
Home
Oracle DBA Forum
Frequent Oracle Errors
TNS:could not resolve the connect identifier specified
Backtrace message unwound by exceptions
invalid identifier
PL/SQL compilation error
internal error
missing expression
table or view does not exist
end-of-file on communication channel
TNS:listener unknown in connect descriptor
insufficient privileges
PL/SQL: numeric or value error string
TNS:protocol adapter error
ORACLE not available
target host or object does not exist
invalid number
unable to allocate string bytes of shared memory
resource busy and acquire with NOWAIT specified
error occurred at recursive SQL level string
ORACLE initialization or shutdown in progress
archiver error. Connect internal only, until freed
snapshot too old
unable to extend temp segment by string in tablespace
Credential retrieval failed
missing or invalid option
invalid username/password; logon denied
unable to create INITIAL extent for segment
out of process memory when trying to allocate string bytes
shared memory realm does not exist
cannot insert NULL
TNS:unable to connect to destination
remote database not found'>ora-02019
exception encountered: core dump
inconsistent datatypes
no data found
TNS:operation timed out
PL/SQL: could not find program
existing state of packages has been discarded
maximum number of processes exceeded
error signaled in parallel query server
ORACLE instance terminated. Disconnection forced
TNS:packet writer failure
see ORA-12699
missing right parenthesis
name is already used by an existing object
cannot identify/lock data file
invalid file operation
quoted string not properly terminated
oracle directory permssions and listener

oracle directory permssions and listener

2004-10-12       - By McAllister, Andrew
Reply:     <<     11     12     13     14     15     16     17     18     19     20     >>  

This is my last post on this subject as we are straying far away from
the list charter...

For those on NT (SP3) or WIN2K or WIN2K3...
Please see metalink note:
http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_d
atabase_id=NOT&p_id4140.1 (line probably wraps)

It tells you how to set up your windows listener so that it only uses
port 1521 (or whatever port you want) to handle database connections. No
port/connection hand-off and no special firewall setup.

Unix on the other hand appears to default to shared socket behavior
except when using multi-threaded-server or SSL encrypted sqlnet
connections. With MTS or SSL it does indeed spin-off the connection to a
different port.
See
http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_d
atabase_id=NOT&p_id5021.1 (line wraps) for more info on running
sqlnet through a firewall.

We run the use_shared_socket setting on all our windows servers running
Oracle and we block all non-1521 connections from our clients to our
SuSE-oracle boxes. So, as another poster said, it's all configurable.

Please note also that some firewalls have a tendency to drop tcp
connections if no packets traverse the network for a certain period of
time. In those cases you can usually program the firewall to "keep
alive" all inbound 1521 connections. Or you can also use sqlnet's
"tcp_nodelay" and "expire_time" parameters to try (sometimes firewalls
still kill the connections) to keep the packets flowing at the SQL*Net
layer even if the client isn't requesting any data.

We choose the simpler "everyone talks to 1521 for everything" method
because our users cross numerous firewalls that we do not control.

Andy

--
To unsubscribe, email: suse-oracle-unsubscribe@(protected)
For additional commands, email: suse-oracle-help@(protected)
Please see http://www.suse.com/oracle/ before posting