Am getting error  error when am using  wm_concat funcation.

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 ignoredThanks for all in advance
Edited by: maddy on 9 Jan, 2012 10:02 PM

>
WM_CONCAT is undocumented and unsupported by Oracle, meaning it should not be used in production systems.
>
so change your way
btw
for me
SQL> select * from v$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
PL/SQL Release 10.2.0.1.0 - Production
CORE    10.2.0.1.0      Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
SQL> set serveroutput on
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  /
ALLEN,WARD,MARTIN,BLAKE,TURNER,JAMES
PL/SQL procedure successfully completed.
SQL> try wmsys.wm_concat

Similar Messages

  • Trouble with slow Macbook Air. I have first generation MacBook Air and have a hard time keeping hard drive from being full. Right now, I have almost 5 gigs available, but mac is slow and I keep getting color wheel when I use Mail. Any suggestions?

    Trouble with slow Macbook Air. I have first generation MacBook Air and have a hard time keeping hard drive from being full. After trashing many docs, I have almost 5 gigs available, but mac is slow and I keep getting color wheel when I use Mail. I'd like to install Lion, but now I'm afraid it will slow down my machine even further. Do I have enough free hard disc space? Is Mail problem related to free hard disc space? Thanks for your help!

    7gb of free disc space is required to install Lion.  Read this about how to free up disc space: http://pondini.org/OSX/DiskSpace.html.  Also, advice on how to speed up your mac: http://www.maclife.com/article/feature/25_ways_speed_your_mac

  • My iphone 4s camera is getting switch off when i use

    My iphone 4s camera is getting switch off when i use and when i use HDR function in the camera its getting switch off after taking picture and I wont see the picture where I have taken, can any one help me out in this or I should go to service center

    Uninstall the app and reinstall it. If it persists dont use it. simple

  • Why i dont get email notifications when someone uses my apple account to know my location through Find my Iphone?

    Why i dont get email notifications when someone uses my apple account to know my location through Find my Iphone?

    Try adding [email protected] as a VIP contact in your icloud mail app using the appleid used for icloud if using multiple accounts (i.e different itunes and icloud account).
    But seriously that happens really !? not getting emails for using icloud services with a valid appleid.

  • My iPad getting very warm when i use it for bit in longer time

    Why my ipad is getting very warm when i use it for bit in longer time, any body has same experience?, Why my ipad is getting very warm when i use it for bit in longer time, any body has same experience?

    The Temperature warning usually appears when the iPad has been set in a place where it gets so hot to the touch that you'd almost burn your hands if you picked it up. The temperature caused by the processor or charging the battery should never reach that level. If you feel your pad is too warm when you are using it Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • My ipod touch won't hold a charge and gets really hot when im using it. what is going on?

    my ipod touch won't hold a charge and gets really hot when im using it. what is going on?

    Likely that the battery is dead.  I would make an appointment at the Genius Bar of an Apple store to confirm. Apple will replace the battery for this price:
    Apple - Support - iPod - Repair pricing
    There are third-party places which may be less expensive.  Here is one. Google for more.
    DigiExpress.us - The iPad Repair Professionals

  • What should i do if my ipod is getting really hot when i use it/

    I need help my ipod keeps getting really hot when i use it

    I would suggest you stop use for a period of time until it cools down. When you turn it off, make sure you exit out of whatever program you are running. If it persists getting hotter, to the point where it's hard to hold, I would suggest you take it into the Apple store nearest you. Depending on how long you have had it, they may be able to replace it for you free of charge.
    It is abnormal for that device to get extremely hot but when it is running multiple programs, such as playing music and surfing safari, it can heat up.

  • Why do I get static sound when I use a headset splitter iwith my macbook air 13"?

    Why do I get a static sound when I use a headset splittter with my macbook air? The headphone works perfectly but when I put the mic in the splitter, the sound gets a little bit static. Any advice will be greatly appreciated.
    Thank you!
    Cheers,
    francismba

    I suggest an appointment at an Apple store genius bar for a free evaluation.
    Perhaps an Apple Hardware Test may provide a clue:
    https://support.apple.com/en-us/HT201257
    Note that an error free AHT is not definitive.
    Ciao.

  • I am not getting any notifications when I use my card

    I'm not getting any notifications when I make purchases with my primary card

    Select the card under Settings > Passbook & Apple Pay and ensure that Card Notifications is on.  This option is not present for Debit Cards.

  • How to get the index of the error record when uploaded using standard LSMW

    Hi Experts,
    When uploading data using lsmw standard batch input method which creates an error session if any errors,how can we able to find the index of the error record
    eg: If 3rd record in input file is incorrect then error session is getting created with the error and index as 1.But I want to know that 3rd record in my input file is incorrect.
    Please help me out.

    Srinivas,
    In global data, i've written like this.
    TYPES: BEGIN OF TYPE_ERROR,
                 INDEX TYPE I,
                 END OF TYPE_ERROR.
    DATA: GT_ERROR TYPE TABLE OF TYPE_ERROR,
               GS_ERROR TYPE TYPE_ERROR,
               GV_TOTAL_COUNT TYPE I, GV_INDEX TYPE I,
               GV_STRING TYPE STRING,
              GV_FILE TYPE STRING VALUE '/usr/sap/interfaces/LSMW/Asseterror
    In Begin of transaction,
    GV_TOTAL_COUNT = GV_TOTAL_COUNT + 1.
    In End of processing,
    OPEN DATASET GV_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC = 0.
    CLEAR GS_ERROR.
    LOOP AT GT_ERROR INTO GS_ERROR.
    CONCATENATE 'INDEX OF THE ERROR RECORD IS:' GS_ERROR INTO GV_STRING.
    TRANSFER GV_STRING TO GV_FILE.
    CLEAR: GV_STRING, GS_ERROR.
    ENDLOOP.
    ENDIF.
    How and where will I be assigning error count and append it to the internal table.
    Please help me out.

  • I'm unable to access my yahoo email account using updated firefox browser, i keep getting error page when I use the mail link on yahoo pages

    Since updating Firefox browser, i am unable to gain access to my yahoo email account. I can access the email with Interent Explorer with no trouble. Whenever I click on a mail link on the yahoo sites to check my mail, I get rerouted to an error page ..... "Sorry, we can't find "ca.mg4.mail.yahoo.com/dc/launch?.gx=1". Please check the spelling of the web address." is what is said at top of page whenever I click on any mail links.

    This is how I fixed it on my new iPhone 5S. Using the standard yahoo setting on my phone.
    You will have to access  "managing your app passwords" on your account profile for yahoo. Generate password for your app. For example: "My iPhone 5S'
    Go to your Iphone and set up your yahoo mail account on your phone the normal way and you have to use the generated password.  instead of the yahoo account password.
    source:
    http://virtualizeme.net/iphone-5-yahoo-mail-server-unavailable-fix/
    I hope this helps,
    cheers

  • I keep getting the error -70006 when I use the following flex_wait_on_condition(1,NIMC_IO_PORT2,NIMC_WAIT,NIMC_CONDITION_IO_PORT_MATCH,0,8,NIMC_MATCH_ALL,150,0)

    The wait on condition works well when I wait for NIMC_CONDITION_PROGRAM_COMPLETE but for the resouce NIMC_IO_PORT2, I can't seem to make it work and I really need to wait for an input on port 2.

    Your flex_wait_on_condition seems to be written correctly and it works on my machine just fine. Please try the example program modification I emailed you and if it doesn't lead to a resolution, please email our technical support engineers from www.ni.com/ask.

  • Why does the message '500 internal server error' appear when I use any search engine?

    I am able to type a web address and use the internet successfully but when using ANY search engine I get the '500 internal server error' message. This appears if I type in a word to search '''bold text'''and the result is the error message. I have recently uninstalled rapport and hitman pro. Please help.

    Did you check your security software (firewall)?
    Which security software (firewall) do you have?
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    See:
    * [[Server not found]]
    * [[Firewalls]]

  • I am having the memory error -12 when try use GetCtrlBitmap from a canvas

    I am using a canvas that is 759w x 15000h to draw some data, but when try to save that bitmap to a file, some times all is ok, but other i get the memory error -12. Always I´m discarding the id bitmap objet. What is happening, I not find any solution to this, any suggestion please will be welcome to help me in this application. (any leak of memory, my application in a while slow)
    some of code:
       error=GetCtrlBitmap (idPanelGrafHijo, GRAFICAS_CANVAS, 0, &idImage);
       if(error==0)
          SaveBitmapToJPEGFile (idImage, NombreArchivoGraficoLocal, 0, 80);
          DiscardBitmap (idImage);    
       else
        MessagePopup ("", "Error de memoria, no se guardo el archivo");

    Hola Alberto,
    Una disculpa por el retraso en la respuesta, de acuerdo al fragmento de código que nos proporcionas creo que no es posible percibir el problema, te voy a pedir que nos mandes tu proyecto para poder analizar que es lo que sucede, también sería de bastante ayuda que nos proporcionaras mas información, por ejemplo, ¿has probado este programa en otra computadora?¿Con un ejmplo sobre canvas obtienes el mismo resultado?
    Por ultimo te pido que nos comentes si estas programando en CVI, Visual C con Measurement Studio, etc. Recuerda que entre más información nos proporciones es más fácil ayudarte.
    Saludos,
    Trujillo
    NI
    Mensaje editado por ltrujill

  • Error 1003007 when loading using load rule???

    I'm getting the following error when loading data using a load rule and could use some help in figuring it out.
    "Data value [40] Encountered Before All Dimensions Selected, [424] Records Completed"
    Does this mean that field 40 in record 425 has a problem? or is there another interpretation of this error?
    I'm trying to narrow down the problem and have sifted through the data but see no obvious problem, any help would be appreciated.
    Thanks.

    No, what Glenn means is that you are likely missing a dimension from your data record. Entity you may very well have (and if it's the first column that should be easy to see) -- it's some other dimension.
    Go through record 424 field by field -- I'll bet you're missing one. So if the data file would normally be 10 fields, record 424 is like 9 or less.
    Regards,
    Cameron Lackpour

Maybe you are looking for