Table D010L and D010Q very big

hi,
i looked to the table size of our production R/3-machine, and saw that
there are about 5 millionen rows in Table D010L and 2 Million in D010Q.
Does anybody know what this tables are for ? I read something about 'generating tables for apab.......' etc..........
And HOW can i reorganize this tables ? is there a way ?
regards, Martin

These are program loads, NEVER delete them or you will not be able to connect to R/3 .....
regards
PS: look at notes like https://service.sap.com/sap/support/notes/13170 will get you some ideas...

Similar Messages

  • SAPSR3DB   XMII_TRANSACTION table LOG column is very big

    Hi,
    We have a problem about MII server.
    SAPSR3DB   XMII_TRANSACTION table LOG column is very big data in it.
    How can it be decrease the size of data in this column?
    Regards.

    In 12.1 its XMII Administration Menu (Menu.jsp) --> System Management --> DefaultTransactionPersistance.
    In production I recommend setting this to 'ONERROR'
    There is also the TransactionPersistenceLifetime which determines how long entries will stay in the log table.
    We set this to 8 hours.

  • What is the easiest way to create and manage very big forms?

    I need to create a form that will contain few hundred questions. Could you please give me some advise on what is the easiest way to do that? I mean for example is it easier to create everything in Word (since it is easier to manage) and than create a form based on that?
    My concern is that when I will have a very big form, containing different kinds of questions and with many scripts, managing it during work will be slow and difficult, for example adding a question in the middle of the form which would require moving half of the questions down which could smash the layout etc.
    What is the best practise for that?
    Thanks in advance

    Try using Table and Rows for this kind of forms. These forms will have the same look throught with a question and and answer section..
    In the future if you want to add a new section, you can simply add rows in between..
    Thanks
    Srini

  • Ffmpeg and a very big logfile

    I was converting a movie during the night with ffmpeg. x264_2pass.log.mbtree was 20Gb. Thats rather big I think. I am using this command:
    ffmpeg -i Batman-The\ Dark\ Knight.m4v -y -pass 1 -an -vcodec libx264 -vpre slow_firstpass -vpre ipod640 -b 1500k -bt 1000k -threads 0 -s 800x480 -aspect 16:9 -f ipod Batman-TheDarkKnight.mp4
    It can't be correct that the log should be 10 times bigger then the original size of the movie. What is wrong?

    Go to your nearest airtel or aircel office. They will charge you for an unlock but its totally worth it.

  • Improve the performance in stored procedure using sql server 2008 - esp where clause in very big table - Urgent

    Hi,
    I am looking for inputs in tuning stored procedure using sql server 2008. l am new to performance tuning in sql,plsql and oracle. currently facing issue in stored procedure - need to increase the performance by code optmization/filtering the records using where clause in larger table., the requirement is Stored procedure generate Audit Report which is accessed by approx. 10 Admin Users typically 2-3 times a day by each Admin users.
    It has got CTE ( common table expression ) which is referred 2  time within SP. This CTE is very big and fetches records from several tables without where clause. This causes several records to be fetched from DB and then needed processing. This stored procedure is running in pre prod server which has 6gb of memory and built on virtual server and the same proc ran good in prod server which has 64gb of ram with physical server (40sec). and the execution time in pre prod is 1min 9seconds which needs to be reduced upto 10secs or so will be the solution. and also the exec time differs from time to time. sometimes it is 50sec and sometimes 1min 9seconds..
    Pl provide what is the best option/practise to use where clause to filter the records and tool to be used to tune the procedure like execution plan, sql profiler?? I am using toad for sqlserver 5.7. Here I see execution plan tab available while running the SP. but when i run it throws an error. Pl help and provide inputs.
    Thanks,
    Viji

    You've asked a SQL Server question in an Oracle forum.  I'm expecting that this will get locked momentarily when a moderator drops by.
    Microsoft has its own forums for SQL Server, you'll have more luck over there.  When you do go there, however, you'll almost certainly get more help if you can pare down the problem (or at least better explain what your code is doing).  Very few people want to read hundreds of lines of code, guess what's it's supposed to do, guess what is slow, and then guess at how to improve things.  Posting query plans, the results of profiling, cutting out any code that is unnecessary to the performance problem, etc. will get you much better answers.
    Justin

  • Optimize delete in a very big database table

    Hi,
    For delete entries in database table i use instruction:
    Delete from <table> where <zone> = 'X'.
    The delete take seven hours (the table is very big and  <zone> isn't an index)
    How can i optimize for reduce the delete time.
    Thanks in advance for your response.
    Regards.

    what is the size of the table and how many lines are you going to delete?
    I would recommend you to delete only up to 5000 or 10000 records in one step.
    do 100 times.
    select *
              from
              into table itab.
              where
              up to 10.000 records.
    if ( itab is initial )
      exit.
    endif.
    delete ... from table itab.
    commit work.
    If this is still too slow, than you should create a secondary index with zone.
    You can drop the index after the deletion is finished.
    Siegfried

  • Very big problem with JSF about FORM and "id=" for HTML form's elements and

    I have discovered a very big problem with JSF about FORM and "id=" for HTML form's elements and java instruction "request.getParameterNames()".
    Suppose you have something like this, to render some datas form a Java Beans :
    <h:dataTable value="#{TablesDb2Bean.myDataDb2ListSelection}" var="current" border="2" width="50%" cellpadding="2" cellspacing="2" style="text-align: center">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name"/>
    </f:facet>
    <h:outputText id="nameTableDb2" value="#{current.db2_name_table}"/>
    </h:column>
    </h:dataTable>
    Everything works fine...
    Suppose you want to get the name/value pairs for id="nameTableDb2" and #{current.db2_name_table} to process them in a servlet. Here is the HTML generated :
    <td><span <span class="attribute-name">id=<span class="attribute-value">"j_id_jsp_1715189495_22:0:nameTableDb2">my-table-db2-xxxxx</span></td>
    You think you can use the java instructions :
    Enumeration NamesParam = request.getParameterNames();
    while (NomsParam.hasMoreElements()) {
    String NameParam = (String) NamesParam.nextElement();
    out.println("<h4>"++NameParam+ "+</h4>);
    YOU ARE WRONG : request.getParameterNames() wants the syntax *name="nameTableDb2" but JSF must use id="nameTableDb2" for "<h:outputText"... So, you can't process datas in a FORM generated with JSF in a Servlet ! Perhaps I have made an error, but really, I wonder which ?
    Edited by: ungars on Jul 18, 2010 12:43 AM
    Edited by: ungars on Jul 18, 2010 12:45 AM

    While I certainly appreciate ejb's helpful responses, this thread shows up a difference in perspective between how I read the forum and how others do. Author ejb is correct in advising you to stay inside JSF for form processing if form processing is what you want to do.
    However, I detect another aspect to this post which reminds me of something Marc Andreesen once said when he was trying to get Netscape off the ground: "there's no such thing as bad HTML."
    In this case, I interpret ungar's request as a new feature request. Can I phrase it like this?
    "Wouldn't it be nice if I could render my nice form with JSF but, in certain cases, when I REALLY know what I'm doing" just post out to a separate servlet? I know that in this case I'll be missing out on all the nice validation, conversion, l10n, i18n, ajax, portlet and other features provided by JSF".
    If this is the case, because it really misses the point of JSF, we don't allow it, but we do have an issue filed for it
    https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=127
    If you can't wait for it to be fixed, you could decorate the FormRenderer to fix what you want.
    I have an example in my JSF book that shows how to do this decoration. http://bit.ly/edburnsjsf2
    Ed

  • Very Big Table (36 Indexes, 1000000 Records)

    Hi
    I have a very big table (76 columns, 1000000 records), these 76 columns include 36 foreign key columns , each FK has an index on the table, and only one of these FK columns has a value at the same time while all other FK have NULL value. All these FK columns are of type NUMBER(20,0).
    I am facing performance problem which I want to resolve taking in consideration that this table is used with DML (Insert,Update,Delete) along with Query (Select) operations, all these operations and queries are done daily. I want to improve this table performance , and I am facing these scenarios:
    1- Replace all these 36 FK columns with 2 columns (ID, TABLE_NAME) (ID for master table ID value, and TABLE_NAME for master table name) and create only one index on these 2 columns.
    2- partition the table using its YEAR column, keep all FK columns but drop all indexes on these columns.
    3- partition the table using its YEAR column, and drop all FK columns, create (ID,TABLE_NAME) columns, and create index on (TABLE_NAME,YEAR) columns.
    Which way has more efficiency?
    Do I have to take "master-detail" relations in mind when building Forms on this table?
    Are there any other suggestions?
    I am using Oracle 8.1.7 database.
    Please Help.

    Hi everybody
    I would like to thank you for your cooperation and I will try to answer your questions, but please note that I am a developer in the first place and I am new to oracle database administration, so please forgive me if I did any mistakes.
    Q: Have you gathered statistics on the tables in your database?
    A: No I did not. And if I must do it, must I do it for all database tables or only for this big table?
    Q:Actually tracing the session with 10046 level 8 will give some clear idea on where your query is waiting.
    A: Actually I do not know what you mean by "10046 level 8".
    Q: what OS and what kind of server (hardware) are you using
    A: I am using Windows2000 Server operating system, my server has 2 Intel XEON 500MHz + 2.5GB RAM + 4 * 36GB Hard Disks(on RAID 5 controller).
    Q: how many concurrent user do you have an how many transactions per hour
    A: I have 40 concurrent users, and an average 100 transaction per hour, but the peak can goes to 1000 transaction per hour.
    Q: How fast should your queries be executed
    A: I want the queries be executed in about 10 to 15 seconds, or else every body here will complain. Please note that because of this table is highly used, there is a very good chance to 2 or more transaction to exist at the same time, one of them perform query, and the other perform DML operation. Some of these queries are used in reports, and it can be long query(ex. retrieve the summary of 50000 records).
    Q:please show use the explain plan of these queries
    A: If I understand your question, you ask me to show you the explain plan of those queries, well, first, I do not know how , an second, I think it is a big question because I can not collect all kind of queries that have been written on this table (some of them exist in server packages, and the others performed by Forms or Reports).

  • No checkboxes and very big comboboxen when creating own L&F

    Hello,
    I wanted to create my own look and feel bij extending from BasicLookAndFeel. M class:
    import javax.swing.plaf.basic.*;
    import javax.swing.*;
    public class PlanonLookAndFeel extends BasicLookAndFeel
    //~ Constructors ................................................
    * @return The name for this look-and-feel.
    public String getName()
    return "Planon";
    * We are not a simple extension of an existing
    * look-and-feel, so provide our own ID.
    * <p>
    * @return The ID for this look-and-feel.
    public String getID()
    return "Planon";
    * @return A short description of this look-and-feel.
    public String getDescription()
    return "The Planon Look and Feel";
    * This is not a native look and feel on any platform.
    * <p>
    * @return false, this isn't native on any platform.
    public boolean isNativeLookAndFeel()
    return false;
    * This look and feel is supported on all platforms.
    * <p>
    * @return true, this L&F is supported on all platforms.
    public boolean isSupportedLookAndFeel()
    return true;
    protected void initSystemColorDefaults(UIDefaults table)
    String[] defaultSystemColors = {
    /* Color of the desktop background */
    "desktop", "#005C5C",
    /* Color for captions (title bars) when they are active. */
    "activeCaption", "#000080",
    /* Text color for text in captions (title bars). */
    "activeCaptionText", "#FFFFFF",
    /* Border color for caption (title bar) window borders. */
    "activeCaptionBorder", "#D4D0C8",
    /* Color for captions (title bars) when not active. */
    "inactiveCaption", "#808080",
    /* Text color for text in inactive captions (title bars). */
    "inactiveCaptionText", "#D4D0C8",
    /*Border color for inactive caption (title bar) window borders.*/
    "inactiveCaptionBorder", "#D4D0C8",
    /* Default color for the interior of windows */
    "window", "#FFFFFF",
    "windowBorder", "#000000",
    "windowText", "#000000",
    /* Background color for menus */
    "menu", "#D4D0C8",
    /* Text color for menus */
    "menuText", "#000000",
    /* Text background color */
    "text", "#D4D0C8",
    /* Text foreground color */
    "textText", "#000000",
    /* Text background color when selected */
    "textHighlight", "#0A246A",
    /* Text color when selected */
    "textHighlightText", "#FFFFFF",
    /* Text color when disabled */
    "textInactiveText", "#808080",
    /* Default color for controls (buttons, sliders, etc) */
    "control", "#D4D0C8",
    /* Default color for text in controls */
    "controlText", "#000000",
    "controlHighlight", "#D4D0C8",
    /* Highlight color for controls */
    "controlLtHighlight", "#FFFFFF",
    /* Shadow color for controls */
    "controlShadow", "#808080",
    /* Dark shadow color for controls */
    "controlDkShadow", "#000000",
    /* Scrollbar background (usually the "track") */
    "scrollbar", "#E0E0E0",
    "info", "#FFFFE1",
    "infoText", "#000000",
    /* color for planon application */
    "planonMainColor", "#6787BA"
    loadSystemColors(table, defaultSystemColors, isNativeLookAndFeel());
    This works oke, but when i try to display a combox, it looks really ugly (a very big arrow and no borders). The checkbox isn't even displayed. Does anyone have a clue about this?
    Thanks in advance
    Hugo Hendriks

    are there docu/tutorials which discribe how to create your own look and feel???????????????

  • How does table SMW3_BDOC become very big?

    Hi,
    The table SMW3_BDOC which store BDocs in my system becomes very big with several million records. Some BDocs in this table are sent several month ago. I'm very strange that why those BDocs were not processed?
    If I want to clean this table, will inconsistancy occurrs in system? And how can I clean this table for those very old BDocs?
    Thanks a lot for your help!

    Hi Long,
    I have faced the same issue recently on our Production system and this created a huge performance issue and completely blocked the system with TimeOut errors.
    I was able to clean up the same by running the report SMO8_FLOW_REORG in SE38.
    If you are very sure about cleaning up, first delete all the unnecessary Bdocs and then run this report.
    At the same time, check any CSA* queue is stuck in CRM inbound queue SMQ2. If yes, select it, manually unlock it, activate and then refresh. Also check any unnecessary queues stuck up there.
    Hope this could help you.
    regards,
    kalyan

  • We have a very big issue here, Patch Tuesday didn't work correctly yesterday, and the patches took all the free drive space away.

    Hello
    We have a very big issue here, Patch Tuesday didn't work correctly yesterday, and the patches took all the free drive space away.
    Before we started with the Patches, we had one Gig of free space on our hard drive, now we are down to less than 10 Megs!!!
    What happened is that the patches didn't work, we had to try them 7 times, and every time they created a 'temporary restore point' which we don't know where that point is.
    The server has crashed twice since, we were able to place it back online but we're afraid it will crash again.
    We have several customers on that server, we are very worried,
    Can you please help us?
    Thank you

    Hi,
    Hope the below article be helpful:
    Clear space on your hard drive by deleting old Windows uninstall folders
    http://news.cnet.com/8301-13880_3-9862223-68.html
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    And as far as I know, we could not use diskpart to extend C drive, 3rd party utilities may work, please go through the below thread:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/03068ecb-7edd-43d8-bc68-12bc466c583f/how-to-extend-the-windows-2003-c-drive?forum=winservergen
    Regards,
    Yan Li
    Regards, Yan Li

  • Please, I am in a very big problem I designed the project by Adobe director And you test the software on the computers on Windows and works with high quality When I tested the project on Apple Macintosh operating system, Li appeared a number of problems

    Please, I am in a very big problem
    I designed the project by Adobe director
    And you test the software on the computers on Windows and works with high quality
    When I tested the project on Apple Macintosh operating system, Li appeared a number of problems and you dissolve a large part of them
    But I have a problem too big
    The project works on some devices and others show me messages mistakes and why chasm different operating system version
    Apple's Macintosh and these messages
    "biosegnatures" can't be opened becouse it 's from undefined developer "
    others
    shokwave player error
    pleas what can i do

    Welcome to the Support Communities.
    m.raslan wrote:
    I tested the project on Apple Macintosh operating system
    Click on the  menu at top left of your screen, choose About This Mac and, in the panel that appears, note the Version no. in the form 10.n.n. Then update your product list so we can see what version of OS X you're running on the Mac — see this tutorial:
    Update your product list
    m.raslan wrote:
    "biosegnatures" can't be opened becouse it 's from undefined developer "
    This Apple doc may help:
    OS X: About Gatekeeper
    m.raslan wrote:
    shokwave player error
    Is Shockwave Player installed?...
    http://www.adobe.com/shockwave/welcome/
    ...If not, get it here:
    http://get.adobe.com/shockwave/

  • Very big icons on my screen.  Have turned off and on.  Cant get rid off.  Cant downsize screen to enter my pin.  Sems blocked or stalled.  What to do?

    Very big icons on my screen.  Have turned off and on.  Cant get rid off.  Cant downsize screen to enter my pin.  Sems blocked or stalled.  What to do?

    Double tap with THREE fingers to turn zoom off. Then go into Settings>General>Accessibility and turn zoom off for good.

  • Iphone fell down and there is a very big dent on the left side. the screen split on both side. can i send it to apple and the repair it for like 160€ or how does it work?

    hi my iphone fell down and there is a very big dent on the left side. the screen split on both side. can i send it to apple and the repair/change it for like 160€ or how does it work?

    Service Answer Center - iPhone - http://support.apple.com/kb/index?page=servicefaq&geo=US&product=iphone  <-- enter correct country in drag-down menu once on page.

  • Adobe acrobat tool bar, windows and icons are very big after latest update

    im having a problem with the latest update of acrobat pro, the tool bar, windows and icons are very big after latest update. how to re size it???
    https://www.dropbox.com/sh/pbd33n1q2wirpq3/AABHjSRXo-crpYGVLaOrB2FVa

    Please check the doc : Hi DPI, Retina display support | Acrobat, Reader

Maybe you are looking for

  • Null Values in a unique key in a Merge????

    We have OWB 9.2.0.2.8 and Oracle 9i I have a Mapping with a Source table (A), a Target table (B) and an Insert/Update Loading Type. I make a Match by constraint with a “unique key” in the Target table with two Fields: Field1 and Field2 The proble

  • Older Quicktime Files won't load into 80GB "Classic" iPod

    I have several Quicktime files that are several years old and iTunes will not load them. The error message I get states "Files cannot be played on this iPod". My Quicktime is up to date. Any Ideas? Thanks.

  • Apple tv plays wrong music on iphoto

    Hi, Can anyone help please, this is the first time on this forum. I have purchased an apple tv and sent all the music files and photo files succesfully over the wi fi but the selected music I chose for the photos does not play. Instead another song p

  • Is That a bug of JDK1.4 beta3: too many paint times!!!!!

    Try to run the following program, ( u can use your img instead of mine) //package com.zhaoyoubing.java2d; import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.awt.geom.*; import java.awt.image.*; import java.net.*; public cla

  • Can Mouse.hide() be disabled/disallowed?

    I am loading fileB.swf into fileA.swf. I want fileA.swf to disallow fileB.swf from calling Mouse.hide(). So far I am completely clueless as to how this may be done. My primary application, fileA.swf, will be loading many 3rd-party swf's, and I don't