COm_SE_CPOINTER Table growth

Dear all
      In our Trex Server we are using two business objects are indexed (Abap Objects) Currently our COM_SE_CPOINTER table growth is 55 GB. For the both object we have schedule back ground job to delete the data older than one month, in the Com_se_cpointer table has lots of other objects are there weather we can delete those object by using the com_se_cpointer_delete program? If we are doing that it will have any other impact? But our usage is only the two objects other then we are not using anything.
Kindly guide us
Regards
Sriram

Please see OSS 1317755:
For performance reasons, you must ensure that the change pointer tables
COM_SE_CPOINTER and COM_SE_CPOINTER2 do not become too large. Therefore,
immediately after the SES indexes are backed up, we recommend that you delete
the change pointers that have been processed up to that time. To do this, call
transaction SES_ADMIN and choose "Utilities -> Delete Change Pointers".
Alternatively, you can call the program COM_SE_CPOINTER_DELETE directly.
Best regatrds,
Kai

Similar Messages

  • CO table growth rate

    Hi,
    We have gone line with SAP ECC for retail scenario recently. Our database is growing 3 GB per day which includes both data and index growth.
    Modules configured:
    SD (Retail), MM, HR and FI/CO.
    COPA is configured for reporting purpose to find article wise sales details per day and COPA summarization has not been done.
    Total sales order created per day on an average: 4000
    Total line items of sales order on an average per day: 25000
    Total purchase order created per day on an avearage: 1000
    Please suggest whether database growth of 3 GB per day is normal for our scenario or should we do something to restrict the database growth.
    Fastest Growing tables are,
    CE11000     Operating Concern fo
    CE31000     Operating Concern fo
    ACCTIT     Compressed Data from FI/CO Document
    BSIS     Accounting: Secondary Index for G/L Accounts
    GLPCA     EC-PCA: Actual Line Items
    FAGLFLEXA      General Ledger: Actual Line Items
    VBFA     Sales Document Flow
    RFBLG     Cluster for accounting document
    FAGL_SPLINFO     Splittling Information of Open Items
    S120     Sales as per receipts
    MSEG     Document Segment: Article
    VBRP     Billing Document: Item Data
    ACCTCR     Compressed Data from FI/CO Document - Currencies
    CE41000_ACCT     Operating Concern fo
    S033     Statistics: Movements for Current Stock (Individual Records)
    EDIDS     Status Record (IDoc)
    CKMI1     Index for Accounting Documents for Article
    LIPS     SD document: Delivery: Item data
    VBOX     SD Document: Billing Document: Rebate Index
    VBPA     Sales Document: Partner
    BSAS     Accounting: Secondary Index for G/L Accounts (Cleared Items)
    BKPF     Accounting Document Header
    FAGL_SPLINFO_VAL     Splitting Information of Open Item Values
    VBAP     Sales Document: Item Data
    KOCLU     Cluster for conditions in purchasing and sales
    COEP     CO Object: Line Items (by Period)
    S003     SIS: SalesOrg/DistCh/Division/District/Customer/Product
    S124     Customer / article
    SRRELROLES     Object Relationship Service: Roles
    S001     SIS: Customer Statistics
    Is there anyway we can reduce the datagrowth without affecting the functionalities configured?
    Is COPA summarization configuration will help reducing the size of the FI/CO tables growth?
    Regards,
    Nalla.

    user480060 wrote:
    Dear all,
    Oracle 9.2 on AIX 5.3
    In one of our database, one table has a very fast growth rate.
    How can I check if the table growth is normal or not.
    Please advice
    The question is, what is a "very fast growth rate"?
    What are the DDL of the table resp. the data types that the table uses?
    One potential issue could be the way the table is populated: If you constantly insert into the table using a direct-path insert (APPEND hint) and subsequently delete rows then your table will grow faster than required because the deleted rows won't be reused by the direct-path insert because it always writes above the current high-water mark of your table.
    May be you want to check your application for such an case if you think that the table grows faster than the actual amount of data it contains.
    You could use the ANALYZE command to get information about empty blocks and average free space in the blocks or use the procedures provided by DBMS_SPACE package to find out more about the current usage of your segment.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Oracle tables growth

    Hi Gurus,
    i have one question , is there any way we can track the history of tables growth. For example table A,B,C were created at the time of database creation in schema "ricky" . how we can track the tables growth in the form of report. Lets say we want to see the growth of this table after 2 years, as such we can refer some customized script that can report weekly or monthly growth of this table in those 2 years. The reason i am asking is in order to plan the purging policy.
    Any help would me much appreciated
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    Edited by: 821269 on 25-Mar-2011 4:20 PM

    Hi, welcome to the forum.
    >
    is there any way we can track the history of tables growth
    >
    Automatically by Oracle, No.
    Manually, doing by yourself. Yes.
    You can create a table where you can store the information you want like this (as an example).
    CREATE TABLE TABLES_SIZE_HIST (
      SNAP_DATE        DATE,
      SNAP_TYPE        CHAR(1), --you can put D=Daily, W=Weekly etc
      OWNER              VARCHAR2(30),
      SEGMENT_TYPE  VARCHAR2(30),
      SEGMENT_NAME  VARCHAR2(30),
      SEGMENT_BYTES NUMBER)
    /So, periodically you can insert data into the table above with this statement (only as example, you can insert data into the table in many ways).
    INSERT INTO TABLES_SIZE_HIST
    SELECT sysdate, 'W', s.owner, s.segment_type, s.segment_name, s.bytes
       FROM dba_segments s
          WHERE s.owner = '<OWNER>'
              AND s.segment_type = '<TABLE>'
              AND s.segment_name IN ('<TABLE1>', '<TABLE2>',.....,'<TABLE+n+>')
    /So, the query above you can put it into an Oracle Job or into a Cron Job (unix) for say something.
    After your period of 2 years, you can query the data collected and make desitions.
    You have to be carefull because maybe you can have lot of data in your table. So, you have to find the best scenario for storage.
    Obviously, depends of the period that you make the snapshot, daily, weekly, twice a day etc etc.
    HTH
    johnxjean

  • Table growth

    I would like estimate table(s) growth on hourly/daily/weekly and monthly basis.
    I found certain queries for tablespace growth. but, I could not find query for table growth in a schema. Could anyone can help on this.
    Thanks
    Raj

    DBMS_SPACE built-in package:
    http://www.psoug.org/reference/dbms_space.html
    Look specifically at the OBJECT_GROWTH_TREND pipelined table functions.

  • Table growth for Async process

    Hello,
    Using SOA/BPEL 11g
    Have deployed Async Bpel process and want to know (since this is async -- it must be saving or persisting state in some database tables ) what are the database table names THAT Async BPEL might be storing/persisting the STATE (for future use). Also, does anyone have the stats for "Table Growth" (MB) per xx number of request for BPEL process ?
    thx
    pp

    Below are the table names were data is stored:
    AUDIT_DETAILS
    AUDIT_TRAIL
    COMPOSITE_INSTANCE
    COMPOSITE_INSTANCE_ASSOC
    COMPOSITE_INSTANCE_FAULT
    CUBE_INSTANCE
    CUBE_SCOPE
    DLV_MESSAGE
    DLV_SUBSCRIPTION
    DOCUMENT_CI_REF
    DOCUMENT_DLV_MSG_REF
    HEADERS_PROPERTIES
    INSTANCE_PAYLOAD
    REFERENCE_INSTANCE
    REJECTED_MESSAGE
    REJECTED_MSG_NATIVE_PAYLOAD
    WFTASK
    WI_FAULT
    WORK_ITEM
    XML_DOCUMENT
    XML_DOCUMENT_REF
    There are no fixed guidelines for the database growth. Database utilization is different for each process depending upon the payload sizes.

  • Monitor table growth

    How can i monitor a table growth?
    I would like to know how big it was like 2 weeks ago, etc..

    This gives me the size of the table right now. i<BR>
    need to know what it was like 2 weeks ago.<BR>
    the dba_extents table has lots of row for a table, is<BR>
    there possible to know when the row was inserted in<BR>
    that table? That could give indice of what size the<BR>
    table was in time.<BR>As far as I know, there's no built-in facility to do this. If you wanted to track overall table size, you could create a 'table_size' table and a weekly dbms_scheduler job to do that aforementioned 'select' statement into it.<BR>
    <BR>
    To find out when a row was inserted into a table, you'd have to enable auditing, ie.<BR>
    <BR>
    audit insert on hr.employees;<BR>
    <BR>
    Note that the actual value inserted won't be captured, only the event. If you wanted to head any futher into that, you could look up Oracle 10g Fine Grain Auditing.

  • Monitor Table growth stats

         Is it possible to setup technical monitoring to monitor table growth statistics like top 10 growing tables etc?
    if yes, how?
    any info please?

    Hi Krishna,
    Kindly follow SAP doc E2E Reporting: Database Growth - Overview - System Reporting in SAP Solution Manager - SAP Library
    Hope this will help you.
    Regards,
    Gaurav

  • Finding cause for table growth (JCS_MONMESSAGE0)

    Hello,
    we are running a SAP Solution Manager (Win64, Ora10g, NetWeaver 7.01 EHP1)with dual stack.
    Since some time we are facing the situation, that an tablespace, used by the java stack (owner = sap<si>1db) is growing and growing (each day around 1 GB).
    The object name is JCS_MONMESSAGE0 with index SYS_C00379744.
    Searching for these keywords, on SAP Support Portal Notes, results in no match.
    Can you help me out finding a hint, what could cause the growth?
    Many thanks for your feedback.
    Best regards
    Carlos Behlau

    Hello Juan,
    many thanks for your feedback.
    How can I check from ABAP stack the table of java stack?
    I did some basic check with db02.
    But from its table columns it does not ring a bell.
    In SM30, the table is not displayed.
    Also in SE16, I do not get the table listed.
    Best regards
    Carlos Behlau

  • How to chech table growth in SAP

    hi
    i have a ECC6 on AIX plateform and database is oracle 10 i want to know how can i check which table is grow faster and what action i will take for smooth running of SAP system?
    Thanks
    Vikram

    Hi Vikram
    Goto DB02 and then click on Space Statistic. For tables/indexes and tablespace give * and it will give you the table/tablespace statistics. You can select days, weeks and month wise.
    For extending tablespace user brtools from ora<sid>.

  • Single table growth

    Hello Gurus,
    We can see one of the "custom" table in our system is growing quite fast. From the current trend I can see it is growing 1-3 GB pe rday. We are not in a position to stop the relevant program due to the impact on Business. We are in the process of finding the solution for that. However I wanted to understand if this table is growing too fast does that impact on the over all system performance. It is given fact that if some one try to access this table then it would create a perofrmance problem (only for this specific table).  My question more related overall perofrmance.
    Taking a scenario when some one is updating this table (Which isgrowing too fast) and in the mean time other users are perofrming activities in other tables.
    Many Thanks
    Praveen Kumar

    Hi,
    1). You can archive the Older data from the table, if your business allows you.
    2). Create Index depends on the query accessed.
    3). I strongly recommend to run twice or daily STATS for the table using DB20.
    Taking a scenario when some one is updating this table (Which isgrowing too fast) and in the mean time other users are perofrming activities in other tables.
    Performance problem arises when multiple people using same table to read the DATA. (Archiving Older data and Statistics on table should fix the performance issues)
    Here is the link for FAQ about archiving data.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/d76f5301-0b01-0010-2a97-9938052ddf81

  • How to get the list of top 10 tables grown last week or last few days

    Hi All,
    Please let me know, how to get the list of top 10 tables grown last week or last few days
    Thanks

    Please let me know, how to get the list of top 10 tables grown last week or last few days1.Oracle Version and OS info please ... ALWAYS
    2.Do you have licensing options (Tuning and/or Diagnostics Pack) ?
    3.Have you ran AWR/Statspack in last week or last few days
    1.Because Oracle do not store auto tack the history of tables growth. See below link where one user has showed the possible way of manual track of table(s) growth :
    Re: oracle tables growth
    2.MOS Note for How To Get Table Growth History Information? [ID 1395195.1]
    3.If you are in 10g than EM of 10g has something called Segmnet Statistics which can show you the growth of your table.
    4.Other clue :
    SQL> select * from table (dbms_space.object_growth_trend('SCOTT','EMP','TABLE'));
    TIMEPOINT                                                                   SPACE_USAGE SPACE_ALLOC QUALITY
    17-SEP-12 11.06.20.228000 AM                                                       1593       65536 GOOD5.A good script by Mice Ault for historical growth of segments within AWR:
    http://www.dba-oracle.com/t_table_growth_reports.htm
    Regards
    Girish Sharma

  • Is it possible to deactive the table ACCTIT?

    Hi. Is it possible to deactive the table ACCTIT? The table is growing up and it is causing troubles to the Basis Administrator. Should I delete or archive the table? Does it bring any problems if I need to generate reports? Does the information still exist in the system in order to generate FI reports?
    Thanks

    Hi Celeste,
    I faced the same problem at my customer , and I am sharing with you the information I have gained.
    The MM_ACCTIT archiving should be enabled to control the table growth rate. Alternatively , SAP provides a number of options to deactivate the table.
    Please check the following oss note : 48009. This is an FAQ OSS Note.
    SAP updates this table when doing posting from MM documents. When the documents are archived , you can view the archived documents using the Archive infostructure which can be activated from SARI transaction. You will observe the ACCTIT entries are very like the entries in MKPF (Material documents) table.
    Regards,
    Chandra
    Edited by: Chandrasekhar Kotillil on Jan 26, 2010 11:52 AM

  • Database growth following index key compression in Oracle 11g

    Hi,
    We have recently implemented index key compression in our sap R3 environments, but unexpectedly this has not resulted in any reduction of index growth rates.
    What I mean by this is that while the indexes have compressed on average 3 fold (over the entire DB), we are not seeing this with the DB growth going forward.
    ie We were experiencing ~15GB/month growth in our database prior to compression, but this figure doesnt seem to have changed much in the 2-3months that we have implemented in our production environments.
    Our trial with ACO compression seemed to yield reduction of table growth rates that corresponded to the compression ratio (ie table data growth rates dropped to a third after compression), but we havent seen this with index compression.
    Does anyone know if a rebuild with index key compression  will it compress any future records inserted into the tables once compression is enabled (as I assumed) or does it only compress whats there already?
    Cheers
    Theo

    Hello Theo,
    Does anyone know if a rebuild with index key compression will it compress any future records inserted into the tables once compression is enabled (as I assumed) or does it only compress whats there already?
    I wrote a blog about index key compression internals long time ago ([Oracle] Index key compression), but now i noticed that one important statement is missing. Yes future entries are compressed too - index key compression is a "live compression" feature.
    We were experiencing ~15GB/month growth in our database prior to compression, but this figure doesnt seem to have changed much in the 2-3months that we have implemented in our production environments.
    Do you mean that your DB size still increases ~15GB per month overall or just the index segments? Depending on the segment type growth - maybe indexes are only a small part of your system at all.
    If you have enabled compression and perform a reorg of them, you can run into one-time effects like 50/50 block splits due to fully packed blocks, etc. It also depends on the way the data is inserted/updated and which indexes are compressed.
    Regards
    Stefan

  • What's the best way to calculate table usage in Mb?

    Given a table structure, and knowing it will receive 30.000 new entries on each month, how do I calculate the table growth in kb?
    Also, how can I calculate initial disk ocupation from the table?
    Is there an equation or formula that I can apply using column definition as params?
    That's one of the tables on my application I have to calculate:
    CREATE TABLE "LOG_PESQUISA"
    (     "COD_LOG_PESQUISA" NUMBER(10,0) NOT NULL ENABLE,
         "TXT_PCHAVE" VARCHAR2(100),
         "IND_DIGITAL" NUMBER(1,0) NOT NULL ENABLE,
         "VLR_TOTALFISICO" NUMBER(9,0) NOT NULL ENABLE,
         "VLR_TOTALDIGITAL" NUMBER(9,0) NOT NULL ENABLE,
         "IND_FISICO" NUMBER(1,0) NOT NULL ENABLE,
         "TXT_CODIGO" VARCHAR2(50),
         "TXT_BOOLEAN_TYPE" VARCHAR2(3),
         "IND_DATA" NUMBER(1,0) NOT NULL ENABLE,
         "DAT_INI" DATE,
         "DAT_FIM" DATE,
         "COD_COLECAO" NUMBER(10,0),
         "COD_CREDITO" NUMBER(10,0),
         "VLR_EDICAO" NUMBER(5,0),
         "IND_TAMANHO" VARCHAR2(2),
         "IND_PUBLICADAS" NUMBER(1,0) NOT NULL ENABLE,
         "IND_SOBRAS" NUMBER(1,0) NOT NULL ENABLE,
         "IND_LUI" NUMBER(1,0) NOT NULL ENABLE,
         "IND_AUI" NUMBER(1,0) NOT NULL ENABLE,
         "COD_USU_INC" VARCHAR2(30) NOT NULL ENABLE,
         "DAT_INC" DATE NOT NULL ENABLE,
         "ID_CREDITO" NUMBER(10,0),
         "IND_PCHAVE" NUMBER(1,0) NOT NULL ENABLE,
         "IND_HEADLINE" NUMBER(1,0) NOT NULL ENABLE,
         "IND_LEGENDA" NUMBER(1,0) NOT NULL ENABLE,
         CONSTRAINT "LOG_PESQUISA_PESQUISA_PK" PRIMARY KEY ("COD_LOG_PESQUISA") ENABLE
    /

    The most accurate approach would be to
    1) Create the table
    2) Load it with some sample data. Make sure that the sample data is as close to reality as possible (i.e. if txt_pchave will be 90 characters 20% of the time, 50 characters 50% of the time, 10 characters 20% of the time and NULL 10% of the time, make sure your sample data reflects that).
    3) Query DBA_SEGMENTS to see how big the table is
    SELECT segment_name table_name, sum(bytes)/1024/1024 MB
      FROM dba_segments
    WHERE segment_name = 'LOG_PESQUISA'4) Multiply by the number of rows that you really expect. You might load 3,000 records in step 2, for example, so you'd multiply by 10 to get the size if you loaded 30,000 records.
    You can extend this to look at the size of the index(es) relatively easily. If you are doing more than straight inserts, you would also want to simulate that to account for things like row migration, empty blocks, etc.
    Justin

  • Data growth

    HI all
    thnks in advance
    Pls let me know how to get the data growth per day for the last 1 or 2 weeks on 10g

    Hi,
    Pls let me know how to get the data growth per day for the last 1 or 2 weeks on 10gIn you have a license for performnce pack and diagnostoc pack, see dba_hist_seg_stat.
    Otherwise, you need to create STATSPACK extenion tables to track table growth. Here is how I do it:
    http://www.dba-oracle.com/t_database_growth_reports.htm
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

Maybe you are looking for

  • Mac mini running 10.8.2 and iPhoto keeps crashing on launch...

    Hello- I have the latest mac mini running 10.8.2 and iPhoto keeps crashing upon launch.  I have done a complete uninstall and re-install on 3 different occasions, yet the issue still persists.  Any ideas on what's causing this.....and most importantl

  • How do I create a DVD slideshow

    Hello! I would like to create a DVD slideshow with pictures from over the year. I tried opening IDVD but I got an alrert message saying I wouldn't be able to burn my slideshow to a DVD on my system. Is there a way to use IPhoto for this project? My f

  • Column Filterring and Mapping using SQLEXEC in Golden Gate

    I am trying to execute a Stored procedure using SQLEXEC command. The procedure scott.get_script_id (replicat side) updates the columns based on the values came from source (extract side). But I am getting following error: create or replace procedure

  • Airport Card suddenly not able to get an IP address

    This happened all of a sudden... My wireless Internet connection was just fine, then it stopped working. It says it's connected to the wireless network, and that's true -- I verified it with the AP. But it won't get an IP address from the DHCP server

  • 11.5.2 patch still available?

    Another listserver posted a note stating that Oracle had recalled the 11.5.2 patch (1354512). It took me 5 attempts to download the 395Mb patch, but it appears to still be available, anyone heard about this?