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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

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

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,320 views