Hi when i run this in toad for explain plan  its showing an error ORA_22905

hi when i run this query in toad for explain plan its showing an error ORA_22905 cannot accesss rows from an non nested table item can anyone help me out
SELECT
DISTINCT SERVICE_TBL.SERVICE_ID , SERVICE_TBL.CON_TYPE, SERVICE_TBL.S_DESC || '(' || SERVICE_TBL.CON_TYPE || ')' AS SERVICE_DESC ,SERVICE_TBL.CON_STAT
FROM
TABLE(:B1 )SERVICE_TBL
WHERE
CON_NUM = :B2
thanks

Note the name of this forum is SQL Developer *(Not for general SQL/PLSQL questions)* (so for issues with the SQL Developer tool). Please post these questions under the dedicated SQL And PL/SQL forum.
Regards,
K.

Similar Messages

  • Hi when i run this query its showing an error ORA_22905 cannot access rows

    hi when i run this query its showing an error ORA_22905 cannot access rows from an non nested table item can anyone help me out
    SELECT
    DISTINCT SERVICE_TBL.SERVICE_ID , SERVICE_TBL.CON_TYPE, SERVICE_TBL.S_DESC || '(' || SERVICE_TBL.CON_TYPE || ')' AS SERVICE_DESC ,SERVICE_TBL.CON_STAT
    FROM
    TABLE(:B1 )SERVICE_TBL
    WHERE
    CON_NUM = :B2
    thanks & regards

    Note the name of this forum is SQL Developer *(Not for general SQL/PLSQL questions)* (so for issues with the SQL Developer tool). Please post these questions under the dedicated SQL And PL/SQL forum.
    Regards,
    K.

  • How can I save my data and the date,the time into the same file when I run this VI at different times?

    I use a translation stage for the experiment.For each user in the lab the stage position (to start an experiment) is different.I defined one end of the stage as zero. I want to save the position , date and time of the stage with respect to zero.I want all these in one file, nd everytime I run it it should save to the same file, like this:
    2/12/03 16:04 13567
    2/13/03 10:15 35678
    So I will track the position from day to day.If naybody helps, I appreciate it.Thanks.

    evolution wrote in message news:<[email protected]>...
    > How can I save my data and the date,the time into the same file when
    > I run this VI at different times?
    >
    > I use a translation stage for the experiment.For each user in the lab
    > the stage position (to start an experiment) is different.I defined one
    > end of the stage as zero. I want to save the position , date and time
    > of the stage with respect to zero.I want all these in one file, nd
    > everytime I run it it should save to the same file, like this:
    > 2/12/03 16:04 13567
    > 2/13/03 10:15 35678
    >
    > So I will track the position from day to day.If naybody helps, I
    > appreciate it.Thanks.
    Hi,
    I know the function "write to spreadsheet file.vi"
    can append the data
    to file. You can use the "concatenate strings" to display the date,
    time as well as data... Hope this help.
    Regards,
    celery

  • When I run this VI "Waveform Time to Date Time String" in LabView 7.0 it will not pass decimals of seconds.

    When I run this VI "Waveform Time to Date Time String" in LabView 7.0 it will not pass decimals of seconds. From decimals of inputline. If i disconnect the input to the subVI "Get Date/Time string vi" it will work propperly, it also doses if I reconnect it. I use LabViev 7.0.
    So the problem i solved, but i dosent understund why it works in this way. Does it indicate other problems which will make my researchprogram unrelaible ?
    Attachments:
    Waveform_Time_to_Date_Time_String.vi ‏18 KB

    Hello.
    I checked your vi and it fails as you state.
    It runs fine if: 1 Convert number to timestamp OR
    2 Wire a constant to want seconds?
    In labview 7.1, no problems.
    I think is a job for NI engeniers.
    Hope it helps
    Alipio
    "Qod natura non dat, Salmantica non praestat"

  • When I run this script nothing is output to the screen or spooled to a file

    When I run this script nothing is output to the screen or spooled to a file. What do I need to do to get output from this script.
    SET SERVEROUTPUT ON size 100000
    DECLARE
    v_schema     Varchar2(50);
    v_statement      Varchar2(500);
    v_name varchar2(30);
    v_id varchar2(8);
    v_pwd varchar2(16);
    v_acct varchar2(16);
    CURSOR get_schemas IS
    SELECT DISTINCT owner
    FROM all_tables
    WHERE table_name = 'USERID'
    ORDER BY owner;
    BEGIN
    OPEN get_schemas;
    LOOP
    FETCH get_schemas INTO v_schema;
    EXIT WHEN get_schemas%NOTFOUND;
              v_statement := 'SELECT name,usid,passwd,acctnum INTO v_name,v_id,v_pwd,v_acct FROM '||v_schema||'.userid';
              execute immediate v_statement;
              DBMS_OUTPUT.PUT_LINE('Name='||v_name||' ID='||v_id||' PW='||v_pwd||' AC='||v_acct);          
    END LOOP;
    CLOSE get_schemas;
    END;
    /

    Do I include several variables after the INTO or just
    one?
    How do I loop through the record and print the
    individual variables?
    I appreciate your assistance!He already gave you the answer above:
    v_statement := 'SELECT name,usid,passwd,acctnum FROM ' || v_schema ||
    '.userid';
    execute immediate v_statement
    INTO v_name, v_id, v_pwd, v_acct;
    If this is not printing any output, it is because you don't have a table named USERID... what are you trying to do?

  • I see two dialog boxes when I run this script, why?

    When I run this script I see two dialog boxes of "Would you like to Minimize firefox", the first has no default button selected, the second one does.
    What is going on? How do I end up with only one dialog box?
    set minfirefox to "Would you like to Minimize firefox?"
    set tempvar to display dialog minfirefox buttons {"Yes", "No"}
    set ButtonPressed to button returned of tempvar
    display dialog minfirefox buttons {"Yes", "No"} default button "Yes"
    if ButtonPressed is "yes" then
    display dialog "you pressed " & ButtonPressed
    else
    display dialog "you should have pressed yes but you pressed " & ButtonPressed
    end if

    Hi--
    Welcome to the Apple Discussions...
    StewartAlexander wrote:
    When I run this script I see two dialog boxes of "Would you like to Minimize firefox", the first has no default button selected, the second one does.
    What is going on? How do I end up with only one dialog box?
    You're telling it to display the dialog twice. Once here without the default button:
    set tempvar to display dialog minfirefox buttons {"Yes", "No"}
    and then again here:
    display dialog minfirefox buttons {"Yes", "No"} default button "Yes"
    But you're ignoring the buttons returned from the second one.
    charlie
    PS. This probably does more like what you want:
    set minfirefox to "Would you like to Minimize firefox?"
    set tempvar to display dialog minfirefox buttons {"Yes", "No"} default button "Yes"
    set ButtonPressed to button returned of tempvar
    if ButtonPressed is "yes" then
    display dialog "you pressed " & ButtonPressed
    else
    display dialog "you should have pressed yes but you pressed " & ButtonPressed
    end if

  • I have BSP Page.When i run this BSP my internet expolrer browser screen hei

    Hi friends,
    I have BSP Page.When i run this BSP my internet expolrer browser screen height =200 ,width =-200.
    How to code this layout in BSP and where i have to write?

    chk this
    http://www.codeave.com/javascript/code.asp?u_log=7065

  • When I connect my I pod shuffle to USB it shows an error message - " I Tunes has deducted a problem with your audio configuration. Audio/Video playback may not operate properly" due to this problem each and every earphone am inserting goes unusable

    When I connect my I pod shuffle to USB it shows an error message - " I Tunes has deducted a problem with your audio configuration. Audio/Video playback may not operate properly" due to this problem whenever i connect  earphone each and every earphone gets un usable. Already made a factory reset. please arrange for a rectification.. :'(

    Hi Ganeshpandianm,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iTunes for Windows: iTunes cannot run because it detects an issue with QuickTime
    http://support.apple.com/kb/TS1371?viewlocale=en_US
    "iTunes cannot run because it has detected a problem with your audio configuration"
    Cheers,
    - Judy

  • TS4006 I have iPhone 4 with updated latest iOS And i am using FIND IPHONE application. But everytime when ever i login in it and serch for the device its shows but never give me the location"NO LOCATION AVAILABLE".It is already connected with WIFI but no

    I have iPhone 4 with updated latest iOS And i am using FIND IPHONE application. But everytime when ever i login in it and serch for the device its shows the device  but never give me the location"NO LOCATION AVAILABLE".It is already connected with WIFI and i tried all the stuffs that has been written in the manual. Plese give me the Proper suggetion about this issue..!!

    If your router is not identified in a national database (don't recall who maintains it or where it is) then there is no location associated with it.  Hence your device cannot be located.  I suggest you try your test at some public wifi spot, like a bookstore or coffee shop.  These places usually have a location associated with their wifi router.

  • When I ran the bootcamp assistance for software update I get an error that it can't download from the server

    Install Mac OS X lion fine without any issue
    I'm trying to dual boot Lion and Wind 7 on different HD but when I ran the bootcamp assistance for software update I get an error that it can't download from the server.
    I also try without downloading the software and do the installation but it fail. It seem that this bootcamp is giving problem so I revert back to SN leopard and it does the same. Why can't the bootcamp assistance update the software, is it something that I did wrong or my system is not supporting dual booting.
    Here is my spec
    Apple Mac Pro "Quad Core" 2.66
    Identifiers: Mac Pro - MA356LL/A - MacPro1,1* - A1186

    MacPro1,1 has EFI32 and does not support Windows 7 very well, can't boot 64-bit, can't use all your RAM.
    There have always been trouble and issues, ways around those, but a big PITA too.
    Select CD-ROM Boot
    Select CD-ROM Boot Error Apple
    Nothing to do with Lion actually. Other than downloading drivers from Apple servers has been mostly hit or miss, with miss being 90%.
    I have rebuned the DVD (make a new ISO image using Imgburn etc) but now I just install Windows on PC then move the drive to the Mac. A lot easier.
    Without 64-bit you can't use more than 1.9GB RAM. And you need Windows 7 Pro to use both processors.

  • My iphone 4 8gb is not updating or restoring to ios6.1.3 its shows sum error (21) or your iphone is not eligible for this build

    my iphone 4 8gb is not updating or restoring to ios6.1.3 its shows sum error (21) or your iphone is not eligible for this build

    Read this for error 21
    Error 20, 21, 23, 26, 28, 29, 34, 36, 37, 40
    These errors typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.

  • My itunes wont download the newest ipod software and when i try it will download for maybe an hour then say "error has occured, internet connection timed out"  now what do i do?

    My itunes wont download the newest ipod software and when i try it will download for maybe an hour then say "error has occured, internet connection timed out"  now what do i do?

    Disable your firewall/security software, then try again.

  • When I convert a pdf file to word format, it show the error "Save As failed to process this document

    Hi,
    I have just upgrade the creative cloud CC version and upgrade the acrobat pro to XI version.
    when I convert a pdf file to word format, it show the error "Save As failed to process this document. No file was created."
    Actually, I have delete the image, use other pdf file and download a sample pdf file to test it. Same error is shown. I have try all the other format , like the excel, rtf, text, powerpoint, still same thing happen.
    Please show me what else I can do to fix this problem.
    Thx.
    Alfred Li

    alfredadli wrote:
    Please show me what else I can do to fix this problem.
    Fisrt step would be to ask in the proper forum.
    http://forums.adobe.com/community/acrobat

  • Can't run itunes is asking for quicktime but keep getting an error message .

    can't run itunes is asking for quicktime but keep getting an error message the feature you are trying to use is on a networkresourse tha is unavailable  c:\docume~1\test\locals~1\temp\Ixp133.

    It keeps telling me to reinstall iTunes, but it continues to come back with the same error message.

  • Have just upgraded to version 4 and when I go to Goggle search for a website it shows me a list but will not open any.

    Have just upgraded to version 4 and when I go to Goggle search for a website it shows me a list but will not open any. If I use the bookmarks all of the websites open perfectly. I've closed Firefox down and opened again and a message says "how embarassing" and tells me to restore or start a new session. Have tried both but still will not let me open any websites on the google search page.

    . I did however, delete the majority of my photos off of iPhoto after I backed them up because I needed room in my library.
    exactly how did you delete these photos?
    LN

Maybe you are looking for

  • Can i install windows 7 64bit on my mac

    I have 16gb of Ram installed on my iMac and Windows 7 installed amd it is only using 2.23gb of it, and it is very anoying. I need to know if I can install 64 bit eddition Windows 7 on it before I go out and spend the money on it.

  • Moved files, now illustrator won't open

    Got a new and improved error message: Process:         Adobe Illustrator [333] Path:            /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator Identifier:      com.adobe.illustrator Version:         18.

  • How to get purchase order number from delivery number?

    hi all, how to get purchase order number and item if i have only delivery. and in same way how to get po number and item if i know only batch number. kindly give me some solution i need this urgently. thanks in advance.

  • Why Can't I export cs5 file to .idml for cs4?

    The link below is the final version of a project I'm working on along with an obscure font you need to install to view the file properly http://www.mediafire.com/?m9oumck6g13sovz I can't convert it to an .idml to open with cs4 for some reason. I had

  • *.FMX 6.0 in 9iAS

    Hi, Can I use runnable *.fmx generated with Developer 6.0 in the Oracle9iAS middle-tier with Forms Services? Initially those forms were produced for a client/server platform. Thanks in advance. P.S. I cannot find the answer in the http://otn.oracle.c