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 Kevin Closson

Reply:     1     2     3     4     5     6     7     8     9     10     >>  


Some corrections are needed here.

>- process Pnnn works as a proxy on behalf of your pogram
>   - reads and writes ONLY to the System Global Area SGA)
>   - makes requests of the DB Writer, etc. to fill/flush the SGA

Pnnn processes are PQO (parallel query option) slaves and as such,
are background processes. Unless MTS is in play, client sessions
are serviced by an instance foreground process (shadow processes).

PQO slaves are not limited to "ONLY" SGA buffered IO. To the
contrary, they spend the highest majority of their time performing
direct path read and writes which are multi-block in size and buffered
in the
PGA. About the only task PQO slaves perform using SGA buffers
is an index range scan.


>
>- the DBWR reads and writes the files in the database area.
>   - neither your program, nor proxy Pnnn, writes to the disk.

DBWR does not perform reads. I have no idea what the term "proxy Pnnn"
means since that is most certainly absent from the Concepts Guide.
Again, Pnnn processes are PQO slaves. A user session in the server is
served by either a shadow process (called two-task in the old days) or
an MTS server/dispatcher pair. Either way, BOTH shadow processes and
MTS server processes perform BOTH reads and writes to datafiles. They
beside the typical db file sequential and scattered reads (which are
buffered in the SGA), they also perform direct path read and writes.
forground (shadow) process direct path writes are quite common
for such tasks as spilling sort overflow.


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