Fast growing object in tablespace

Hi Experts
can any tell me how to find the fast growing objects in database. database is growing very fast and i want to know what all objects are those?
thanks in advance
anu

can any tell me how to find the fast growing objects in database. database is growing very fast and i want to know what all objects are those?I would change this query to take it object wise it as OP is interested in growing object size not in segment size
select owner,segment_name,segment_type,sum(bytes)/1024/1024 "SIZE(MB)",blocks from dba_segments where segment_type = 'TABLE' and owner = 'LOGS' group by owner,segment_name,segment_type;Regards.

Similar Messages

  • Fast growing Basis tables....

    Hi,
    I have bees using one note 706478 to find out the measure against fast growing basis tables. I use this for R/3. Is there any note like this for BW and CRM as well. I search OSS but could not come up with any solid note.
    Does anybody knwo abot this? Your help will be appreciated.
    Thanks in advance to everybody.
    Thanks for the help.

    There are several factors to consider. For example:
    - Is the table a TimesTen only table or is it a cached Oracle table using AWT to push the inserts down to Oracle?
    - How long does the data need to be retained? Forever, for 1 hour, for 1 minute...
    If the table is an AWT cached table from Oracle then the inserted data ultimately ends up in Oracle. It is therefore likely that you can safely discard some data from TimesTen to prevent the datastore filling up. You can do this using the automnatic aging feature in TT 7.0 or you can implemnent it as a periodic UNLOAD CACHE GROUP statement executed from a script or from application code.
    If the table is a TimesTen only table then in addition to the above you need to consider if you can just discard 'old' data or if you have to keep it somewhere. If you need to keep it then you will first need to copy it out of TT before it gets deleted. In this case aging is probably not a good solution and you should implement some application mechanism to copy the data somewhere else and then delete it. If you do not need to keep the data then aging may still be an option.
    In any event, you will want to give yourself as much headroom as possible by making the datastore as big as you can subject to available memory etc. If you use aging, you will likely have to configure very aggressive aging parameters in order to keep the table size under control. It is possible that aging may not be up to the job if the insert rate is extremely high in which case you may anyway need to implement some application based cleanup mechanism.
    Chris

  • Fast growing tablespaces

    Hi Experts,
    The following tablespaces are consuming max free space.
    PSAPBTABD : 50% of the total space aquired 77.5 GB   
    PSAPBTABI : 38.5 GB                     
    PSAPCLUD : 15 GB          
    85 % of total space is consumed by these tablespaces.
    Tables with max growth of increasing are :
    BSIS, RFBLG, ACCTIT, ACCTCR, MSEG, RSEG   etc.
    Average increase of  2GB space per month.
    Kindly help me to find out the solution.
    Regards,
    Praveen Merugu

    Hi praveen,
    Greetings!
    I am not sure whether you are a BASIS or Functional guy but, if you are BASIS then you can discuss with your functional team on selecting the archiving objects inline with your project. Normally, func consultants will have the knowledge of which archive object will delete entries from which tables... You can also search help.sap.com for identifying the archiving objects.
    Once you identified the archiving objects, you need to discuss with your business heads and key users about your archiving plan. This is to fix the data retention period in the production system and to fix the archiving cycle for every year.
    Once these been fixed, you can sit along with func guys to create varients for the identified archiving objects. Use SARA and archivie the concerned objects.
    Initiating a archiving project is a time consuming task. It is better to start a seperate mini project to kick off the initial archiving plan. You can test the entire archiving phase in QA system by copying the PRD client.
    The below summary will give you a idea to start the archiving project,
    1. Identify the tables which grow rapidly and its module.
    2. Identify the relevent archiving object which will delete the entries in rapidly growing table.
    3. Prepare a archive server to store the archived data ( Get 3rd party archiving solution if possible). Remeber, the old data should be reterived from the archive server when ever the business needs it.
    4. Finalise the archving cycle inline with your business need.
    5.Archvie the objects using SARA.
    6.Reorganize the DB after archiving.
    Hope this will give some idea on archiving project.
    regards,
    VInodh.

  • Very fast growing STDERR# File

    Hi experts,
    I have stderr# files on two app-servers, which are growing very fast.
    Problem is, I can't open the files via ST11 as they are to big.
    Is there a guide, which explains what is it about and how I can manage this file (reset, ...)?
    May it be a locking-log?
    As I have a few entries in SM21 about failed locking.
    I also can find entries about "call recv failed" and "comm error, cpic return code 020".
    Thx in advance

    Dear Christian,
    Stderr* are used to record syslog and logon check, when the system is up, there should be only one being used, you can delete the others. for example, if the stderr1 is being used, then you can delete the stderr0.
    stderr2,stderr3... Otherwise only shutting down the application server will allow deletion. When deleted the files will be created
    again and only increase in size if the original issue causing it still exists, switching is internal and not controlled by size.
    Some causes of 'stderr4' growth:
    In the case of repeated input/output errors of a TemSe object (in particular in the background), large portions of trace information are written to stderr. This information is not necessary and not useful in this quantity.
    Please review carefully following Notes :
       48400 : Reorganization of TemSe and Spool
      (here delete old 'temse' objects)
    RSPO0041 (or RSPO1041), RSBTCDEL: To delete old TemSe objects
    RSPO1043 and RSTS0020 for the consistency check.
    1140307 : STDERR1 or STDERR3 becomes unusually large
    Please also run a Consistency Check of DB Tables as follows:
    1. Run Transaction SM65
    2. Select Goto ... Additional tests
    3. Select "Consistency check DB Tables" and click execute.
    4. Once you get the results check to see if you have any inconsistencies
       in any of your tables.
    5. If there are any inconsistencies reported then run the "Background
       Procesing Analyses" (SM65 .. Goto ... Additional Tests) again.
       This time check both the "Consistency check DB Tables" and the
       "Remove Inconsistencies" option.
    6. Run this a couple of times until all inconsistencies are removed from
       the tables.
    Make sure you run this SM65 check when the system is quiet and no other batch jobs are running as this would put a lock on the TBTCO table till it finishes.  This table may be needed by any other batch job that is running or scheduled to run at the time SM65 checks are running.
    Running these jobs daily should ensure that the stderr files do not increase at this rate in the future.
    If the system is running smoothly, these files should not grow very fast, because most of they just record the error information when it happening.
    For more information about stderr please refer to the following note:
       12715: Collective note: problems with SCSA
              (the Note contains the information about what is in the  stderr and how it created).
    Regards,
    Abhishek

  • List objects in tablespace

    How do I list all the objects in a specific tablespace ?

    sql > select segment_name , segment_type from dba_segments
    where tablespace_name = <name> ;
    hare krishna
    Alok

  • Kackup fast growing table

    I have a table for xml messages in which one of the column size is 4000, the table grows very fast (10G+/week). I also need to keep these messages by backup or some other ways, but need to be loaded into the DB easily if required to be online.
    The table is written at any time, there is no way to know when it will.
    Does anybody know what is the common practice for this kind of operation, where should I store the data, and how to load into the DB, or if I need special tools. I have only 60G in my DB server.
    Thanks in advance

    Robert Geier wrote:
    This does not indicate what is growing.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_4149.htm
    "DBA_TAB_MODIFICATIONS describes modifications to all tables in the database that have been modified since the last time statistics were gathered on the tables. Its columns are the same as those in "ALL_TAB_MODIFICATIONS".
    Note:
    This view is populated only for tables with the MONITORING attribute. It is intended for statistics collection over a long period of time. For performance reasons, the Oracle Database does not populate this view immediately when the actual modifications occur. Run the FLUSH_DATABASE_MONITORING_INFO procedure in the DIMS_STATS PL/SQL package to populate this view with the latest information. The ANALYZE_ANY system privilege is required to run this procedure."-----------------
    Thank you.

  • Fast moving objects get "cropped"

    I have got this annoying problem with Flash. Whenever I tween an object fast across the screen the part which points to the direction of the movement of the object gets cropped.
    Here is an example:
    The circle is moving across the screen roughly 3 times every second and as you can see, the front has magically disappeared for some reason. Same thing happens for objects moving slower aswell but the cropped off part is smaller. I could not printscreen this as the screen pauses on the current frame when you do that so that is why I used an external camera. Updating my graphic card drivers has not solved the problem.
    Has anyone else ever had this problem?
    Any help is appreciated.

    the only other options for you are:
    1.  optimize the performance of your swf, in general.  (a complex topic for advanced developers.)  but the simplest performance enhancement would be to enable the cacheAsBitmap properties of all other objects that would benefit.
    2.  upgrade your computer's graphics capabilities.
    3.  ignore the problem if it only occurs on computers that have such limited capabilites that it's not likely to impact many users.

  • LabVIEW/TestStand/PXI Engineering Architect Role in fast growing Semiconductor Services Company

    A reputed Semiconductor Services company is on the cusp of major growth due to recent Brand Recognition and happy customers. The company is looking for a capable, motivated senior engineer or developer who wants to take the next step toward technical/architecture leadership, team leadership and opportunities to make lasting impressions on customers in order to grow the business and themselves. Some questions to ask yourself before you apply:
    a) Do you have 2+ years of experience in LabVIEW/TestStand/PXI with a strong foundation in Electrical/Electronics/Communications/Computer Engineering
    b) Do you feel that your technical skills in the LabVIEW/TesStand/PXI space have evolved to the level that you can punch above your weight compared to the number of years of experience. We are looking for go-getters who may be 2-3 years experience but make a lasting impression on any customers and come across as 4-5 years of experience because of your innate smartness, command of engineering/architectural concepts, communication skills and can-do attitude
    c) Are you driven by a sense of integrity, respect to your colleagues and a strong team spirit
    d) Do you believe that every meeting and deliverable to a customer is a vehicle for company and personal growth?
    e) Do you enter every project and opportunity with a view to ensuring customer delight and loyalty?
    f) Are you fearless about entering new allied technologies such as LabVIEW FPGA/Xilinx//Altera based FPGA/ Microcontroller programming and system design
    If the answer to these questions is yes, please email [email protected] with your most updated resume and prepare to embark on a career that will fuel your  job satisfaction and growth in the years to come. A strong technical background in the areas mentioned is essential and will be tested.
    Company Information:
    Soliton Technologies Inc. is a value-driven Engineering Services company with over 15 years of experience and steady services growth in the Semiconductor, Automotive, Biomedical and Test and Measurement industries. (www.solitontech.com). Soliton's services range from LabVIEW and TestStand based Validation Automation (often PXI based), GUI Frameworks, Embedded Development Services on NI Embedded targets as well as Microcontrollers, High Speed FPGA Design, Enterprise Software Development on Multiple programming platforms ( C, C++, C#, .NET, Python, Java, HTML5 etc) and Vision Based Test Systems. The company has a strong Semiconductor focus in the past decade with multiple Fortune 500 customers with steady growth and a track record of customer retention.
    Compensation: Not a constraint for the right candidate.

    Hi,
    Kindly arrange an interview process.
    I have attached my resume
    Regards,
    Bharath Kumar

  • Is it possible to show usage of each object in tablespace?

    We could have more than one table in a tablespace. Is there a way to show how much space of the tablespace each table used?

    The segments(All segments created under tablespace) size which was created on particular tablespace can be obtained by using following query...
    enjoy...
    set pages 200 lines 132 verify off feedb off
    col segment_name format a35
    col total_bytes_KB format 999,999,999,999
    compute sum of total_bytes_KB on segment_type
    break on segment_type skip 1
    accept tblsp_name prompt 'Tablespace Name: ';
    set termout off
    spool &&tblsp_name..lis
    select segment_type, segment_name, sum(bytes/1024) total_bytes_KB
    from dba_extents
    where tablespace_name like upper('%&&tblsp_name%')
    group by segment_name,segment_type
    order by segment_type,segment_name;
    spool off;
    clear columns;
    clear breaks;
    undefine tblsp_name;
    set feedb on termout on

  • Why is my autoextend datafile didn't grow for a tablespace?

    These are my autoextend datafiles for PSAPSR3700. DB02 reported that PSAPSR3700 tablespace is utilized 100%. Shouldn't the datafiles autoexted by them self to solve the 100% utilization problem?
    SQL>  select file_name,bytes,maxbytes,blocks,maxblocks  from dba_data_files where tablespace_name = 'PSAPSR3700';
    FILE_NAME
         BYTES   MAXBYTES     BLOCKS  MAXBLOCKS
    /oracle/TDM/sapdata3/sr3700_1/sr3700.data1
    3565158400 1.0486E+10     435200    1280000
    /oracle/TDM/sapdata3/sr3700_2/sr3700.data2
    3690987520 1.0486E+10     450560    1280000
    /oracle/TDM/sapdata3/sr3700_3/sr3700.data3
    3670016000 1.0486E+10     448000    1280000
    FILE_NAME
         BYTES   MAXBYTES     BLOCKS  MAXBLOCKS
    /oracle/TDM/sapdata3/sr3700_4/sr3700.data4
    1551892480 1.0486E+10     189440    1280000
    /oracle/TDM/sapdata4/sr3700_5/sr3700.data5
    1488977920 5368709120     181760     655360
    /oracle/TDM/sapdata4/sr3700_6/sr3700.data6
    1488977920 5368709120     181760     655360

    Hi,
    You can consider the following Factors for measuring the FileSystem capacity planning and requirement to hold datafiles of tablespace.
    1. Current Size of the Datafiles associated with Tablespace
    [Showing Disk Volumes with BR*Tools|http://help.sap.com/saphelp_nw70/helpdata/en/85/0ba86126e3b34091746bcfc2aa8a1d/content.htm]
    [Showing Tablespaces with BR*Tools|http://help.sap.com/saphelp_nw70/helpdata/en/1d/9c8d3f7057eb0ce10000000a114084/content.htm]
    [ Showing Data Files with BR*Tools|http://help.sap.com/saphelp_nw70/helpdata/en/05/710a4654de0b4b9ad131879a2c68d3/content.htm]
    2. Autoextend -If it is set to yes, the new data file is created autoextensible. In this case, maxsize and incrsize will paly an important role for the capacity planning
    3.maxsize -For autoextensible data files, this parameter specifies the maximum size in MB up to which the data file can be increased.
    4.incrsize - For autoextensible data files, this parameter specifies the size in MB, by which the data file is automatically increased when necessary.
    Regards,
    Bhavik G. Shroff

  • Fast growing db2diag.log (FP4 V9.5)

    Does anyone have experiences with V9.5 FP4SAP?
    We have implemented this FP4 last week (from FP2a). Since this a db2diag.log of about 1MB were written (and the system usage is really low).
    We have another system on FP2a which is used heavier (as a productive system) and the db2diag.log is about 2,5 MB within two months.
    We have checked SAP note 1086130 for DB parameters and did not find a required change (from FP2a to FP4).
    Any idea is welcome!
    Best regards.

    db2diag.log extract 2009-08-02 23:00-23:59
    2009-08-02-23.24.20.577179+120 I1019336A362       LEVEL: Warning
    PID     : 602270               TID  : 4114        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000
    EDUID   : 4114                 EDUNAME: db2logmgr (MES) 0
    FUNCTION: DB2 UDB, data protection services, sqlpgArchiveLogFile, probe:3108
    MESSAGE : Started archive for log file S0001678.LOG.
    2009-08-02-23.24.21.914535+120 I1019699A422       LEVEL: Warning
    PID     : 602270               TID  : 4114        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000
    EDUID   : 4114                 EDUNAME: db2logmgr (MES) 0
    FUNCTION: DB2 UDB, data protection services, sqlpgArchiveLogFile, probe:3180
    MESSAGE : Completed archive for log file S0001678.LOG to TSM chain 0 from
              /db2/MES/log_dir/NODE0000/.
    2009-08-02-23.28.53.621596+120 I1020122A483       LEVEL: Event
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, config/install, sqlfLogUpdateCfgParam, probe:20
    CHANGE  : STMM CFG DB MES: "Locklist" From: "3712" <automatic>  To: "3552" <automatic>
    2009-08-02-23.28.53.627724+120 I1020606A545       LEVEL: Event
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, access plan manager, sqlra_resize_pckcache, probe:150
    CHANGE  : APM : Package Cache : FROM "5208760" : TO "4191641" : success
    IMPACT  : None
    DATA #1 : String, 29 bytes
    Package Cache Resized (bytes)
    2009-08-02-23.28.53.629400+120 I1021152A485       LEVEL: Event
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, config/install, sqlfLogUpdateCfgParam, probe:20
    CHANGE  : STMM CFG DB MES: "Pckcachesz" From: "1311" <automatic>  To: "1055" <automatic>
    2009-08-02-23.28.54.510395+120 I1021638A507       LEVEL: Info
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, buffer pool services, sqlbAlterBufferPoolAct, probe:90
    MESSAGE : Altering bufferpool "IBMDEFAULTBP" From: "19552" <automatic> To:
              "15648" <automatic>
    2009-08-02-23.29.24.543188+120 I1022146A494       LEVEL: Event
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, config/install, sqlfLogUpdateCfgParam, probe:20
    CHANGE  : STMM CFG DB MES: "Database_memory" From: "205060" <automatic>  To: "185520" <automatic>
    2009-08-02-23.29.54.555357+120 I1022641A483       LEVEL: Event
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, config/install, sqlfLogUpdateCfgParam, probe:20
    CHANGE  : STMM CFG DB MES: "Locklist" From: "3552" <automatic>  To: "3392" <automatic>
    2009-08-02-23.29.54.559234+120 I1023125A545       LEVEL: Event
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, access plan manager, sqlra_resize_pckcache, probe:150
    CHANGE  : APM : Package Cache : FROM "4191641" : TO "3937361" : success
    IMPACT  : None
    DATA #1 : String, 29 bytes
    Package Cache Resized (bytes)
    2009-08-02-23.29.54.560050+120 I1023671A484       LEVEL: Event
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, config/install, sqlfLogUpdateCfgParam, probe:20
    CHANGE  : STMM CFG DB MES: "Pckcachesz" From: "1055" <automatic>  To: "991" <automatic>
    2009-08-02-23.29.55.097984+120 I1024156A507       LEVEL: Info
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, buffer pool services, sqlbAlterBufferPoolAct, probe:90
    MESSAGE : Altering bufferpool "IBMDEFAULTBP" From: "15648" <automatic> To:
              "13914" <automatic>
    2009-08-02-23.30.25.137828+120 I1024664A494       LEVEL: Event
    PID     : 602270               TID  : 3342        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000         DB   : MES
    APPHDL  : 0-8                  APPID: *LOCAL.DB2.090729131318
    AUTHID  : MESADM 
    EDUID   : 3342                 EDUNAME: db2stmm (MES) 0
    FUNCTION: DB2 UDB, config/install, sqlfLogUpdateCfgParam, probe:20
    CHANGE  : STMM CFG DB MES: "Database_memory" From: "185520" <automatic>  To: "176480" <automatic>
    2009-08-02-23.41.12.098793+120 I1025159A362       LEVEL: Warning
    PID     : 602270               TID  : 4114        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000
    EDUID   : 4114                 EDUNAME: db2logmgr (MES) 0
    FUNCTION: DB2 UDB, data protection services, sqlpgArchiveLogFile, probe:3108
    MESSAGE : Started archive for log file S0001679.LOG.
    2009-08-02-23.41.13.334331+120 I1025522A422       LEVEL: Warning
    PID     : 602270               TID  : 4114        PROC : db2sysc 0
    INSTANCE: db2mes               NODE : 000
    EDUID   : 4114                 EDUNAME: db2logmgr (MES) 0
    FUNCTION: DB2 UDB, data protection services, sqlpgArchiveLogFile, probe:3180
    MESSAGE : Completed archive for log file S0001679.LOG to TSM chain 0 from
              /db2/MES/log_dir/NODE0000/.

  • Objects in a tablespace

    Hai all,
    How to findout the largest object and its size in a particular tablespace ?
    is there anyway we can list out that ?
    Thanks
    Yusuf

    objects of a tablespace
    List objects in tablespace
    may be helpful to you.

  • Objects in a tablespace or datafile ???

    How do we find out what objects ( tables, indexes etc ) are there in a particular tablespace ?
    Is there a way to find which object is in a particular datafile if the tablespace has more than one datafile ?

    Objects in tablespace:
    SELECT segment_name, segment_type
    FROM dba_segments
    WHERE tablespace_name = 'YOUR_TABLESPACE';Object in datafile:
    SELECT DISTINCT e.segment_name, e.segment_type, f.file_name
    FROM dba_extents e, dba_data_file f
    WHERE e.file_id = f.file_id and
          e.tablespace_name = 'YOUR_TABLEPACE'Note that a segment may be in more than one data file, so the second query can return multiple rows.
    If you only care about what segments have at least one extent in data file x, then:
    SELECT DISTINCT e.segment_name, e.segment_type
    FROM dba_extents e, dba_data_file f
    WHERE e.file_id = f.file_id and
          f.file_name = 'your_file_name'TTFN
    John

  • TableSpace Objects and Size

    Hello Oracle Community,
    DB: 11.1.0.7.0
    How can I see what database objects (tables, indexes, etc.) are stored in a given tablespace and what is the best way to shrink the size of a tablespace/datafiles ?
    IKrischer

    You can see the mapping of objects to tablespaces as well as the amount of space an object takes up by using the DBA_SEGMENTS view. As far as shrinking datafiles you may want to check out this AskTom thread: Reclaim space

  • Top n Growing tables in BW & R/3 with Oracle env

    Hi all,
    We are on BW 7.0 with Oracle 10.2.0.2 , please let me know how to get the top N growing tables & Top N largest tables.
    I remember collecting these stats from TX: DB02 when we had MS SQLserver as the DB.  It was as easy as clicking a button.  but with Oracle I have been unable to find these options in Db02 or dbacockpit.
    Thanks,
    Nick

    Nick,
    Goto tcode DB02OLD>Detailed Analysis>Object Name *, Tablespace , Objetc Type tab. You will get list of all table, you take out top 50 table from this list.
    Earlywatch report also gives list of top 20 tables. Check your earlywatch report for this.
    You can also use the following SQL query:
    select * from
    (select owner, segment_name, segment_type, tablespace_name, sum (bytes/1024/1024) MB
    from dba_extents
    where segment_type = 'TABLE'
    group by owner, segment_name, segment_type, tablespace_name
    order by MB desc)
    where rownum <= N;
    Put any value for N (e.g. 50)to find out top N growing tables & Top N largest tables.
    If you are planning to go for a table reorg then refer below link.
    Re: is it possible to see decrease of table size & size of tablespace
    Hope this helps.
    Thanks,
    Sushil

Maybe you are looking for

  • I am having a big problem downloading the basic essentials content

    Basic essentials content, 3 times in a day (This is after doing a clean install of OS X Lion on my Mac and then re-downloading Logic) i have/Logic has, tried to download the basic essentials content and then the download freezes. Whats happening?

  • Problems with Youtube thumbnails

    I am having problem with Safari while browsing Youtube thumbnail images, they either load really slow or not at all. The strange thing is Firefox browser loads them all instantly. Does anyone else have this problem? I am using an AirPort connection t

  • Major update available for the N9.

    My N9 just notified me (Finnish version) that a major update was available along with several application updates. If your doesn't notify you go into the manage applications menu and check for update from there.

  • How to retore the address bar.

    the address bar no longer appears in the opening window.

  • Color depth of the mouse cursor

    Upgraded to srss 4.2 yesterday and discovered the addition of Xrender support. After enabling it the mouse cursor switches to an animated one. This looks really horrendous, since the mousecursor is displayed in black and white (1bit color depth). Doe