Is it possible to see decrease of table size & size of tablespace

Hello
I wander is it possible to see decrease of table size & size of tablespace(in db02 or in brtools). I have in mind decrease due to archiving in XI.
Thank you in advance

Hi,
Yes it is possible to decrease of table size & inturn size of tablespace.
You can go for table reorg.
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70c8f19f-8010-2c10-ac89-8d828039d8b4.
Check SAP Note 541538 - FAQ: Reorganization
Also
1.From DB02--> detail analysis menu you can take out top 50 tables & indexes. you can mark the size of the index should be generally less than the table.If its more or very much similar size of table, you can rebuild it using SE14. This can free some space.
or else you may use brspace to do this.
http://help.sap.com/saphelp_nw70/helpdata/EN/58/6bec38c9fa7e44b7f2163905863575/frameset.htm
In case of table this option is risky as it may result in data loss.
2. Earlywatch alert gives the top 20 degenrated index. you can check that which also gives a factor 'storage quality'.
3. Run report SAP_DROP_TMPTABLES. It removes temporary database objects. ( we do this in our BW system)
Hope this helps.
Thanks,
Sushil
Edited by: Sushil Suryawanshi on May 25, 2009 1:30 AM

Similar Messages

  • Decrease Light Table Size?

    Is there a way to decrease the size of a light table? I've searched around the documentation I have and don't see any way to do that.
    I was trying to slightly increase the size of a light table I was working in when Aperture suddenly slowed down (I suppose it was doing something in the background). I held the image I was dragging to one side of the table and then suddenly Aperture became responsive again and the size of my table just shot up in the direction I was dragging that image. It's about twice the size I want it to be now and I have work on it I don't want to loose by simply deleting it and creating a new one.

    Is there a way to decrease the size of a light table?
    I've searched around the documentation I have and
    don't see any way to do that.
    Just at the top of the light table window is a little slider.

  • Is it possible to see all tables in sap

    Hi,
            I am learning abap and i am interested to know about all tables like Ekko, Ekpo, Eket, Mara, Marc....etc
            is there any possibility to find all these tables ...if any one knows kindly tell me.

    hi uday,
    this code will surely help you Tcode <b>SE85</b> just go through it and you will find all you need and if you want to where your tables are being used you can click where used icon on the screen.
    <b>SE85->ABAP Dictionary->database table</b>
    you can also find the fields as well as structures,
    hope this information will help you.
    don't forget to reward points,

  • Why in SE16 we can not  see New Data Table for standard DSO

    Hi,
    We says that there is three tables (New Data Table, Active Data Table and Change Log Table) of Standard DSO, Then Why in SE16 we can not  see New Data Table of Standard DSO.
    Regards,
    Sushant

    Hi Sushant,
    It is possible to see the 3 DSO tables data in through SE16. May be you do not have authorization to see data through SE16.
    Sankar Kumar

  • Is it possible to name the results table.

    Hi, I'm new to java and have hit a brick wall devloping a GUI which access a SAPDB database.
    They layout of the GUI is:
    have a awt lists in card layout, which is populated with the results of a SQL query to table REGION.
    However the number of results returned can be greater then 1Mill. To minimise the mem useage, i'm using the ResultSet absolute(), first() etc methods to collect and display small chunks of the data, for the different card in the gui. This works fine :)
    However, the user is able to select an item from the list to perform a new query, which the results a presented in a dialog box, not dependent on the parent frame. Works :)
    But, when the user (I) try to move anothe card in the parent frame I get this error:
    SAP DBTech JDBC: Object is closed
    com.sap.dbtech.jdbc.exceptions.ObjectIsClosedException: SAP DBTech JDBC: Object is closed
    at com.sap.dbtech.jdbc.ConnectionItem.assertOpen(ConnectionItem.java:54)
    at com.sap.dbtech.jdbc.ResultSetSapDB.beforeFirst(ResultSetSapDB.java:177)
    at blastDb.Table.getResultSetSize(Table.java:205)
    at blastDb.Table.setCursor(Table.java:227)
    at ViewDatabase$RegionPanel.setRegionList(ViewDatabase.java:354)
    at ViewDatabase$TabPanel.showRegionList(ViewDatabase.java:180)
    at ViewDatabase$TabButtonListener.actionPerformed(ViewDatabase.java:289)
    at java.awt.Button.processActionEvent(Button.java:381)
    at java.awt.Button.processEvent(Button.java:350)
    at java.awt.Component.dispatchEventImpl(Component.java:3526)
    at java.awt.Component.dispatchEvent(Component.java:3367)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:445)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:191)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:130)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)
    After some reading I have come up with this hypothesis:
    In the parent frame there is the object (class) RegionTable, which contains the ResultSet (rsR) of the sql query generated by it.
    In the dialog box there is the object (class) ProteinTable which also contains the ResultsSet (rsP) of the sql query generated by it.
    So when RegionTable querys the database the rsR points to the results table in the SAPDB. All good.
    However when ProteinTable querys the database, rsR closes and rsP is valid ie. points to the results table in the SAPDB.
    Thus after the second query RegionTable.rsR is unable to collect the results of its query. BAD :(
    From what i have read, if the results table is named for the first query, the second call which results table is named something diff then rsR will not close, as the results table is not destroyed, thus rsR can read it's results after the second qury.
    This problems occours when the objects share the same connection or diff connections.
    As far as I'm aware i'm using JDBC 1.2 drivers and SAPDB latest build.
    I know i could hold the results in a view, but that requies more coding, being able to name the results table in the SAPDB make it alot easier.
    So my question is:
    1. Are my assumptions correct??
    2. is there a SQL statement to name the results table for a given query?
    From SAPDB:
    A result table name identifies a result table (see table).
    Syntax
    <result_table_name> ::= <identifier>
    And I've got no idea what is beging impiled beyond that it is possible to name a results table. Obtained from :
    http://www.sapdb.org/htmhelp/da/ed9036dfe4b903e10000009b38f889/frameset.htm
    If anyone can help, that would be fantastic!!!
    Cheers
    fauxn

    I've check the code, when the dialog box is opened a new connection is made, and i still get the same error:
    SAP DBTech JDBC: Object is closed
    com.sap.dbtech.jdbc.exceptions.ObjectIsClosedException: SAP DBTech
    JDBC: Object is closed
    at com.sap.dbtech.jdbc.ConnectionItem.assertOpen(Connection
    Item.java:54)
    at com.sap.dbtech.jdbc.ResultSetSapDB.beforeFirst(ResultSet
    SapDB.java:177)
    at blastDb.Table.getResultSetSize(Table.java:205)
    at blastDb.Table.setCursor(Table.java:227)
    at ViewDatabase$RegionPanel.setRegionList(ViewDatabase.java
    :354)
    at ViewDatabase$TabPanel.showRegionList(ViewDatabase.java:1
    80)
    at ViewDatabase$TabButtonListener.actionPerformed(ViewDatab
    ase.java:289)
    at java.awt.Button.processActionEvent(Button.java:381)
    at java.awt.Button.processEvent(Button.java:350)
    at java.awt.Component.dispatchEventImpl(Component.java:3526
    at java.awt.Component.dispatchEvent(Component.java:3367)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:445)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Ev
    entDispatchThread.java:191)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Even
    tDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThr
    ead.java:138)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThr
    ead.java:130)
    at java.awt.EventDispatchThread.run(EventDispatchThread.jav
    a:98)
    when i ask rsR to collect the results from it's query.
    Dosen't make sence, unless its they way I'm implementint the GUI???
    I'll look into the JDBC driver bug.
    Cheers

  • Is it possible to increase/decrease pages based on a number selected from a dropdown?

    I need to the end user to fill out information on between 1 and 5 properties.  Is it possible to increase/decrease the number of identical forms pages based on a dropdown from page one?  For example, if the local property manager decides there are 3 competing properties being developed, they will select 3 from a dropdown on the first page and three identical pages will be generated.
    Thanks

    This might be usuful to you : http://forums.adobe.com/message/5638520
    See this example : https://adobeformscentral.com/?f=dCixP9gCn9BlK72%2AKla92w
    Gen

  • Is it possible to export (expdp) oracle table from client machine ?

    Is it possible to export (expdp*) oracle table from client machine, without using Remote desk top connection ?*
    1) Database-10g server is in America
    2) client machine is in India
    3) Oracle client-10g software is installed in my machine
    4) I am able to connect to the server, could see all tables
    5) one table is with 35 million record, I wanted to export this table using data pump, is it possible?
    note: without using Remort desk top connection.

    Hi
    I used the following syntax , but I am getting error
    6) connect sys as sysdba
    create directory test_dir as '/dbusr1/exp_test'
    grant read, write on directory test_dir to user1;
    7) expdp user1/pwd1@xyz tables=test_1 directory=test_dir dumpfile=test_file.dmp logfile=test_file.log
    8) Errors
    In linux prompt I am getting this error
    -bash: expdp: command not found
    In windows cmd prompt I am getting this error
    ORA-39002: invalid operation
    ORA-39070: Unable to open the log file.
    ORA-29283: invalid file operation
    ORA-06512: at "SYS.UTL_FILE";, line 488
    ORA-29283: invalid file operation
    9) why ?
    -- Does the user ( "user1") should have any system level privilege ? to export his own table?
    -- This folder ('/dbusr1/*exp_test'*) has write privilege in os level.
    Thanks in advance
    sbmk_design
    Edited by: sbmk_design on Aug 24, 2009 12:06 AM

  • Is it possible to add counter in table maintenance (automatically)?

    sap ver. 4.7
    is it possible to generate counter in table maintenance (automatically)?
    i mean without building dialog screen  / table control  .
    exmple  :
    the user insert .....
    name
    name
    name
    name
    i add as key (automatically)
    1
    2
    3
    4

    Hi,
    It is possible to do the same by not adding new dialog screen / table control .All table maintainance are infact module pool programs ...While creating a tabe maintainance we have an option of 2 step or 1 step ->these screen numbers are the ones which are displayed  in table maintainace SM30
    So we can infact do coding in PAI and PBO of these screens.
    But the main disadvantage is that if you re-generate the table maintainace the code in PAI and PBO gets deleted for that screen
    eg:if you table maintainance is assigned to function group ZFXNGROUP -> go to se38 -> see program SAPLZFXNGROUP
    just add SAPL to function group suffix to get the module pool and the view screen number(same as that given in table maintainace for step1 and step2) ..in the PBO /PAI write the necessary code to increment the counter..
    we can just do a loop at screen and hide the counter field while incrementing in the PAi/PBO logic as required
    But once again,regeneration of table maintainace in the screen overwrites the PBO/PAI..the best we can do is create subroutines and write the code in a new include..so that everytime the code is overwritten...we need to just write the subroutine name in flow logic since includes are not overwritten in regenerations
    Also if we use the same function group for multiple table maintainance we have different screens,Pls make sure you are not editting the wrong screens......
    Hope it helps
    Pls check and revert
    Regards
    Byju

  • CO - After cost revaluation is it possible to see its original value?

    Hi SAP consultants !
    After cost revaluation is it possible to see both: the new cost (revaluated) and its prior value (before revaluation)? Despite I think it is not possible I searched for such information in some tables (COEJT, COEJL,  COEPL, and others) but find nothing.
    Thank you all,
    Naej
    Edited by: Naej on Sep 20, 2010 5:45 PM

    Eli, Matej thanks for your input. My question is pretty much answered as for as CO-CCA is concerned, in that it cannot be done.
    As for this requirement, I have decided to go another route in entering customer forecast data by using CO-PA. Entry of customer forecast data via SD schedule line (with MRP turned off) and having that data transferred to CO-PA.
    Thanks again,
    Ken

  • Is it possible to see how many COGI errors I have cleared in previous month and in which transaction I can able to see that record?

    Is it possible to see how many COGI errors I have cleared in previous month and in which transaction I can able to see that record?

    Mukundan,
    Refer Below SAP Note 1868084 - FAQ: Transaction COGI
    Question:
    Is it possible to log the actions in transaction COGI?
                  Answer:
    SAP Note 309050 provides a modification but it can only be used temporarily. Also refer to SAP Note 1894587 in this context. It provides a report for displaying and deleting the data records in the log table AFFWPRO.
    BR
    KK

  • Eroro while tryin gto see the setup table content

    HI gurus,
    i would like to see the setup table content for 2lis_11_vahdr.
    when iam trying to got to T-cOde -OLI11BW it is saying that " No extract structure is activated or bw not connected" , i checked that extract structure is in active state . plase let me know the possible causes for this error.
    Praveen

    hello praveen
    u can see the setup table contents in SE11
    give table name as MC11VA0HDRSETUP for header level
                                MC11VA0ITMSETUP  for itm level
                                MC11VA0SCLSETUP for scl level.
    and one more OLI7BW IS FOR STATISTICAL SETUP OF SALES ORDER DS.                          
                     OLI8BW IS FOR STATISTICAL SETUP OF SD DELIVERY DS.                          
                     OLI9BW IS FOR STATISTICAL SETUP OF SD BILLING DS.
    PLS AGGIGN POINTS IF IT WORKS FOR U,
    THANKS,
    PAVAN.
    Edited by: pavan kumar on Feb 15, 2008 8:47 AM

  • Is it possible to see SQL in SQL-T without having to check out the mapping?

    Hello guys, Is it possible to see SQL in SQL-T without having to check in the mapping? At my work they use SQL-T a lot and in SQL query tab they use a lot of SQL so I was wondering if you can see the query without checking out the mapping?  Let me know. Thanks

    Hi All, I am facing an issue wherein Decimal value of 0.01 is getting converted to 0.00. Let me brief you about Source-Target Types Source - Flat FileTarget - DB2Powercenter Version - 9.6.1 HF2 Issue -  Field in Source Flat file is defined as Number(5,2). Corrosponding field from DB2 Target Table is defined as Decimal(5,2). Mapping is simple straight forward mapping with 1:1 loading from Source to Target. Now, my Source File contain data as below0.010.020.0312.01 When I execute mapping DB2 target Table gets loaded with all records. Value from corrosponding field from DB2 target table is - 0.000.020.0312.01 As you can see, value of 0.01 is getting converted to 0.00 where as all other values are working fine as expected. As a quick fix I have applied to_decimal(source_field,2) before loading into Target. Could anyone explain if this is a bug in Powercenter or there's some other issue. If I think its a rounding issue then how come value of 0.02 is getting processed correctly? Please advise. Thanks,Rajesh Agrawal

  • Is it possible to see who has saved progress on a web form, but not submitted?

    We are using FormsCentral for our application process, and we are allowing applicants to save forms. Is it possible to see who has started a web form, and saved it, but hasn't submitted yet? Maybe by cc'ing the email notificiation they get to an admin?
    We'd like to see who is working on the applications, and also to send them a reminder that they need to complete and submit the form by the deadline.

    Hi;
    No, there isn't a way for you to see anything about who has saved progress.
    Thanks,
    Josh

  • Not seeing all DB tables in Crystal using ODBC connection

    I have an ODBC connection to an oracle database.  I can connect to the database and see all the tables through tools such as TOAD, SQL developer, SQLPlus, etc.  However, in Crystal, i only see schema tables and not the tables I want.  I am using the same connection, username, and password.  If I run a report that was created in a different environment to the correct tables, I receive the error: ORA00942: table or view does not exist.
    Oracle 10g
    Crystal 12.0.0.683
    Any suggestions?
    Thanks,
    Diana Woronuk

    Hi Diana,
    Go to File | Options and open the Database tab. 
    Make sure Tables and Views are checked.  You may want to include Stored Procedures too. 
    Save the changes and restart Crystal. 
    You should see your tables now.  If you have more than 200 objects in your database, you may need to use the Table Name Like option to filter out some of the tables. 
    Good luck,
    Brian

  • How to see lock on table and query?

    Hi All,
    How do we see lock on table and query?
    Thanks,
    Rafi

    Yes Rafi,
    It is working fine at my end. See below:
    Opened Session 1 with scott/tiger and:
    update emp set ename='xx' where empno=7499;
    Opened Session 2 with scott/tiger and:
    update emp set ename='xx' where empno=7499;
    <<Its lock here>> This session is locked by above one.
    Opened Session 3 with sys/pw as sysdba and:
    SQL> set serveroutput on
    SQL> BEGIN
      2  dbms_output.enable(1000000);
      3  for do_loop in (select session_id, a.object_id, xidsqn, oracle_username, b.owner owner,
      4  b.object_name object_name, b.object_type object_type
      5  FROM v$locked_object a, dba_objects b
      6  WHERE xidsqn != 0
      7  and b.object_id = a.object_id)
      8  loop
      9  dbms_output.put_line('.');
    10  dbms_output.put_line('Blocking Session : '||do_loop.session_id);
    11  dbms_output.put_line('Object (Owner/Name): '||do_loop.owner||'.'||do_loop.object_name);
    12  dbms_output.put_line('Object Type : '||do_loop.object_type);
    13  for next_loop in (select sid from v$lock
    14  where id2 = do_loop.xidsqn
    15  and sid != do_loop.session_id)
    16  LOOP
    17  dbms_output.put_line('Sessions being blocked : '||next_loop.sid);
    18  end loop;
    19  end loop;
    20  END;
    21  /
    Blocking Session : 139
    Object (Owner/Name): SCOTT.EMP
    Object Type : TABLE
    Sessions being blocked : 134
    PL/SQL procedure successfully completed.HTH
    Girish Sharma

Maybe you are looking for

  • Issue in creation of level 2 WBS for level 1  WBS which is released

    Hello All, I am trying to create a level 2 WBS for a alrealy created level 1 WBS using BAPI_BUS2054_CHANGE_MULTI .If the level 1 WBS is not released then level 2 WBS gets created .However if the level 1 is released then level 2 WBS doesnt gets create

  • Manually added tracks put my iPhone over capacity. Now I can't sync. Help!

    I have a number of Audiobook I tried to sync to my phone.  I could not find anywhere in the iPhone settings to choose to sync these (anyone know where?).  So I manually added them by dragging them from iTunes onto the iPhone.  However they are very l

  • Bluetooth module no longer recognised in Mac Pro

    My Mac Pro's been doing some strange things recently. A couple of days ago I noticed things were running very slowly, just moving windows about they would jerk and jitter. Tried hardware test, disk utility etc but no problems found. I then unplugged

  • Importing Exchange Address Book Into Mail

    So I setup my exchange account without any issues but I'm somewhat struggling to figure out how to import my company (exchange) address book. Can anyone assist?

  • N95 Recorded Video: Video and audio is out of sync

    Audio and video is out of sync when I play videos recorded with N95 on my PC. If have used different PC applications to play the video, but all exhibit the same problem. In the beginning of at video it seems that the audio is about 400milliseconds ah