DB13 - 'Analayze Tables' job gets errors

How do I fix the following errors when running the DB13 job Analyze Statistics:
BR0301E SQL error -1 at location stats_tab_collect-20                
ORA-00001: unique constraint (SAPR3.DBSTATTORA0) violated            
BR0886E Checking/collecting statistics failed for table SAPR3.GLPCT  
Oracle 9.2.0.7
Kernel release 46D
OS: HP Tru64
Thanks in advance.

Hi,
Do the following:
SVRMGR> connect internal
SVRMGR> delete from sapr3.dbstattora;
SVRMGR> commit
After executing the above commands , re-run that DB Statistic Job from DB13. The contents of the table dbstattora will be created again.
Please refer SAP Note 421697 and 458872 to get more detailed information.
Regards,
Bhavik G. Shroff

Similar Messages

  • EMIGALL Distributed Schedule Job - Getting Error

    Currently I Placed migration formatted file and try to execute the "distributed
    import" i am getting error,"Object in import-file header does not
    correspond to the migration object". Same file i am able to execute
    thru REMIG_SPLIT_SUBMIT report successfully. I am having issues in
    Schudule job also. Is there any OSS note i need to apply.

    Srini,
    - The header information in the import file (1st data record) does not fit to the name of the selected migration company and migration object.
    - The REMIG_SPLIT_SUBMIT report works in a generic way and ignores the infomraiton in the header record.
    Kind regards,
    Fritz

  • Trying to add a Table and getting Error

    I have another table that I need to add to my report that houses a field description in a user defined field. The table is :
    Select * from User_defined_valdt_codes
    where VALIDATED_TABLE_NAME = 'auth_master'
    and VALIDATED_COLUMN_NAME = 'service_user_defined_1'
    I am trying to add that field to my query but it is not working. What am I doing wrong. I updated my query and it doesn't Error Out but it doesn't return any data either. If the new table information is not there I get data back and I can pull the the data in the user_defined_valdt_codes table as well what am I doing wrong? Any help is truly appreciated!
    Thanks!
    SELECT
    A1.auth_number,
    A1.AUTH_TYPE,
    A1.seq_memb_id,
    A1.AUTH_TYPE,
    a1.review_type,
    A1.plan_code,
    A1.OVERALL_STATUS,
              A1.CLOSED_REASON,
    UVD.validated_column_name,
    A1.DENIED_REASON,
    Case
    when A1.DENIED_REASON in ('HS001','HS002','HS003') then 'MED NECESS'
    when A1.DENIED_REASON in ('HS004','HS005','HS006','HS007','HS008','HS013','HS014','HS016','HS017','HS019','HS020') then 'Admin Denial'
    when A1.DENIED_REASON is NUll and ap.advisor_decision = 'AAPPR' then 'Approved'
    else 'Unknown'
    end DENIED,
    To_Char(a1.admit_primary_date,'mm/dd/yy') As "Prim_Admit_Date",
    A1.service_admit_type AS "IP ADMIT TYPE",
    A1.service_user_defined_1 AS "OP Serv Type",
    To_Char (AP.contact_date,'mm/dd/yy') As "Contact_Date",
         To_Char (AP.decision_date,'mm/dd/yy') As "Decision_Date",
    ap.recommendation_code,
    A1.PLACE_OF_SERVICE,      
         AP.ADVISOR_DECISION,
    PM.LAST_NAME,
    TO_CHAR (A1.insert_datetime,'MONTH-YY')AS "Month",
         MV.LINE_OF_BUSINESS
    FROM Windsoradm.auth_master a1
    INNER JOIN Windsoradm.auth_phys_advisor ap
    ON a1.auth_number=ap.auth_number
    INNER JOIN windsoradm.prov_master pm
    ON ap.seq_prov_id=pm.seq_prov_id
    LEFT JOIN windsoradm.note_master nm
    ON nm.seq_memb_id=a1.seq_memb_id
    AND NM.NOTE_TYPE='PHA'
    INNER JOIN windsoradm.member_mv mv
    ON mv.seq_memb_id=a1.seq_memb_id
    INNER JOIN windsoradm.user_defined_valdt_codes UVD
    ON A1.service_user_defined_1=UVD.VALIDATED_COLUMN_NAME
    Where mv.Line_of_Business <>'SFS'
    AND UVD.VALIDATED_TABLE_NAME = 'auth_master'
    and UVD.VALIDATED_COLUMN_NAME = 'service_user_defined_1'
    /*AND A1.PLACE_OF_SERVICE IN ('11','21','22','24')*/
    /*AND a1.active_physician_advisor = 'Y'*/
    /*AND (a1.closed_reason ='A06' OR a1.closed_reason is Null)*/
    /*AND A1.AUTH_NUMBER='415712'*/
    AND a1.insert_datetime Between To_Date ('04/01/2012', 'MM/DD/YYYY') and To_Date ('04/30/2012','MM/DD/YYYY')
    ORDER BY 1
    Edited by: 925518 on Jun 4, 2012 9:25 AM

    I got it to work this way I was putting in a wrong field that was not returning data now it works. Yay!!!!!
    SELECT
    A1.auth_number,
    A1.AUTH_TYPE,
    A1.seq_memb_id,
         A1.AUTH_TYPE,
    a1.review_type,
    A1.plan_code,
    A1.OVERALL_STATUS,
              A1.CLOSED_REASON,
    A1.DENIED_REASON,
    Case
    when A1.DENIED_REASON in ('HS001','HS002','HS003') then 'MED NECESS'
    when A1.DENIED_REASON in ('HS004','HS005','HS006','HS007','HS008','HS013','HS014','HS016','HS017','HS019','HS020') then 'Admin Denial'
    when A1.DENIED_REASON is NUll and ap.advisor_decision = 'AAPPR' then 'Approved'
    else 'Unknown'
    end DENIED,
    To_Char(a1.admit_primary_date,'mm/dd/yy') As "Prim_Admit_Date",
    A1.service_admit_type AS "IP ADMIT TYPE",
    A1.service_user_defined_1 AS "OP Serv Type",
    UVD.user_valid_code_long_desc as "OP_Type_Desc",
    To_Char (AP.contact_date,'mm/dd/yy') As "Contact_Date",
         To_Char (AP.decision_date,'mm/dd/yy') As "Decision_Date",
    ap.recommendation_code,
    A1.PLACE_OF_SERVICE,      
         AP.ADVISOR_DECISION,
    PM.LAST_NAME,
    TO_CHAR (A1.insert_datetime,'MONTH-YY')AS "Month",
         MV.LINE_OF_BUSINESS
    FROM Windsoradm.auth_master a1
    INNER JOIN Windsoradm.auth_phys_advisor ap
    ON a1.auth_number=ap.auth_number
    INNER JOIN windsoradm.prov_master pm
    ON ap.seq_prov_id=pm.seq_prov_id
    LEFT JOIN windsoradm.note_master nm
    ON nm.seq_memb_id=a1.seq_memb_id
    AND NM.NOTE_TYPE='PHA'
    INNER JOIN windsoradm.member_mv mv
    ON mv.seq_memb_id=a1.seq_memb_id
    INNER JOIN windsoradm.user_defined_valdt_codes UVD
    ON A1.service_user_defined_1=UVD.user_valid_code
    AND UVD.VALIDATED_TABLE_NAME = 'auth_master'
    AND UVD.VALIDATED_COLUMN_NAME = 'service_user_defined_1'
    Where mv.Line_of_Business <>'SFS'
    /*AND A1.PLACE_OF_SERVICE IN ('11','21','22','24')*/
    /*AND a1.active_physician_advisor = 'Y'*/
    /*AND (a1.closed_reason ='A06' OR a1.closed_reason is Null)*/
    /*AND A1.AUTH_NUMBER='415712'*/
    AND a1.insert_datetime Between To_Date ('04/01/2012', 'MM/DD/YYYY') and To_Date ('04/30/2012','MM/DD/YYYY')
    ORDER BY 1

  • In archiving job getting error: F5210 period version is not defined

    Hi All,
    When trying to execute T-code SARA using object FI_documnt, I encounter an error message :F5210 period version is not defined. Checked tables T070(document type life), table T071 (account type life) and found that they are properly maintained.
    What should I do next? Please advice.
    Regards
    kapil Kukreja

    Hi Kapil,
    I could not sure what input parameters you have entered. You are recommended to not enter a company code, because if yes, the archiving program has to determine the current fiscal year for all company codes defined in your customizing. This is necessary, as the summary records can not
    be archived for the current and the last year.
    Please review note SAP note 141322.
    Regards, Gordon

  • Backgroun job, getting error message

    Hello ,
    I am trying to run a report in background. In one server it is working fine, but in another server it is giving me error
    "450 columns too great for format X_65_255"
    line-size of report is 450. It is working fine in one 4.6c server but not in another 4.6c server.
    Please advice.
    regards

    i am already in SPAD, but .....
    can't see where to look for and create these formats
    regards
    well i got it thanks everyone.
    I want to close this thread and reward point, but can't see radiobutton on left side, don't know why
    Message was edited by: Surpreet Singh Bal

  • Table for COFC error messages

    Hi,
    There are 1000+ orders are in error when we check thru COFC . As it's a tedious job to check error message for each error record, Is there any table to get error text messages for all error records?
    Thanks in advance
    Murali

    Hi,
    what you see in COFC is nothing else than the AFRC.table entries. Nevertheless the message itself is not stored in AFRC itself.
    Process COFC-records by marking all of them and tick "save", the ones that can be posted nor are posted only the "real" errors remain.
    You can schedule a job running CORUPROC report, to do this automatically.
    Best regrads, Christian

  • Getting error message while updating Job attributes using PP03 for IT1641

    Hey Guys,
    We are getting error message while updating Job attributes using transaction PP03 for IT1641 (WC Attributes for JOB): 'Client has status not modifiable'.
    Update to the infotype 1641 should not require open SAP system. Would anyone suggest any SAP note/solution?
    Thanks...
    Edited by: Karan Gheewala on Apr 3, 2008 9:06 PM

    Solved using Note 123383 - WC: Customizing worker's compensation tables
    Thanks,..

  • Getting error "SQL error in the database when accessing a table."

    Hi All,
    We are getting Dump Error SQL error in the database when accessing a table for the batch job EISSD/REQUISITION 14 / which includes program AQ20FD==========A2============. Please reply. The Dump error details are as follows
    Short text
        SQL error in the database when accessing a table.
    How to correct the error
        Database error text........: "ORA-01555: snapshot too old: rollback segment
         number 21 with name "_SYSSMU21$" too small"
        Internal call code.........: "[RSQL/FTCH/VBRK ]"
        Please check the entries in the system log (Transaction SM21).
    Thanks
    Padmakar Kudtarkar
    Edited by: Rob Burbank on May 19, 2011 9:38 AM

    The query where we are getting error in Standard program AQ20FD==========A2============ for Job
    EISSD/REQUISITION 14 / is as follows:
    select VBRKBUKRS VBRKFKART VBRKFKDAT VBRKFKTYP VBRKGJAHR VBRKKUNAG VBRKKUNRG VBRKKURRF VBRKVBELN VBRKWAERK VBRP~AUBEL
           VBRPAUPOS VBRPFKIMG VBRPKVGR2 VBRPKZWI1 VBRPMATNR VBRPMWSBP VBRPNETWR VBRPPSTYV VBRPVBELN VBRPVGBEL VBRP~VGPOS
           VBRPVKBUR VBRPVKGRP VBRPVRKME VBRPWAVWR
    into (VBRK-BUKRS , VBRK-FKART , VBRK-FKDAT , VBRK-FKTYP , VBRK-GJAHR , VBRK-KUNAG , VBRK-KUNRG , VBRK-KURRF , VBRK-VBELN
         , VBRK-WAERK , VBRP-AUBEL , VBRP-AUPOS , VBRP-FKIMG , VBRP-KVGR2 , VBRP-KZWI1 , VBRP-MATNR , VBRP-MWSBP , VBRP-NETWR
         , VBRP-PSTYV , VBRP-VBELN , VBRP-VGBEL , VBRP-VGPOS , VBRP-VKBUR , VBRP-VKGRP , VBRP-VRKME , VBRP-WAVWR )
    from ( VBRK
           inner join VBRP
           on VBRPVBELN = VBRKVBELN )
           where VBRK~BUKRS in SP$00004
             and VBRK~FKDAT in SP$00001
             and VBRK~KUNAG in SP$00002
             and VBRK~VBELN in SP$00006
             and VBRP~MATNR in SP$00003.
      %dbacc = %dbacc - 1.
      if %dbacc = 0.
        stop.
      endif.
      check SP$00004.
      check SP$00001.
      check SP$00002.
      check SP$00006.
      check SP$00003.
      add 1 to %count-VBRK.
      %linr-VBRK = '01'.
      extract %fg01.
      %ext-VBRP01 = 'X'.
        extract %fgwrVBRP01.
    endselect.

  • Getting error while trying to execute a external job using dbms_scheduler

    Hello,
    I create a job using alpha account.
    begin
    dbms_scheduler.create_job(
    job_name => 'jps_test_executable',
    job_type => 'EXECUTABLE',
    job_action => '/usr/bin/ksh',
    number_of_arguments => 2
    dbms_scheduler.set_job_argument_value (
    job_name => 'jps_test_executable',
    argument_position => 1,
    argument_value => '/tmp/abc.sh'
    and when I execute the job in the schema using alpha account it works fine.
    BEGIN
    DBMS_SCHEDULER.run_job (job_name => 'jps_test_executable',
    use_current_session => FALSE);
    END;
    Works fine.
    But if I try to execute the same job using some other account say beta in the same schema , I am getting error
    ORA-27476 :”SMS.RUN_SMS_JOBS Does not exist ORA-06512 at “SYS.DBMS_ISCHED” line 2793 ORA-06512 :at “SYS.DBMS_SCHEDULER”,line 1794
    even I give the fill qualifier, still I am getting the error.
    BEGIN
    DBMS_SCHEDULER.run_job (job_name => 'alpha.jps_test_executable',
    use_current_session => FALSE);
    END;
    Any help will be appreciated.
    Thank you,
    Raj

    It's the expected behavior:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sched.htm#CIHHBGGI
    RUN_JOB requires that you be the owner of the job or have ALTER privileges on that job. You can also run a job if you have the CREATE ANY JOB privilege.So, you need to grant the required privilege:
    aplha@orcl> grant alter on alpha.jps_test_executable to beta;HTH
    Enrique
    PS If your problem was solved consider marking the question as answered.

  • Getting error "Codepage could not be determined" in background job

    <i>Hello Friends,
                  I am running a background job with a variant and the job get cancelled with the following error message.
    Codepage could not be determined
    Message no. FES025
    Please give your valuable comments.
    Thanks,
    Senthil</i>

    Hi,
      Check the oss note 765763(Setting the upload/download codepage for a SAPGUI connection) released for this purpose, as per the documentation of this note, you need to modify the standard program LSFESF03 in order to get rid of this error,
      Also check the note 882961(File download: codepage conversion error FES024)
    Hope this helps,
    Rgds,

  • Batch Job for ME59N getting error SE133 - Net value could not be determined

    HI,
    We can convert the PO automatically when run manually tcode ME59N  successfully.
    But when We schedule a batch job to run ME59N (RM06BB30) to create AUTO Purchase order for services item Purchase requistion.
    Getting error message SE133 "Net value could not be determined".  PO canot be converted automatically.

    Hi,
    Price/ Net value not picking!
    Check  info record  based on  Material Group for your service PR which need to be converted to PO.
    Also check activation of  Automatic Purchase order creation for Service requisitions in t.code: ML91.
    Check vendor master , schema group of vendor and check MM pricing procedure, the availability of condition type for service master for service PO.
    For more please read note 635511
    Regards,
    Biju K

  • While posting f-53 i getting error missing table T043G

    Hi
    while posting F-53  i getting error "company code" is Missing table T043G.
    What can i do for this..  can u advise this.
    Thank u
    anil

    hi anil,
    you are not given the tolerance group for customers/vendors, give the tolerance group for the same and try it.
    also give the gl tolerance,
    try t.codes oba0, oba3
    pls award points.
    Raghav

  • Table Maintainance Generated but getting error when running SM30

    Hi Experts,
    I am modifying existing ZTable with around 31 fields and Maintainance was not allowed before also no Table maintainance was there. Now i have changed the attributes to allow maintainance and tried creating Table Maintainance generator.
    The TMG get created sucessfully but get error message when running SM30 for the Ztable with Run time error saying Coversion Error .
    Error Analysis says :
    Program SAPLZNMSLG attempted to display the fields of screen 0005 and error occured during the coversion of this data.
    Can any one let me know what happened? Expecting replies at the earliest.
    Thanks
    Smita

    Hi,
    In Text I/O Template Tab each field name will be there with Column- Name, Type  and Text Or I/O Field
    Go to Text OR I/O Field (Fields Wherever u have negative value).
    Name                     Type         Text Or I/O Field
    vbak-menge         I/O                _.___.___.___,____V
    Just add existing blank field ending with V.
    Regards,
    Nandha

  • Getting error when inserting Web API/Table Inteface class in Web Template !

    Hi Experts,
    I am getting error -- Invalid Renderer class: '&1' ZTEST_BWREPORT_ADI
    while inserting the <param name="ITEM_CLASS" value="ZTEST_BWREPORT_ADI"/> in HTML code of the template, having one table web item, before  <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/> statement to get the customization I have done in ZTEST_BWREPORT_ADI as per table interface.
    Please look into the issue and try to suggest the possible solutions as soon as possible.
    Regards,
    Aditya Srivastava.

    Hi,
    The got the solution which is nothing tricky. I have to just insert <param name = "MODIFY_CLASS" value = "ZTEST_BWREPORTS_ADI"/> after <param name = "ITEM_CLASS" value = "CL_RSR_WWW_ITEM_GRID"> to get the desired result. Though I don't know what might be the reason (since I am very new to BW) but atleast the thing is working.
    Regards,
    Aditya Srivastava.

  • Trying to insert a table and getting a "While executing objectTag in Table.htm, a JavaScript error o

    trying to insert a table and getting a "While executing objectTag in Table.htm, a JavaScript error occurred." message appears.  how do I fix this?

    Try this Technote
    http://kb2.adobe.com/cps/405/kb405604.html
    Try step 4 here
    http://kb2.adobe.com/cps/405/kb405604.html#main_dat

Maybe you are looking for

  • How to license Acrobat Pro as a single product in Creative Cloud for teams.

    We're just starting with Creative Cloud for teams and I have a question about purchasing it. We seem to have the option to either add all the products or to license for a single product. Since a lot of our users are only using Acrobat Pro we'd like t

  • Loading Textures in CS5

    When I go to load a texture in the Texturizer Filter from one that I created, I see a hard edge no matter how I scale it. I tried saving my created .psd textures at the same resolution as the presets, and even tried doubling the file size, but no mat

  • Upgrading from 12.x to 15.x on 2800

    Hello we have a 2800 appliance, and we'd like to upgrade from this IOS version: c2800nm-adventerprisek9_sna-mz.124-15.T17.bin To this one from 15.x, c2800nm-advsecurityk9-mz.151-4.M7.bin. Is there any license we'd need to install to be able to do thi

  • Lines over images and around text in Captivate SWF file

    My project works & views fine in captivate and when published, it views fine on my mac - through flash player and browsers. But when I send a swf file to the client to view they see odd lines above and below images. But they dont see the lines when t

  • Source Inspection

    Hi Qm Gurus Can Anybody Tell me the cycle of Source Inspection As Per My Knowledge we can decide Source Inspection In QInfo Record Here We Gave lead time Days Then In QI07 we trigger it Manually & generate Inspection Lot . My Quesion is how it trigge