Amount of max possible simultaneous INSERTs depend on what ??

Hi all,
can somebody comment on following statement , whether its is absolutely true, only a part of the truth or completely wrong :
"The maximum possible amount of transactions that are simultaneously performing inserts into an Oracle- table is MAINLY constrained by the available ITL-slots of that table." (Assumption : Hardware performance identical)
Background : We have a mission critical table where every user performs inserts (some kind of an audit table). These inserts are part of the original business transaction and are -normally- very fast.
Problem is that the commit of the original business txn is only issued after populating this audit table.
We were asked how many hanging user transactions would be required in order to completely lock the table for further inserts and as a consequence completely hangup the application.
Cheers,
Mig

mbobak wrote:
2.) You didn't mention version, or whether you're using ASSM, but, if you're still using MSSM (free list managment), then you'll need to consider freelists as well. The freelists parameter should be set to the max concurrent number of inserts on a segment.
Mark,
I wasn't planning to go into details about how to configure the number of blocks available for insertion, but you're right: freelists is a significant setting, as is freelist groups. ASSM is roughly equivalent to just freelists 16 freelist groups 1 - which is why systems with very high rates of concurrent DML should seriously consider avoiding it.
P.S. Come to think of it, you're more likely to have trouble from buffer busy waits before you run into problems with ITL waits if you try increasing insertion concurrency by setting a high INITRANS.
Regards
Jonathan Lewis
http://jonathanlewis.wordpress.com
http://www.jlcomp.demon.co.uk
"Science is more than a body of knowledge; it is a way of thinking" Carl Sagan

Similar Messages

  • Reset Identity Column Value in SQL Server depending on whats being inserted

    I have a SQL Server 2008 database with a table that has an ID field that has an identity increment and seed of 1.
    This work great as each new record created automatically gets a new and distinct number.
    Now when I insert certain new records I need to be able to make that value start at 10001 and then the next would be 10002 etc.
    But this is only for certain inserts.
    Is there a way to control the identity seed & increment on the fly via a query maybe?
    So some inserts would follow 1,2,3,4,5,6,7  depending on whats being inserted
    and others would follow 10001,10002,10003 depending on whats being inserted.
    is this possible?

    Make it a different field.  Don't mess with your PK.
    Make sure you have a plan for when you get 10000 records in this table.

  • Is is possible to insert more time to a composition in the beginning?

    Of course I know how to add time to the comp then move everything over that amount of time. That makes sense. But I was wondering if it's possible to insert a said amount of time at the first frame pushing existing frames to the end of the inserted time. Could be a timesaver for me.

    Simply adjust the comp duration, then use scripts like rd Shifter to offset all your layers by a given amount. I'm sure if one searched through AEnhancers.com and sites linked from there one could also find a smartified version that combines al lthe steps.
    Mylenium

  • (264361962) Q XMLM-26 Is it possible to insert some logic in XML maps?

    Q<XMLM-26> Is it possible to insert some logic in XML maps?
    A<XMLM-26> Since you have the flexibility to defined the map yourself then yes, you
    certainly can provide some logic. For more complex situations Workshop also provides
    you with the flexibility to use an extended version of ECMAScript (formerly JavaScript)
    to perform XML mappings. You can find out more at e-docs:
    http://edocs.bea.com/workshop/docs70/help/guide/howdoi/howUseECMAScriptJavaScripttoProcessXMLMessages.html
    Adam

    Yes, you can make any kind of logic in LV. Some would say even illogic. To implement a latch or any other logic with memory you can use a while loop with a shift register. If the shift register is uninitialized (nothing wired to the left terrminal from outside the loop), it will retain the previous value. You can use case statements to control when various pieces of the logic execute. It would not be difficult to construct a flip-flop which could be type D or JK or T depending upon the value of and input selector.
    Lynn

  • It possible to insert lines between 2 other lines in Grid

    Hi
    Is it possible to insert lines between 2 other lines in the Grid. Example, I need to enter a new item between line 1 and 2 in the grid. Similar to inserting lines on the sales documents.
    Can any having any idea please share with me.
    Regards
    Senthil

    Hi,
    have a look at the DataColumns Collection
    A collection of DataColumn objects. Use this collection to add columns to the collection or remove columns from the collection.
    You can access the collection via the DataTable.Columns property.
    you'll find it in the UI API Dokumentation.
    i hope it helps you.
    regards
    David

  • Is it possible to insert images in Adobe 9 Standard?

    It appears that it is not possible to insert images in Adobe 9 Standard.  There is no TouchUp Object Tool in the Advanced Editing Toolbar in the standard version.  Only a TouchUp Text Tool.  Is this not a basic function being able to add or change an image in a document?  The tutorials all show this as a capability but they are also demonstrating in the Pro version of Acrobat.  Is there a work around or have I been suckered into buying a product that doesn't quite meet my needs? 

    The Touch-Up Object tool is not available in Standard.
    Adobe Acrobat is not meant to be a word processing program; it is meant to be a cross-platform method for document exchange. Changes are best made in the source program. While the answer to your question would not have been obvious from this list, it is a good reference for the difference between Acrobat products: http://www.adobe.com/products/acrobat/matrix.html .
    If for some reason it is not possible to edit the source file and create the pdf again, you can insert your image as a form button and then flatten it. A lot more work, but post if you want help with this.
    --For other folks reading this thread, Adobe offers trials of its programs. Consider testing before buying.

  • Is it possible to insert data into a MySQL database with Java?

    Hello everyone!
    I would like to know, if it's possible to insert data into a MySQL database, with a JFrame inside a servlet?
    When the JFrame is first created it calls this method:
         * Connects the servlet with the MySQL database.
        private void connect(){
            try{
                Class.forName("com.mysql.jdbc.Driver");
                connection = DriverManager.getConnection(
                        "jdbc:mysql://localhost:3306/data", "root", "omfg123");
            }catch(ClassNotFoundException cnfe){
                cnfe.printStackTrace();
            }catch(SQLException sqle){
                sqle.printStackTrace();
        }Then, when you click the "Add" button, it executes this code:
                add.addActionListener(new ActionListener(){
                    @Override
                    public void actionPerformed(ActionEvent ae){
                        String employee = employeeName.getText();
                        String[] args = employee.split(" ");
                        firstName = args[0];
                        lastName = args[1];
                        execute();
                });And this is my "execute()" method:
         * Connects the servlet with the MySQL database.
         * - And executes the SQL queries.
        private void execute(){
            try{
                PreparedStatement statement = connection.prepareStatement("insert" +
                        " into employees values(" + firstName + ", " + lastName
                        + ")");
                ResultSet result = statement.executeQuery();
                String fullName = firstName + " " + lastName;
                printer.write("Employee " + fullName + " added.</br>");
            }catch(SQLException sqle){
                sqle.printStackTrace();
        }But when I click the "Add" button, nothing happens.

    This is what I use to insert into mysql. It works on windows.
    try {
                Class.forName("com.mysql.jdbc.Driver");
                String connectionUrl = "jdbc:mysql://" + loadip + "/custsig?" +
                        "user=root&password=";
                Connection con = DriverManager.getConnection(connectionUrl);
                newproc = jTextField1.getText();
                newsoft = jTextField2.getText();
                newdeb = jTextField3.getText();
                newcust = jTextField4.getText();
                if (newcust.equals("")) {
                    errorsig12 = 1;
                    jLabel1.setForeground(new java.awt.Color(255, 0, 0));
                } else if (newsoft.equals("")) {
                    errorsig12 = 1;
                    jLabel2.setForeground(new java.awt.Color(0, 0, 0));
                } else if (newproc.equals("")) {
                    errorsig12 = 1;
                    jLabel3.setForeground(new java.awt.Color(0, 0, 0));
                } else if (newdeb.equals("")) {
                    errorsig12 = 1;
                    jLabel4.setForeground(new java.awt.Color(0, 0, 0));
                if (errorsig12 == 0) {
                    PreparedStatement ps = con.prepareStatement("insert into customer set cust_name = ?,  software = ?, processor = ?, debit = ?");
                    ps.setString(4, newdeb);
                    ps.setString(3, newproc);
                    ps.setString(2, newsoft);
                    ps.setString(1, newcust);
                    int rs = ps.executeUpdate();
            } catch (SQLException eg) {
                System.out.println("SQL Exception: " + eg.toString());
            } catch (ClassNotFoundException cE) {
                System.out.println("Class Not Found Exception: " + cE.toString());
            }

  • Is it possible to insert a PDF directly(ie from Share Point) to email (Outlook) without saving it?

    Is it possible to insert a PDF directly(ie from Share Point) to email (Outlook) without saving it?
    I open several docs on Sharepoint that I need to send out immediately and waste a lot of time saving it to my computer and than opening an email and attaching it and than deleting the file bc I don't need it - its already on Sharepoint where I can access it. 

    I have the exact same problem.  I used to could do it without saving until I upgraded to a new version.  I cannot figure out how to send it without saving.

  • Although it is possible to insert podcasts into a playlist on the Mac, these are not in the playlist on the iPod after SYNC

    although it is possible to insert podcasts into a playlist on the Mac, these are not in the playlist on the iPod after SYNC

    Sambino,
    You should be fine. Just make sure that you download and install the P2 drivers for your PB. Also, if possible transfer directly to your external. P2 cards can eat up a lot of space very quickly and you don't want to overburden your system drive.
    K

  • Is it Possible to Insert Quiz Slides at Set Times During a Video?

    Hi all,
    I'm fairly new to Captivate, so I apologise in advance if this question has already been answered and I couldn't find it.
    I work in higher education and we create a lot of screencasts with academics speaking over Powerpoint presentations. During a presentation there is often several points where the academic would like to ask the user a question. What I want to know is if there's a way of adding question slides during a video?
    Many thanks,
    Ross

    You will have to split up that video to be able to insert slides in between.
    2015-04-23 16:42 GMT+02:00 Ross_P <[email protected]>:
        Is it Possible to Insert Quiz Slides at Set Times During a Video?
    created by Ross_P <https://forums.adobe.com/people/Ross_P> in *Adobe
    Captivate* - View the full discussion
    <https://forums.adobe.com/message/7470510#7470510>

  • Is it possible to insert text in a picture in Lightroom?

    Is it possible to insert text in a picture in Lightroom?

    The text options are very limited.
    Besides the watermark option mentioned already by dj_paige you can
    - add text in the Slide Show Module. Click on the letters "ABC" below the image and then select your text options from the drop-down menu. See screen shot.
    Besides "Custom Text" as shown you can select any of the other options from the drop-down menu. You are not limited to one choice - you can (one after the other) select any combination from
    the drop down menu. You can drag the text boz anywhere you want it to be and you can resize it and adjust the opacity.
    When you are done you can export the iamge as PDF - Export as PDF works also with only one image, so it doesn't have to be a "slide show" with several images.
    2) In the Print Module the text options are more limited but you can add text in the "Phot Info" panel. Unfortunately you can't move the text around and can't change the size of the text box.
    As in the Slide Show Module you can save the image from the Print Module by selecting "Print to File" which creates a JPG.
    WW

  • Possible to insert a HYPERLINK in document HEADER?

    Subject: Possible to insert a HYPERLINK in document HEADER?
    I have a 300 page document, where the first page is a "Table of Contents".
    I would like to provide the readers with a QUICK way ("no-brainer/easy" way) for the reader to JUMP back to that "Table of Contents" page from any place in the document.
    Can I, perhaps, insert a hyperlink to the "Table of Contents" in the document HEADER? Or is there a different way to go about this?
    Thanks for anybody's creative answer (the simpler the better . . . .)

    Hi.
    Thanks for your reply.
    It was originally a Microsoft Word document. I just clicked "convert to pdf" from the toolbar. Then, in Acrobat 8, I have inserted a page-number header.
    Can I perhaps insert a hyperlink within that HEADER . . . pointing back to the first (Table of Contents) page?

  • Qry for :::amount of max (eff_Date)  for a particular clm ,covg_id ??

    existed
    clm_nbr covg_id amt eff_date
    1 256 0 1/1/2011
    1 256 890 1/18/2011
    2 258 10 12/5/2011
    2 258 77 12/25/2011
    required:
    clm_nbr covg_id amt eff_date
    1 256 890 1/18/2011
    2 258 77 12/25/2011
    :::amount of max (eff_Date) for a particular clm ,covg_id

    First of all thanks user2361373 for posting the query.
    Query will work with out any problem.
    Please explian how you are saying that it wont work..?
    Just add number as per your requirement.
    with t as
    select 1 clm_nbr, 256 covg_id, 0  amt, date'2011-01-01' eff_date from dual union all
    select 1 ,256 ,890, date'2011-01-18'  from dual union all
    select 2 ,258 ,10 , date'2011-05-12' from dual union all
    select  2 ,258, 77, date'2011-12-25'  from dual
    select *from
    select clm_nbr, covg_id,  amt,eff_date,row_number() over(partition by clm_nbr order by eff_date desc) rn  from t
    ) where rn <=2 -- You can add number based on your requirementEdited by: Suri on Nov 10, 2011 2:40 PM
    Edited by: Suri on Nov 10, 2011 2:41 PM

  • Is it possible to use dependent parameters in discoverer

    Dear All,
    Is it possible to use dependent parameters in discoverer... Like in RDF's(concurrent program)
    Reddy.

    Hi Hussain,
    I think In Discoverer 4i there is no optional parameters Option.I wrote in condition(Desktop addition) like Org = :Org_param or org = DECODE(:"Org Parameter 1",'All',Org) .
    At the time of running work book I am passing 'All' in parameter it's taking all orgs and giving org's data.
    But in application i am not able give 'All' in parameters.
    how to do optional parameters in 4i.
    In 10G Optional parametes are there.
    Regards,
    Reddy
    Edited by: Hanimi on Apr 15, 2009 5:39 AM

  • Is it possible to insert coloured glyphs with InDesign CS5?

    I write about card games and use (multiple) red 'heart' and 'diamond' symbols. If it is not possible to insert coloured glyphs, can anyone suggest a quick way of getting around this problem (other than copy/paste)? Many thanks, Zeb

    Sandee,
    Do you actually load a typeface (cardshark bold, perhaps) and then press a key (h or d) to make the heart or diamond? Then all you need are a character style for red and a GREP style to automatically change the letter h in cardshark bold to the character style.
    Uh -- no. Under those circumstances it would not work. A GREP style can change all letters 'h' and 'd' to red, but not "just those in cardshark bold". This would only work if this font has been applied in a paragraph style that also has the GREP style added.
    It does work, however, with non-Symbol fonts such as Arial Unicode MS, where you'd insert the correct glyphs via the Glyphs palette. This works because the heart and diamond glyphs are encoded into Unicode.

Maybe you are looking for

  • IProcurement - new VO for search results not working properly?

    Greetings There is a requirement for the project I´m working, where the search results on iProcurement must be filtered depending on some profiles setted for the user. So, basically the search shouldn´t look into ICX_CAT_ITEM_PRICES, but on a custom

  • Nokia X6-00 Does Not Want To Make Or Recieve Calls

    Hey, i'm new to the nokia discussion forum, i am however not new to being a Nokia customer. Never had problems with Nokia in the past, and after happily purchasing a Nokia X6-00 16GB in the month of March of this year, my thoughts on Nokia only reinf

  • Difference between building/consuming web service in ERP vs. XI (PI)

    Hi All, Can someone direct me to the pros and cons of whether to build/consume a web service in ERP (ABAP - SE80, etc.) versus in XI?  We have ECC 6.0 and the latest version of Web AS running - so no issues with that.  I'm just wondering - if we can

  • Different carrier, despite manual network selection

    Why does the manual network selection not fix the chosen network carrier. I use the option manual network selection, select my preferred network carrier, but once I loose the connection to the chosen carrier (train ride), my iPhone 3GS starts a new s

  • I am unable to send ringtone from itunes

    Hi, I have installed ringtone maker in my iphone 4s, from that created a ringtone. The same was opened with itunes installed in my laptop. But once i tried to save the ringtone to my laptop, itunes will stop working and close down. I reinstalled the