How to reorg my tables that being updated very frequently during batch jobs

Hello All,
See I have 4 tables of them 250+ Gb and rest 2 50+(<100) Gb in size.
Now client is asking to reorg them. No I have two questions
1. When I should go for reorg.?
2. and how?
Thanks in advance.
Regards,
Alok

user577981 wrote:
Hello All,
See I have 4 tables of them 250+ Gb and rest 2 50+(<100) Gb in size.
Now client is asking to reorg them. No I have two questions
1. When I should go for reorg.?
2. and how?
Thanks in advance.
Regards,
AlokAnd I'd ask the client "Why?" What problem is exhibiting itself that would indicate a table reorg is the proper response?
You'd be surprised how many "clients" - includeing commercial software developers, don't understand db internals and look for silver bullet solutions to problems, or even "anticipated" problems.
That's not not say that there <i>isn't</i> a legit reason for doing a table reorg, but there are far fewer occurances of legit reasons than there are people demanding table reorgs simply because they don't know what else to do.

Similar Messages

  • How to get which tables are being updated by running any transaction code

    Hi experts,
    please tell me how to find which system table are being updated after running any transaction code .
    please tell me the procedure to find that.
    Thanks & Regards,
    Yogesh

    Hi yogesh patil,
    for the dbtable..
    goto technical settings and activate the log...
    it will tells u..
    transaction...Table history (SCU3)
    Log data changes
    The logging flag defines whether changes to the data records of a table
    should be logged. If logging is activated, every change (with UPDATE,
    DELETE) to an existing data record by a user or an application program
    is recorded in a log table in the database.
    Note: Activating logging slows down accesses that change the table.
    First of all, a record must be written in the log table for each change.
    Secondly, many users access this log table in parallel. This could cause
    lock situations even though the users are working with different
    application tables.
    Dependencies
    Logging only takes place if parameter rec/client in the system profile
    is set correctly. Setting the flag on its own does not cause the table
    changes to be logged.
    The existing logs can be displayed with Transaction Table history (SCU3)
    Reward points if helpful

  • How and when does table SWIWIOBJCT being updated / populated with workitem

    Hi Experts,
    I am currently debugging an issue wherein a Invoice Workflow is being displayed in the Purchase Order Workflow Overview. I debugged this and found out that this is because there are entries being selected from table SWIWIOBJCT and this will be also displayed in the workflow overview.
    So what I am trying to look into is how does this table being populated. Like, what are the criteria and requirements that this table will be updated / populated.
    Any help is highly appreciated.
    Thanks so much in advance,
    Larissa
    Edited by: Larissa Taguiamon on Apr 14, 2010 7:48 PM

    Abdullah
    The EKBE table will have items related to PO history - so if you go to a PO line item and look at the PO history you will see an invoice but you will NOT see a payment.   Payments are not directly related to a PO and therefore no payment information would appear in your PO history and therefore it wouldn't be on the EKBE table either 
    Sandra

  • How do I keep information that's updated on a MacBook to update on my IMac? Such as pictures, bookmarks, etc.?

    How do I keep information that's updated on a MacBook to update on my IMac? Such as pictures, bookmarks, etc.?

    Thanks. Manual buckets isn't as elegant as auto-detect by network name, but it's certainly easier than changing settings in networking.
    kb article: http://support.apple.com/kb/PH10656

  • I am trying to update my ipod touch but it says that the update was corrupted during download

    I am trying to update my ipod touch but it says that the update was corrupted during download

    Try disabling the computer's antivirus and firewall.
    - Next try the manual install method of:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch
    - Then try on another computer
    - Try when connected to another network

  • How to know the List of Tables that are updated through a ABAP Program

    Hi,
    Is there a program or something that will help me to identify the List of Tables that are used in a ABAP program(ABAP Report, Transaction .... program) without debugging it or looking at the dictionary structure.
    I really need this urgently. Try to give me many methods as possible.
    Thkx
    Kishan

    Hi,
    I created a Z-transaction for my SE49 and debugged a little bit - it's not so fantastic any longer - just like the proposal of SE80 - DDIC list.
    SE49 (and I guess similiar functions, too) just scan the source code for a list of key words: tables, select, update, insert, modify, export, import.
    But very (very!) often updates are encapsulated into function modules - and here this technical cross reference (just like SE80 DDIC list) is of no help.
    So a SQL trace (or runtime analysis) is still the best option to get a complete list. Still these tools just analysis one process - if in other circumstances more tables are involved, can't be judged.
    E.g.:
    - creating one new entry: 1 table
    - changing existing entry: 2 accesses to 1 table + log table
    Regards,
    Christian

  • How to see what Tables are being used in all reports

    Post Author: tmashley
    CA Forum: Crystal Reports
    Hello,
    How can I see what database tables are used in all my online reports? I have around 1000 reports posted to Enterprise over 6 different datasources. If possible I would like to see the fields within those tables that are being used to.
    I am using Crystal Reports XI Release 2
    Any help is appreciated
    Thanks,
    Tom

    I don't think you can see the databases of the reports unless you download the report onto your pc as a Crystal Report format and then open it under Crystal Reports.
    This way it will open the report within Crystal Reports and will show you the datasource it is coming from.
    I doubt if you can see them online.
    Kind Regards
    Jehanzeb

  • How To display a table that resides in the database via JFrame.

    Hi,
    I need to display the contents that present in the table that resides in my database.
    Scenario:
    Im having Main frame window, in that im having a button, while clicking that button a new JFrame should be opened & it should display all the rows & cols of dat table that resides in my DB.
    I have no prob in opening a new JFrame during a button click, but i dont knw how to display table in the table format.
    I tried JTable but i dont know how to pass the data into the JTable.
    Kindly help me out!!!

    JTable relies on a TableModel to deliver data. You have several ways of providing this data:
    - Read it into either a Vector of Vectors (list of rows containing list of columns) or an Object[][] and create the JTable while passing the data.
    - Create a javax.swing.table.DefaultTableModel, pass it to the JTable as a model, configure it and call addRow() in order to add rows.
    - Create a custom table model class; see javax.swing.table.AbstractTableModel for a convenient base class

  • How to list all  tables that belongs to the current user?

    hi all
    "select tblowner,tblname from tables where tblowner in (select user from dual);"
    I want a list of all tables that belongs to the current user. I use the SQL above, but given "no rows selectd",but if
    I replace the subquery with literal,like
    "select tblowner,tblname from tables where tblowner = 'JFMDB');".
    I got the list. why?
    Thnk u very much!

    This looks like a bug that was fixed in 7.0.5.13 and onwards. I can reproduce what you are seeing in 7.0.5.10.0 (Linux x86-64 / Access control enabled instance from root install) but not 7.0.5.13.0 (Linux x86-64 / Access control enabled instance from root install).
    Unfortunately I don't have a bug number to pass on. I can't see anything relevant listed in the Release Notes and I haven't found a likely candidate in our internal listings. This may well have been one that was fixed "in passing" when RnD were working on something similar.

  • Is there a way to find the temporary table that are created or read during?

    Hi All,
    I'm working on performance optimization where I have to find the temporary tablespaces that are created or read during runtime? Is there any way to find it?
    Can you please also tell me how the temporary tables are created? And after each run time whether the data is getting deleted or the whole table is getting deleted?
    Whether these tables are created only during runtime? What are the naming conventions for all the temporary tables that are created?
    Is the table creation has anything to do with Delta or Full load?
    Regards,
    Kartik

    Stephen Tyler Bloom wrote:
    When they come out with the next garageband, they should add that feature .
    be sure to let Apple know:
    http://www.bulletsandbones.com/GB/GBFAQ.html#sendfeedback
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • How to get a graphical display of spool request after a batch job?

    Hi all,
    I have scheduled a bunch of batch jobs. When I run sm37 to look at the finished jobs, I can see that there is a "papirus like ikon" in the second column, Ln, (the one on the right from the job names) for some of the jobs, but not for the most of them. 
    Now when I, in sm37, mark this job for which I have an "papirus like ikon", press a "Spool" icon on top of the screen, then mark one step and press the "google icon" I get an output of what job performed in that step. That output usually gives a quite good information of what the program did (e.g. Nr of lines deleted, OP released).
    Now my question is how do I get that spol output for the rest of the jobs as well?
    Thanks and Kind Regards,
    Armin

    Hi Thomas,
    As you said, the OTF is stored as is in the spool file, and you can read it using the C calls, or use RSPO_RETURN_SPOOLJOB function module for example.
    Note that using SP01, you can send a spool via a menu entry, which corresponds to function module RSPO_SPOOLJOB_TO_OFFICE.
    Best regards
    Sandra

  • Where to update spool Title for batch job

    Dear Experts,
    We have a requirement to update spool title for a batch job. I have updated spool title under step--> print specifications --> Title. But the spool title is not updated. Can u pls. guide me is there any place where I have to update the spool title.
    Thanks,
    Vinay

    Hi Vinay,
    In SM36 in STEP definition after the report name is filled, press button Print specifications, then button Properties. There you can change the Spool request properties, such as Name, Title and Authorization.
    Regards,
    Prathyusha Malempati

  • How can I verify that the Trace and Points tables are being updated?

    I am using MSQuery to look at the data in my Citadel database, but it appears there is no data in the database. There are transactions in the A/E viewer. I am totally new to lookout and citidel. TIA.

    Hi Jeff,
    Here are some old articles on accessing Citadel 4 data from MSQuery and MSAccess. These should at least give you a starting point:
    http://zone.ni.com/devzone/conceptd.nsf/webmain/85CECF0AEEC5B1B28625680800733CC6
    http://zone.ni.com/devzone/conceptd.nsf/webmain/0A3D4EEAC9208065862568080072DB9F
    Also, do you have NI-MAX? You can check for data in there too.
    Hope this helps,
    Khalid

  • ECC 6-  Table that gets updated when Currency Translation to Group Currency

    Hi All,
    I would like to know which table gets updated with the Values when we execute tcode "FAGL_FC_TRANS"?
    I would like to see the values that system posted during April 09, May09 etc for each GL that was Translated into Group Currency using the tcode.
    under SE16, i tried checking for all tables with FAGL*, but could not figure out the exact table.
    Thanks
    Vijay

    BKPF gets updated - The T Code you will in those entries in BKPF is FBB1, Business Trans. will be RFBU and Ref. Transaction will be BKPF.
    BSEG gets updated - Activity Type RFBU.  You will not see any non-zero amounts in transaction currency and local currency.  In group currency, you will see a non-zero number.
    FAGLFLEXA gets updated - Transaction RFBU, Ref. Transaction BKPF - No amounts in TC and LC.  Amount in GC.
    FAGLFLEXT gets updated - Transaction RFBU, Ref. Transaction BKPF.  Again, nothing in TSLxx and HSLxx.  Amounts in KSLxx (xx being the period in which you have posted translation).

  • How ENABLED_FLAG on PO_VENDORS table will get updated?.

    All,
    Can someone please post how this ENABLED_FLAG on PO_VENDORS table gets updated to 'Y' vs 'N'. What is the process updated it?. Isn't it based on END_DATE_ACTIVE?. Because i see few vendors for whom END_DATE is past date but still ENABLED_FLAG is 'Y'.

    As far as I know Summary_Flag column was added in earlier version of Oracle Applocations to all the application tables. Even PO_HEADERS_ALL has it though it is never used.
    Last time when I had done some RnD i had concluded it has some thing to do with KFFs.
    Thanks
    Arun

Maybe you are looking for

  • Public SharePoint Online Site with External User Portal

    Hello Everyone,<o:p></o:p> My company switched over to Office 365 a few months ago, and now would like to start using our Public SharePoint site to share information (documents pertaining to their orders/drawings/etc.) with our customers (external us

  • Can't open email document in Pages

    I have a new iPad Mini and just downloaded the Pages app.  I want to open a word document from email, but when I tap the "arrow box" icon, I only get a choice to print, rather than an "Open in Pages" choice.  How can I fix this?

  • .mov Files have Black Thumbnail in iPhoto '08 and MobileMe Galleries

    I'm guessing this is possibly because the video starts from black and fades in? Is there any way to force iPhoto to use something other than the first frame for the thumbnail? Message was edited by: dixonge (to correct typo in Subject)

  • Airport Extreme: Does it need to be connected to the internet to function?

    I'm dealing with some wireless connectivity issues and I'll post a new thread once about that once I confirm that the issue isn't originating with my ISP. But for now I want to know: *Should the AEBS still function to provide wireless connectivity be

  • Can't see, quickview or open email attachments...

    iPad 2-I can receive emails fine, but cannot see, quickview or open email attachments. I've been sent PDFs and can see a paper clip icon in email list view, but no PDF icon in the email. Why? Thanks.