DB13 Check and Update Optimizer Statistics Error

Dear Gurus,
While Updating the Update stats in DB13 Calender it shows the Below mentioned error.
BR0881I Collecting statistics for table SAPPSU.EKUB with method/sample C ...                           
BR0280I BRCONNECT time stamp: 2009-01-18 02.23.01                                                      
BR0884I Statistics collected for table: SAPPSU.EKUB, rows old/new: 4093/6243                           
BR0280I BRCONNECT time stamp: 2009-01-18 02.23.14                                                      
BR0883I Table selected to collect statistics after check: SAPPSU.EQBS (4288797/6962268)                
BR0280I BRCONNECT time stamp: 2009-01-18 02.23.14                                                      
BR0881I Collecting statistics for table SAPPSU.EQBS with method/sample E/P3 ...                        
BR0280I BRCONNECT time stamp: 2009-01-18 02.23.28                                                      
BR0301E SQL error -25153 at location stats_tab_collect-16
ORA-25153: Temporary Tablespace is Empty
BR0886E Checking/collecting statistics failed for table SAPPSU.EQBS                                    
BR0280I BRCONNECT time stamp: 2009-01-18 02.23.30                                                      
BR0883I Table selected to collect statistics after check: SAPPSU.ESLH (278/420)                        
BR0280I BRCONNECT time stamp: 2009-01-18 02.23.30                                                      
BR0881I Collecting statistics for table SAPPSU.ESLH with method/sample C ...                           
BR0280I BRCONNECT time stamp: 2009-01-18 02.23.30                                                      
BR0884I Statistics collected for table: SAPPSU.ESLH, rows old/new: 278/420                             
BR0280I BRCONNECT time stamp: 2009-01-18 02.24.19                                                      
BR0883I Table selected to collect statistics after check: SAPPSU.HRS1210 (13400/25026)                 
BR0280I BRCONNECT time stamp: 2009-01-18 02.24.19                                                      
BR0881I Collecting statistics for table SAPPSU.HRS1210 with method/sample E/P30 ...                    
BR0280I BRCONNECT time stamp: 2009-01-18 02.24.19                                                      
BR0884I Statistics collected for table: SAPPSU.HRS1210, rows old/new: 13400/13400                      
BR0986W Index SAPPSU.HRS1210~0 is unbalanced - please rebuild the index                                
BR0280I BRCONNECT time stamp: 2009-01-18 02.24.38                                                      
BR0883I Table selected to collect statistics after check: SAPPSU.JGTBP00 (75747/117862)                
BR0280I BRCONNECT time stamp: 2009-01-18 02.24.38                                                      
BR0881I Collecting statistics for table SAPPSU.JGTBP00 with method/sample E/P10 ...                    
BR0280I BRCONNECT time stamp: 2009-01-18 02.24.39                                                      
BR0884I Statistics collected for table: SAPPSU.JGTBP00, rows old/new: 75747/106197                     
BR0280I BRCONNECT time stamp: 2009-01-18 02.24.40                                                      
BR0883I Table selected to collect statistics after check: SAPPSU.JGTGPNR (76144/117862)                
BR0280I BRCONNECT time stamp: 2009-01-18 02.24.40                                                      
Please help me to sort out this issue.
Thanks
Anbu

Hello Anbu,
the reason for this error is that you have no TEMPFILEs in your temporary tablespace (usually PSAPTEMP).
Please add one with the BR*Tools:
http://help.sap.com/saphelp_nw70/helpdata/de/1b/d20f6fe45a9e43b1856ea1b52c9612/content.htm
Regards
Stefan

Similar Messages

  • Check and Update  Optimizer Statistics Error

    Hello,
    I have scheduled 'Check and Update  Optimizer Statistics' from DB 13 but I always get this error.
      BR0280I BRCONNECT time stamp: 2009-01-05 01.00.46
      BR0301E SQL error -20000 at location stats_ind_collect-3, SQL statement:
      'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPSR3"', INDNAME => '"/BIC  /B0000412000KE"', ESTIMATE_PERCENT => 30, DEGREE => NULL, NO_INVALIDATE => FALSE); END;'
      ORA-20000: index "SAPSR3"."/BIC/B0000412000KE"  or partition of such index is in unusable state
      ORA-06512: at "SYS.DBMS_STATS", line 10610
      ORA-06512: at "SYS.DBMS_STATS", line 10645
      ORA-06512: at line 1
      BR0886E Checking/collecting statistics failed for index SAPSR3./BIC/B0000412000KE
    Tried checking the table /BIC/B0000412000KE and got this from the check:
      Enhancement category for table missing
      Enhancement category for include or subtype missing
      Table /BIC/B0000412000 was checked with warnings
    I am still checking what this means but appreciate you have any idea on how to solve it.
    Thank you.
    Best Regards,
    Julius
    Edited by: Julius Baron Manuel on Jan 7, 2009 7:39 AM

    Hi Julius,
    Have your tried scheduling the update stats via DB13 'Immediately'. ??? Does it still gives you the same error when its done 'immediately'?
    Try out DB02 and check your whole Database along with missing indexes. Refresh database and update histories.
    Regards,
    Pranay

  • DB13 Check and update optimizer stat error: ORA-01652: unable to extend tem

    Hi SAP Gurus,
    When running Check and Update Optimizer Statistics in DB13, an error occurs.
    BR0280I BRCONNECT time stamp: 2011-03-10 06.35.52                    
    BR0301E SQL error -1652 at location stats_tab_collect-16             
    ORA-01652: unable to extend temp segment by 12137 in tablespace SYSTEM
    BR0886E Checking/collecting statistics failed for table SAPR3.ACCTIT 
    BR0280I BRCONNECT time stamp: 2011-03-10 06.36.49                    
    BR0850I 3 of 39479 objects processed - 3.522 of 342.781 units done   
    BR0204I Percentage done: 1.03%, estimated end time: 15:47            
    Looking at tablespace SYSTEM in DB02, the percent used is 58. Auto-extent feature is OFF. Will turning the auto-extent ON, remove the error?

    It seems like Your user (by a mistake) have tablespace SYSTEM as temporary tablespace.
    Connect as sysdba in Your database and check which temp tablespaces awaiable, and size of them:
    select tablespace_name, sum(bytes)/1024/1024 "Size of TEMP TBS in MB" from dba_temp_files  group by tablespace_name;
    Check which users having SYSTEM as tamp-tbs:
    select username, temporary_tablespace from dba_users where temporary_tablespace like 'SYSTEM' order by 1;
    Change those users to have one of your temp-tablespaces:
    alter user &username temporary tablespace &&TempTBS;
    It's also a good idea to have autoextend on on Your temp TBS, but remember to set maxsize so you doesn't fill up your disksystem.
    Hope this solve Your problems.
    Regards
    Audun
    DBA

  • Check and update optimizer statistics failed

    Hellow Friends,
    After running job Check and update optimizer statistics each and every time from db13 in my BI production server it got failed please
    view the logs
    BR0301E SQL error -20000 at location stats_tab_collect-20, SQL statement:                                                                    
    'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPSR3"', TABNAME => '"/BIC/B0000228000"', ESTIMATE_PERCENT => NULL, METHOD_OPT => 'FOR ALL
    ORA-20000: index "SAPSR3"."/BIC/B0000228000KE"  or partition of such index is in unusable state                                              
    ORA-06512: at "SYS.DBMS_STATS", line 13159                                                                               
    ORA-06512: at "SYS.DBMS_STATS", line 13179                                                                               
    ORA-06512: at line 1                                                                               
    BR0886E Checking/collecting statistics failed for table SAPSR3./BIC/B0000228000                                                              
    BR0280I BRCONNECT time stamp: 2009-05-19 18.17.19                                                                               
    BR0883I Table selected to collect statistics after check: SAPSR3./BIC/B0000229000 (161130/1480:0:0)                                          
    BR0280I BRCONNECT time stamp: 2009-05-19 18.17.19                                                                               
    BR0881I Collecting statistics for table SAPSR3./BIC/B0000229000 with method/sample E/P10 ...                                                 
    BR0280I BRCONNECT time stamp: 2009-05-19 18.17.21                                                                               
    BR0301E SQL error -20000 at location stats_tab_collect-20, SQL statement:                                                                    
    'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPSR3"', TABNAME => '"/BIC/B0000229000"', ESTIMATE_PERCENT => 10, METHOD_OPT => 'FOR ALL C
    ORA-20000: index "SAPSR3"."/BIC/B0000229000KE"  or partition of such index is in unusable state                                              
    ORA-06512: at "SYS.DBMS_STATS", line 13159                                                                               
    ORA-06512: at "SYS.DBMS_STATS", line 13179                                                                               
    ORA-06512: at line 1                                                                               
    BR0886E Checking/collecting statistics failed for table SAPSR3./BIC/B0000229000                                                              
    BR0280I BRCONNECT time stamp: 2009-05-19 18.17.21                                                                               
    BR0883I Table selected to collect statistics after check: SAPSR3./BIC/B0000230000 (0/13545:0:0)                                              
    BR0280I BRCONNECT time stamp: 2009-05-19 18.17.21                                                                               
    BR0881I Collecting statistics for table SAPSR3./BIC/B0000230000 with method/sample E/P30 ...                                                 
    BR0280I BRCONNECT time stamp: 2009-05-19 18.17.21                                                                               
    BR0301E SQL error -20000 at location stats_tab_collect-20, SQL statement:                                                                    
    'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPSR3"', TABNAME => '"/BIC/B0000230000"', ESTIMATE_PERCENT => 30, METHOD_OPT => 'FOR ALL C
    ORA-20000: index "SAPSR3"."/BIC/B0000230000KE"  or partition of such index is in unusable state                                              
    ORA-06512: at "SYS.DBMS_STATS", line 13159                                                                               
    ORA-06512: at "SYS.DBMS_STATS", line 13179                                                                               
    ORA-06512: at line 1                                                                               
    BR0886E Checking/collecting statistics failed for table SAPSR3./BIC/B0000230000                                                              
    Please help me to resolve the issue.

    some of your PSA tables are inconsistent - ex: /BIC/B0000228000 - check PSA partitioning in RSRV to correct the same or delete data from the same using SE14 and try running the same.

  • Error in Update optimizer statistics - index is in unusable state

    Hello,
    we have this error in log Check and update optimizer statistics:
    12.02.2009     23:21:20     'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPPB1"', TABNAME => '"/BIC/FZPPC0002"', ESTIMATE_PERCENT => 10, METHOD_OPT =
    12.02.2009     23:21:20     ORA-20000: index "SAPPB1"."/BIC/FZPPC0002~010"  or partition of such index is in unusable state
    12.02.2009     23:21:20     ORA-06512: at "SYS.DBMS_STATS", line 13452
    12.02.2009     23:21:20     ORA-06512: at "SYS.DBMS_STATS", line 13472
    12.02.2009     23:21:20     ORA-06512: at line 1
    12.02.2009     23:21:20     BR0886E Checking/collecting statistics failed for table SAPPB1./BIC/FZPPC0002
    i can temporary fix this problem when i delete and recreate index via SE14,  but this help only for one next running update statistics, every next running update statistics has same error:  index "SAPPB1"."/BIC/FZPPC0002~010"  or partition of such index is in unusable state. Exist any definitive solution for this problem. Thanks

    Hi,
    Two methods for checking/repairing Indexing issues
    1)RSRV for a particular cube
    2)SAP_INFOCUBE_INDEXES_REPAIR report
    You can also use this sql to rebuild an Index.
    alter index <index name> rebuild online; Or you can rebuild Index by using ABAP report 'RSANAORA'.
    Please check below thread it may help you.
    /message/6483705#6483705 [original link is broken]
    https://forums.sdn.sap.com/click.jspa?searchID=12942068&messageID=2052264
    Thanks,
    Sushil

  • When the iPhone 4 with IOS 5 is connected by cable to iTunes and check for update results in Error 1630. plz help me

    When the iPhone 4 with IOS 5 is  connected by cable to iTunes and check for update results in Error 1630, plz help me to update plz

    My Iphone 4 crashed yesterday after a restart and upload of OS 5.0, it will only partially sync.  It's not transferring any of my music or ringtones.  They still appear when I click open the sync screens on ITunes, but I don't seem to have an Ipod function and only one of my personalized ringtones transfers on the actual phone.

  • Custom program for availability check and update for existing sale order at Item level(VA02)

    Hi,
    I came to know Bapi_Saleorder_Simulate can be used for availability check and update an existing sale order.but there is no sample program explaining the process.I have tried this by passing parameters ORDER_HEADER_IN , ORDER_ITEMS_IN  ,ORDER_PARTNERS and ORDER_SCHEDULE_EX(for getting details),also i have assigned the sale document number ,custom document type(ZSO) in ORDER_HEADER_IN . while executing the BAPI I am getting the error external number range is not assigned for the document type ZSO . I am confused on seeing this error. It is possible to do availability check for existing sale order using this BAPI. Please explain how to achieve this.It will be really helpful if it is expalained with an example.   
    Regards,
    Shanmuga

    Hello, I think you may have been misinformed about this BAPI updating a sales order at item level. As far as I understand it this BAPI can be used to simulate the creation of a sales order which obviously would include and ATP check. This is why it is giving the error because it is simulating creation but you are entering a value in a field that should be automatically generated (i.e. the sales order number). For change the sales order at item level have you looked at BAPI_SALESORDER_CHANGE? I pretty sure this BAPI both updates sales order (header or item level) and can do an ATP first.
    Points are always welcome if you feel an answer has been helpful.

  • HT4623 I started to update my iphone4 software to iOS 7.0.4 while in the process of updating a text message came in- now it keeps saying checking for update then an error comes up that says try again . How do I finish updating my phone?

    I started to update my iphone4 software to iOS 7.0.4 while in the process of updating a text message came in- now it keeps saying checking for update then an error comes up that says try again . How do I finish updating my phone?

    Hi
    A little information will be of a great help, witch iPhone did you upgrade, memory , and version of software ( iOS 8.x.x )?
    Try restarting you iPhone and make sure you have a god internet connection , get as close to your wifi router (1-3 meter / 2-9 feet ) as possible. Don't use restore to factory  settings before you tried other options .  And most imported du you have an iCloud backup.
    //Sorenc

  • My phone won't let me update software. message is-unable to check for update. An error occurred while checking for software update. What is wrong?

    My IPhone won't let me update software. Mess is- unable to check for update. An error occurred while checking for software update. What is wrong?

    amm wait..first download the latest software (7.1.1) from the verified page..
    then after the download completes.. back up ur device !
    then after the back up completes.. turn off ur device
    after that process jst hold down the home button for about 10 seconds and without leaving the button connect the usb cable to the pc. this process takes ur phone to the recovery mode!
    now on the itunes press (shift ) and then click on update it opens some opener of the files now select the latest software that u've jst downloaded from the internet now there go..

  • When I click on check for update I get error, iTunes could not check for an update to the carrier settings for your iPhone. an unknown error occurred 1630

    when I click on check for update I get error, iTunes could not check for an update to the carrier settings for your iPhone. an unknown error occurred 1630
    Make sure your network setting are correct and your network connection is active or try again latter.

    update your itunes to 10.5.2 and error is not showing up anymore..

  • How come Java 8 is not listed in my plug-in checks and updates?

    I recently updated Java to Java 8, and when I clicked to do my plug-ins checks and updates, Java is not listed anywhere, whereas the old Java (Java 7 and Java deployment 7 update) were there and listed as needing an update. Is there a reason it isn't listed? Do I have to go to Java's site weekly to check for updates?

    Firefox is a 32 bit application, so you need to install the 32 bit Java version.
    Java 7U55 is still secure (i.e. no known security vulnerabilities), so if there aren't any issues with Java 7U51 then there is no need to update to Java 8 at this moment and you can wait til Java 8 becomes available via the automatic Java updater or via the java.com website.
    *http://www.java.com/en/download/faq/java8.xml
    See Java Platform > Java SE (JRE Download;32 bit for Windows)
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html
    *http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html

  • "Plugin Check and Updates" won't work (been spinning for 20 minutes). And there's no way to ask for help.

    Many warnings are popping up today saying my Adobe plugin is out of date, yet when I go to the "plugin check" page and click "plugin status," it never loads. As in literally. And no search has brought up a solution. And Mozilla's solution is...to go to the "plugin check and updates" page. So, um. I'm in a vortex. Any suggestions? Is there a way to actually tell Mozilla about this problem? So far, I'm still in the faq loop, with no hope of technical support. ...help? (ps: Windows Vista, have used Firefox since it was first available).

    - You can manually save and install the update:
    Flash 16:
    https://www.adobe.com/products/flashplayer/distribution3.html
    Direct link:
    http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_16_plugin.exe
    - the Add-on tab will show the newly updated Flash 16 (no more "update now" link)
    - But the "Check Your Plugins" page still fails to work properly, it does not recognize the Flash 16 update', and will not check to see if other plug-ins need updating'''

  • HT4623 I Can't able to download IOS 7. I n my software update it is giving an error " Unable to check for updates. An error occured while checking for software update". What can be done for this error?

    I Can't able to download IOS 7. I n my software update it is giving an error " Unable to check for updates. An error occured while checking for software update". What can be done for this error?

    Me too having the same thing what's the solution for this how can I update

  • Tried to restore and update but got error code after download, iphone 4 on verizon...ios 4.2.1 tried to restore and update but got error code after download

    iphone 4 on verizon(16 gb) ios 4.2.1 tried to restore and update but got error code after download.... all the iphone does is sit there with the picture to connect to itunes. This is very important, please help!!!!!! updated itunes and restarted and have tried everything... this iphone has never been synced or backed up with itunes. please help!

    error 1015 usually means you have a jailbroken  devices, which per the term of use of the forum, you can't get any help here.

  • How to execute ATP check and update schedule lines for existing sales order

    Hello all,
    After stock quantity has been updated, we’d like to perform ATP check and update schedule lines for sales documents which have not been delivered yet.
    Is BAPI_SALESDOCUMENT_CHANGE useful to do so?
    If so which fields should I set ‘X’?
    At the moment, I called BATCH INPUT and execute ATP check.
    But I'm wondering if this is not a smart way.
    Thank you
    Yuko

    Hi arnab
      one way of achieving your requirements is
    after creating the sales order you can execute the SALEs order MRP using MD50 transaction enter the order # and MRP control parameters 1,3,1,2. and execute.
    Ensure the following before MRP.
    1. All the master data are maintained for the schedule line creation for the components ( Source list, Scheduling agreements)
    2. Material master with valid MRP data.strategy group having MTO strategy.
    after sales order MRP you will get the schedule line created for the components
    also MRp will create the cpacity requirements as we run the MRP with Lead time scheduling.
    Hope this helps
    SK
    Reward your points

Maybe you are looking for

  • No messages in Local Sent folder

    I have setup Mail to NOT store sent messages on the server. According to the help file when using an IMAP setup, as I am, I should be able to have a local copy on my computer of items that are sent: To save sent messages for IMAP accounts: ■ To store

  • Converting Multi page .eps files to .pdf Preview is broken

    I have in the past used Preview to convert multi page .eps files into .pdf files. Since I have upgraded to Tiger 10.4.3 Preview will no longer work. Does anyone know how to uninstall Tiger 3.03 version and go back to 2.xx version? Are there any utili

  • Is there any reason to keep old versions of Elements?

    I have installed Elements 6, 9 & 11 and in addition Premier Elements 11. Given that I have Elements 11 and Premier Elements 11 is that any use for versions 6 and 9?

  • Adding columns to forms

    So I have added a column to my table in the object browser, now I want my report and form to have that column on them. How can I do this? Thanks, Steve

  • Defining multiple Crystal Report Data Consumer connections?

    I am creating a Xcelsius object that uses data from Crystal Reports. To do that, I define Crystal Report Data Consumer connection. With this I can use Crystal to connect to the data source, create table of data (crosstab) and pass it to the flash obj