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
SLES9/x86-64, Oracle 9.2.0.4/AMD64 ORA-07445 when function pipe

SLES9/x86-64, Oracle 9.2.0.4/AMD64 ORA-07445 when function pipe

2004-12-10       - By Dmitry Melekhov


Hello!

I know that this this combination is not certified yet.
But may be somebody had such problem.

We run following function
CREATE OR REPLACE FUNCTION "ZVN"."OTPUSK" (find_fam IN varchar2, find_tab_n
IN VARCHAR2)
(find_fam IN VARCHAR2, find_tab_n IN VARCHAR2)
  RETURN nejav_tab PIPELINED
IS
BEGIN
  FOR c IN (SELECT   c.f_name AS im, c.m_name AS ot, c.l_name AS fam,
                     e.tab_n AS tab_n, l.d_from AS dn, l.d_to AS dk,
                     '??????' AS tip
                FROM hr_prod.pr_emp e, hr_prod.pr_card c,
                     hr_prod.pr_leave l
               WHERE e.card_id = c.ID
                 AND e.ID = l.emp_id
                 AND (       NOT find_fam IS NULL
                         AND (LOWER (c.l_name) LIKE LOWER (find_fam))
                      OR NOT find_tab_n IS NULL AND e.tab_n = find_tab_n
                     )
            ORDER BY l.d_from DESC)
  LOOP
     PIPE ROW (nejav_row (c.fam, c.im, c.ot, c.tab_n, c.dn, c.dk, c.tip));
  END LOOP;

  RETURN;
END;

and we get following error:

Fri Dec 10 21:12:17 2004
Errors in file /home/oracle/OraHome1/admin/BOSS/udump/boss_ora_10299.trc:
ORA-07445 (See ORA-07445.ora-code.com): exception encountered: core dump [pfrtcs()+75] [SIGSEGV] [Address
not mapped to object] [0x00000007C] [] []
ORA-07445 (See ORA-07445.ora-code.com): exception encountered: core dump [pbt_flags()+18] [SIGSEGV]
[Address not mapped to object] [0x0000000C0] [] []

This error appears with some parameters, but it is 100% reproducable .
And this is first time we try to use function pipes, but other functions
work... :-)

Any ideas?
May be there is already patch to fix this?

Unfortunately, we run developer's version of Oracle... I have access to
metalink, but we currently have license only for Oracle x86
(we are going to buy licenses for this server in January), so I don't shure
I can create TAR...




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