Regarding help to identify errors in 10g xe

Hi,
plz help , how to identify the error code in sql command line (like ORA-04030).

Hi,
This might help
http://download.oracle.com/docs/cd/B25329_01/doc/admin.102/b25107/memory.htm#BGBFCHGI
Regards,
Jari

Similar Messages

  • NEED HELP STRUCTURING A SUBSELECT - INVALIS IDENTIFIER ERROR

    This is my 1st post to this PL/SQL forum. I've used TSQL up to now; first job with PL/SQL and Oracle DB. I'm getting a "INVALID IDENTIFIER" error on the ORDER BY line (next to last line in code) in the following code. I haven't doen a lot of subselects and none with grouping. All I'm trying to do is get a count of states my customers are in... Any ideas what might be causing the problem, or a better way to structure this? (I tried the subselect in the SELECT statement as well with no luck there either)
    -- count and list All states by state zipcode resolution
    SELECT st.state, COUNT(*) AS count_by_state
    FROM ADM.USR u
    INNER JOIN
    SELECT
    CASE
    WHEN zipcode BETWEEN 99501 AND 99950 THEN 'AK' -- Alaska
    WHEN zipcode BETWEEN 35004 AND 36925 THEN 'AL' -- Alabama
    WHEN zipcode BETWEEN 71601 AND 72959 THEN 'AR' -- Arkansas
    WHEN zipcode BETWEEN 75502 AND 75502 THEN 'AR' -- Arkansas( Texarkana)
    WHEN zipcode BETWEEN 85001 AND 86556 THEN 'AZ' -- Arizona
    WHEN zipcode BETWEEN 82001 AND 83128 THEN 'WY' -- Wyoming
    ELSE NULL
    END AS state
    FROM CUST.USR_PRFL
    ORDER BY state) st ON u.usr_id = st.usr_id
    GROUP BY st.state;
    Edited by: 927929 on Apr 16, 2012 7:05 AM
    Edited by: 927929 on Apr 16, 2012 7:07 AM

    try
    SELECT st.state, COUNT(*) AS count_by_state
    FROM ADM.USR u
    INNER JOIN CUST.USR_PRFL up ON u.usr_id = up.usr_id
    INNER JOIN
    SELECT
    CASE
    WHEN zipcode BETWEEN 99501 AND 99950 THEN 'AK' -- Alaska
    WHEN zipcode BETWEEN 35004 AND 36925 THEN 'AL' -- Alabama
    WHEN zipcode BETWEEN 71601 AND 72959 THEN 'AR' -- Arkansas
    WHEN zipcode BETWEEN 75502 AND 75502 THEN 'AR' -- Arkansas( Texarkana)
    WHEN zipcode BETWEEN 85001 AND 86556 THEN 'AZ' -- Arizona
    WHEN zipcode BETWEEN 82001 AND 83128 THEN 'WY' -- Wyoming
    ELSE NULL
    END AS state
    FROM CUST.USR_PRFL
    --ORDER BY state
    ) st
    -- any relation beetwen? like "ON u.usr_id = up.usr_id" above
    GROUP BY st.state
    ORDER BY state;

  • Invalid State Identifier Error

    Hi All,
    I have implemented breadcrumb by using "a href="javascript:history.back()". The naviagtion is upto 5 repots and hence the breadcrumb will have 5 links. The issue is sometimes i get "Invalid State identifier" error with some random number when i click on any link in the breadcrumb.
    Unable to trace the root cause of this issue. Please provide your thoughts.
    Regards,
    Swati

    Thanks!!! Do you have any idea about Invalid state error? I have tried inserting the following as suggested by Oracle but doesnt help much.
    <StatePool>
    <MemoryExpireMinutes> 1440 </MemoryExpireMinutes>
    <DiskCleanupIntervalMinutes> 1440 </DiskCleanupIntervalMinutes>
    </StatePool>
    Regards,
    Swati

  • BDC -  How we can identify errors in Transaction method?.

    Hi ,
    How we can identify errors in Transaction method?.
    Regards
    Nikhil V Kumar

    HI
    CALL TRANSACTION 'FK01' USING IT_BDCDATA MODE 'A'
                            UPDATE 'S'
                            MESSAGES INTO IT_MESSAGES.
    IF SY-SUBRC <> 0.
    PERFORM FORMAT_MESSAGES.
    form FORMAT_MESSAGES .
    DATA: L_MSG(100).
    LOOP AT IT_MESSAGES.
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
       ID              = IT_MESSAGES-MSGID
       LANG            = SY-LANGU
       NO              = IT_MESSAGES-MSGNR
       V1              = IT_MESSAGES-MSGV1
       V2              = IT_MESSAGES-MSGV2
       V3              = IT_MESSAGES-MSGV3
       V4              = IT_MESSAGES-MSGV4
    IMPORTING
       MSG             = L_MSG
    EXCEPTIONS
       NOT_FOUND       = 1
       OTHERS          = 2
    write:/ l_msg.
      endloop.
    endform.                    " FORMAT_MESSAGES
    HOPE THIS HELPS,
    PRIYA.

  • 2 errors in 10g agent

    Hope somebody can help :-)
    Have one server with grid control installed 10g. Another server with rdbms 10g and in a seperate dirictory the 10g agent. Both sites are starting up, but in the agent trace file I can see following errors:
    a) 2004-02-18 14:58:21 Thread-5931014 WARN upload: FxferSend: received http error in header from repository: http://myHost:4889/em/upload/
    ERROR-400|ORA-01882: timezone region not found
    I changed the timezone in emd.properties to CET (on both servers), but error still occurs
    b) 2004-02-18 15:00:48 Thread-6160390 ERROR fetchlets.oslinetok: Process stderr = ORA-01017: invalid username/password; logon denied (DBD ERROR: OCISessionBegin)
    I asume that he want to login to the local db on the agent server, question with which user (sysman or dbsnmp) ? and where to set the password (if not correct) in the agent config files.
    regards, Olaf

    With try and error I solved the second problen (username password) also :-)
    I found the targets.xml file and edited the tags UserName and password which contains encrypted values and set this values to dbsnmp and his password the attributes ENCRYPTED I set to FALSE. restarted the agent and the agent worked fine (he could login to the db) what he also did was to encrypt username and password in the targets.xml and set the attribute back to TRUE, so everything is fine and I can go home :-)
    Regards, Olaf

  • Dynamic SQL Issue ORA-00904:invalid identifier error

    Here is my SP
    create or replace procedure srini_ref_cursor_test(p_county_code IN VARCHAR2,
    p_ref_cur out PK_FR_TYPES.cursor_type) is
    query_str varchar2(5000);
    begin
    query_str := 'SELECT * FROM dw_county where county_name = :P ';
    open p_ref_cur for query_str USING p_county_code;
    insert into srini_query_str_test values (query_str);
    commit;
    end srini_ref_cursor_test;
    When I pass the p_county_code = Adams working find.
    create or replace procedure srini_ref_cursor_test(p_county_code IN VARCHAR2,
    p_ref_cur out PK_FR_TYPES.cursor_type) is
    query_str varchar2(5000);
    begin
    query_str := 'SELECT * FROM dw_county where county_name in ('||p_county_code||')';
    open p_ref_cur for query_str;
    insert into srini_query_str_test values (query_str);
    commit;
    end srini_ref_cursor_test;
    When I pass the p_county_code = Adams for above SP I got the following error
    ORA-00904: "ADAMS": invalid identifier error
    With out Bind variables how Can I pass the Char type values in Dynamic SQL ?
    I would like to pass multipule values to p_county_code like 'Adams','Ashley' etc
    How Can I do this ?
    Thank for great help.
    Srini

    How do I write the Dynamic SQL for
    SELECT * FROM DW_COUNTY WHERE COUNTY_NAME LIKE 'Ad%'
    The usual way...
    hr@ORA10G>
    hr@ORA10G> var str varchar2(1000);
    hr@ORA10G> var cr refcursor;
    hr@ORA10G>
    hr@ORA10G> exec :str := 'select * from employees where first_name like ''A%''';
    PL/SQL procedure successfully completed.
    hr@ORA10G> -- note the escape character for each single quote
    hr@ORA10G> print str
    STR
    select * from employees where first_name like 'A%'
    hr@ORA10G>
    hr@ORA10G> exec open :cr for :str;
    PL/SQL procedure successfully completed.
    hr@ORA10G> print cr
    EMPLOYEE_ID FIRST_NAME           LAST_NAME                 EMAIL                     PHONE_NUMBER      HIRE_DATE JOB_ID    SALARY COMMISSION_PCT MANAGER_ID DEPARTMENT_ID
            103 Alexander            Hunold                    AHUNOLD                   590.423.4567         03-JAN-90 IT_PROG          9000                       102            60
            115 Alexander            Khoo                      AKHOO                     515.127.4562         18-MAY-95 PU_CLERK         3100                       114            30
            121 Adam                 Fripp                     AFRIPP                    650.123.2234         10-APR-97 ST_MAN           8200                       100            50
            147 Alberto              Errazuriz                 AERRAZUR                  011.44.1344.429278   10-MAR-97 SA_MAN          12000             .3        100            80
            158 Allan                McEwen                    AMCEWEN                   011.44.1345.829268   01-AUG-96 SA_REP           9000            .35        146            80
            167 Amit                 Banda                     ABANDA                    011.44.1346.729268   21-APR-00 SA_REP           6200             .1        147            80
            175 Alyssa               Hutton                    AHUTTON                   011.44.1644.429266   19-MAR-97 SA_REP           8800            .25        149            80
            185 Alexis               Bull                      ABULL                     650.509.2876         20-FEB-97 SH_CLERK         4100                       121            50
            187 Anthony              Cabrio                    ACABRIO                   650.509.4876         07-FEB-99 SH_CLERK         3000                       121            50
            196 Alana                Walsh                     AWALSH                    650.507.9811         24-APR-98 SH_CLERK         3100                       124            50
    10 rows selected.
    hr@ORA10G>
    hr@ORA10G>pratz

  • Cant sign in any help i get error message.?

    cant anyone help solve the error mesdsage what i get in app store it wont le me sign in help me please ?

    Disable anti virus software if installed
    Make sure the firewall is turned off in System Preferences > Security & Privacy > Firewall
    Make sure Gatekeeper is enabled
    Open System Preferences > Security & Privacy then select the General tab.
    Make sure either Mac App Store or Mac App Store and identified developers is selected. If that area is grayed out, click the padlock icon to proceed.
    OS X: About Gatekeeper

  • Need help in identifying fields of sd report creation

    Hi Experts,
    I need to create report in sd from manual report .The fileds in report are taken from Quickbooks.so inorder to create report in sap I need to identify fields  in sap first.we dont had functional guy so i need help in identifying fields in sap for below mentioned report.
    Report: invoice distribution report-service billing for all states.
    Fields:customer number,customer name,city state,SAP Document number,Invoice date,period(month,year)invoice number,invoice type,currency,invoice amount in usd.
    Please help me in suggesting tcodes or table names from where i can fetch these fields.
    Thanking you in advance.
    Regards,
    narasimha.

    Hi Experts,
    Finally with all above suggestions i have chosen tables vbrk(billing document header data),kna1(customer header),vbrp.
    1.I created view to find the output of report with conditions as follows:
    tables:vbrk,kna1,vbrp
    vbrk-vbeln(invoice number)
    vbrk-fkart(invoice type)
    vbrk-fkdat(invoice date)
    vbrk-waerk(currency)
    vbrk-netwr(netvalue)
    vbrk-kunag(customer number)
    kna1-name1(customer name)
    kna1-ort01(customer city)
    kna1-regio(customer state)
    join condition:
    kna1-mandt=vbrk-mandt
    kna1-kunnr=vbrk-kunag.
    when i execute the report i am getting same value for lot of times.
    i am confused how to include sales document number.I hope sales document number and invoice are different.
    2.i have also added vbrp-aubel and join condition as
    vbrk-mandt = vbrp-mandt
    vbrk-vbeln = vbrp-vbeln.
    but when i execute the report i am getting lot of duplicated with same value and unknown invoice numbers.
    please let me know where i went wrong.
    is  there any standard adhoc report so that i can manipulate it with above requirement.
    vf05n is somewhat useful .is it possible to add  customer details in this??
    Thanks&Regards,
    narasimha.

  • New Repository variable failing with 'Unresolved Identifier' error

    Hi,
    I created a new repository variable and when used in the Segments/Reports it is failing with 'Unresolved Identifier' error. This is happening intermittently and sometimes it is getting the results as expected, Can you please let me know where I am wrong?
    Thanks,
    Viswanath K M

    Couple things to check here are :
    1) Make sure you have spelled the variable name correct.
    2) Make sure you are using the repository variables with appropriate data type columns.
    Regards,
    -Amith.

  • Not-identified error when trying to make a connection in CS4

    Hello;
    When I try to make a Db connection to mysql in DW CS4,using connections,the +-button and fill in the pop up,I am getting the following message:
    "a not-identified error has occurred".
    The database name,password and all the other information is ok.So I really do not know what is happening.
    Is there someone there who has an answer for this problem??
    many thanks for the help!

    Igorbuitendijk wrote:
    The testing serverfolder is:http://www.checksite.eu:2222/public_htmlThe URL prefix is:http://www.checksite.eu:2222/public_html
    When I leave out the 2222,Dreamweaver can't make a connection to the server.
    I don't know about the use of port 2222, but your testing server definition is completely wrong.
    The testing server folder must be a physical path, not a URL. And the URL prefix must be a valid URL. public_html is the name of the web server's document root, it should never be part of a URL.
    Judging from the details you have given here, you are using your remote server for testing. In the Testing server section of the site definition, set Access to FTP. The value of Host directory should be what your hosting company tells you to use when logging in. For some hosting companies, you use public_html on its own. Other companies tell you to leave the value blank or to use just /.
    The URL prefix is just the URL for the site.

  • Why do I get a "DATE1 : ORA-00904 Invalid identifier" error ?

    Hi,
    Despite my efforts, I can't see why I get a "DATE1 : ORA-00904 Invalid identifier' error whith this request.
    {code}With S1 as (
    SELECT TRUNC(DATE1, 'MM'),
    ROUND(SUM(VALEUR), 2)
    FROM EVV_E036
    GROUP BY TRUNC(DATE1, 'MM')
    ORDER BY TRUNC(DATE1, 'MM'))
    SELECT n,
    NVL(ROUND(SUM(Valeur),2), 0)
    FROM (select add_months(to_date('01/01/2006', 'dd/mm/yyyy'), level - 1) n FROM dual connect by level <= 12) months
    LEFT JOIN S1
    ON months.n = TRUNC(DATE1, 'MM')
    GROUP BY n
    ORDER BY n{code}
    The line in error is this one : {code}ON months.n = TRUNC(DATE1, 'MM'){code}
    Any idea much appreciated !
    Regards,
    Christian

    hi,
    I have done this and get no more errors. Now I see that the values I get are equal to 0. Or, I do get values different from 0 in my table ! I can't see why the left join gives 0. I have to dig this and come back tomorrow.
    With S1 as (
    SELECT TRUNC(DATE1, 'MM') Date1,
           ROUND(SUM(VALEUR), 2) Debit
    FROM   EVV_E036
    WHERE  CLEF_VAR = (SELECT CLEF_VAR FROM SITE_ECHELLE WHERE SITE = 'E036')
    AND    DATE1 BETWEEN TO_DATE ('01/01/2007000000', 'DD/MM/YYYYHH24MISS') AND TO_DATE ('31/12/2007235959', 'DD/MM/YYYYHH24MISS')
    GROUP  BY TRUNC(DATE1, 'MM')
    ORDER  BY TRUNC(DATE1, 'MM'))
    SELECT n,
           NVL(ROUND(SUM(Debit),2), 0)
    FROM   (select add_months(to_date('01/01/2006', 'dd/mm/yyyy'), level - 1) n FROM dual connect by level <= 12) months
    LEFT JOIN S1
         ON months.n = date1
    GROUP BY n
    ORDER BY n

  • Can anybody help its urgent error :RPE-02018

    Can any body help me inthis error, actually i was executing the mappig on regular basis but today i found this error
    " RPE-02018: Oracle Workflow schema OWF_MGR on host ZAINBIDB cannot be accessed using service BIPROD through port 1521. Please check the location details and try again."
    Followed by :
    "Io exception: Got minus one from a read call."

    Hi, we have found this error when configuration parameters in database where not correct. Each time a process flow with a lot of process in parallel was executed, a process failed.
    I can't remember the exact parameter to change to correct this error (we had some other errors due to configuration parameters) but I think it was by changing the optimizer_mode to FIRST_ROWS. Ask your DBA to take a look to DB parameters and look for the error message in metalink, I think there's an entry for this error.
    Regards
    ANA GH

  • Officejet 6500 (e709a) MFP service manual or help with General Error

    Hi. I have an Officejet 6500 (e709a) that I am having some problems with.  It started with a paper jam/carriage jam message and then became a "General Error 0x61011beb".  The carrier holding the ink cartridges was indeed stuck on the right side, so I followed a video showing how to open the unit.  When I did I discovered a small plastic piece with a couple of gears had fallen off.  The piece has different numbers on each side of it so I am not sure which numbers might be helpful in identifying it.  I am not sure exactly how to put it back on so I am hoping there is a service manual for this printer or maybe even just some kind of general technical reference that has assembly diagrams?  (I know this is a longshot but my local service center charges $50 just to diagnose the problem.  I only paid slightly over $100 and I could get another for that same price so I'd rather save that $50 to use buying a new one if I can't fix this myself.) If it would help I could attach some pictures of the piece in question. Thanks in advance. Jim 

    The utility is of no utility when the printer is perpetually taking itself OFFLINE. No printer is detected. I power it down with the switch, unplug the power supply for anywhere from 20 seconds to 20 minutes, plug it back in, power it back up and my stalled print job may or may not print the last page of a two-page document (first one to print in my selected print order). If it gets to the first page, only part prints then the printer sits there doing nothing. After a long time, it spits out the front page. Usually it won't even get halfway down the page.
    In the meantime, the HPHNDU.exe utility cannot even find the printer, regardless of when I press the "refresh printer list" button.
    The software/device is broken. Didn't even get two years out of it.

  • Help me fix error : cisco aironet 1200

    plz help me fix error:

    are we able t oaccess the AP using console access?? if yes, try assigning the ip address to the BVI interface..
    conf t
    int bvi 1
    ip address
    no shut
    try accessing the AP using browser and see if we could access the GUI..
    If the radio interfaces doesnt come up then.. we are hitting the below bug..
    the AP is hitting the software bug.. to resolve the issue we need to..
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCsc79121
    1-       to upgrade to version 12.3(8)JEA
    2-       or to downgrade to version 12.3(7)JA2
    Upgrade process
    ===============
    >> Get the console access to the AP and then connect the ethernet cable between the AP and the laptop.
    >> Both the AP and the laptop should be in the same subnet..
    >> Donwload the latest image from cisco.com and point the image in the TFTPd32 server
    >> in the console access, issue the command.
    archive download-sw /force-reload /overwrite tftp:///
    Example..
    AP# archive download-sw /overwrite /force-reload tftp://10.X.X.X/c1200-k9w7-tar.123-7.JA1.tar
    if the above is not clear.. then i request you to open up a TAC case..
    Regards
    Surendra

  • TS1368 I cannot sync my iTunes library to my iphone 5 can you help I get error message connection could not be established to iPhone

    I cannot sync my iTunes library to my iphone5 can you help I get error message a connection could not be established to the iPhone

    Yes it is.
    Initially I got an error message saying can't connect because of Date & Time settings.
    Went in and re-verified that those were correct.
    Tried to update downloads and then got a new error message: "Can't connect to iTunes Store".
    I live in the US and that's where I created my iTunes a/d and Apple ID.
    I am currently in India --- can that coause confusion re date & time?

Maybe you are looking for

  • Cancelled Dunning Report

    Hi Friends, Is there any standard tcode to display all Cancelled dunnings. Something like to see the list of all cancelled dunnings between 01.08.2014 till 15.08.2014 and not w.r.t to Dunning Run. OR Someone needs to write an ABAP program by hitting

  • Help in Mapping: User defined function

    Hi All, I need your help in doing the following mapping: The source contains the below fields: Source_MT -- Under this          1...1    LineItem                                 1...Unbounded      CompanyCode          1..1      Amount               1

  • RMI Help

    Hi, Can any one help me in this problem ? I'm getting the following error When the server responses to the client call. java.rmi.UnmarshalException! error unmarshalling return; nested Exception is java.io.StreamCorruptedException at sun.rmi.Server.Un

  • Time Stamp on MAXL Export File

    I use MAXL to export data from our Essbase cube. Is there a way to add a time stamp to the filename?

  • Hello, it says:' no service'  in the upper left corner?

    Hello, Why does it show 'no service'  next to the wi-fi symbol, even when I am at home?   I have Comcast Internet. Sometimes Safari will display the website that I am looking for, but I am not able to open them. I appreciate your support. Thanks