Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

am getting error error when am using wm_concat funcation.

883038Jan 10 2012 — edited Jan 10 2012
hi all
am getting error error when am using wm_concat funcation.
SQL> DECLARE
2 ex VARCHAR2(200);
3 BEGIN
4 SELECT wm_concat(ename) INTO EX FROM EMP WHERE deptno=30;
5 DBMS_OUTPUT.PUT_LINE(EX);
6 END;
7 
8 .
SQL> 
SQL> /
DECLARE
*
ERROR at line 1:
ORA-06550: line 4, column 10:
PL/SQL: ORA-00904: "WM_CONCAT": invalid identifier
ORA-06550: line 4, column 3:
PL/SQL: SQL Statement ignored
Thanks for all in advance

Edited by: maddy on 9 Jan, 2012 10:02 PM
This post has been answered by BluShadow on Jan 10 2012
Jump to Answer

Comments

One alternative could be that there is a bug in the JNI code.  The use of the option ends up allowing the bug to impact the application space in a way that the OS detects it - and thus the SEGV.

Michaelt-Oracle

While a user level bug is certainly a possibility what's strange about this case is there are no user level threads making JNI calls at the time of the crash. We've also determined the crash occurs on OEL but not on Solaris Sparc, other platforms to be tested soon. The question here is simply if there are any known issues. My queries of bugdb did not yield any.

> there are no user level threads making JNI calls at the time of the crash.

Irrelevant.

SEGV occurs because the OS detected that the application did something bad.  That can occur any time once the bug occurs.  It might be immediately or hundreds of lines later.  For example if the code corrupts the native heap then the fault might not occur until the native heap manager attempts to compress the heap which can occur much later.

> We've also determined the crash occurs on OEL but not on Solaris Sparc

Different execution paths which means the potential for different behavior.  So in one case it does something the OS sees in the other it doesn't.

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Feb 7 2012
Added on Jan 10 2012
5 comments
14,387 views