"physical writes non checkpoint" is low, but increase redo doesn't help.

We have a very busy database, the physical write is so high that we want to reduce the physical write. From the statspack, we could see "physical writes non checkpoint" is low in comparison with "physical write", so I think the physical write resulted from checkpoint is high, then I increased the redo size from 2G to 4G (now the log file switch every 4 minutes). I hope this could reduce the physical write, but the fact is the increased redo is helpless.
Statistic                                      Total     per Second    per Trans
physical writes                            8,298,681        9,210.5        249.8
physical writes non checkpoint             3,229,321        3,584.2         97.2We are using oracle 10.2.0.3 on solaris 10, parameters related to checkpoint are
fast_start_io_target                          0                 
fast_start_mttr_target                        0                 
log_checkpoint_interval                       5000000           
log_checkpoint_timeout                        0     Thanks,
Edited by: user646745 on Aug 18, 2009 1:24 AM

Your log_checkpoint_interval is still at 2.5GB. So, even though you have increased the redo log file sizes, a checkpoint will occur at every 2.5GB of Redo. The rate of checkpointing has moved from "every 2GB of redo" to "every 2.5GB of redo".
You could set log_checkpoint_interval to 0 to disable the intermediate checkpoints.
http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams109.htm#i1129193
Note : However, FAST_START_MTTR_TARGET will still cause Incremental Checkpoints.

Similar Messages

  • When i check my email on my iphone 4 it doesnt show as being read on my Outlook. I have reset the phone but it still doesn't help. I have checked all settings but to no avail.This is an exchange email.

    When i check my email on my iphone 4 it does not show as being read on my outlook 2010. I have had my phone reset per apples request but still no good. I have checked all push setting but it all looks normal. This is driving me nuts. Any ideas? This is an exchange email account.

    If a phone is sold from one friend to another and wants to use it on a different carrier the friend can contact the carrier it was sold by to request it unlocked.  I know AT&T, Verizon, and Sprint will give you the steps to unlock it as long as the original contract it was bought under has been completed.  eBay/Craigslist is really not the best place to try to get "unlocked phones" from, if it turns out the phone isn't unlocked then I'm really sorry you got stuck with that one and as stevejobsfan said above I would report them immediately and see if you can recover your money.  I sell phones for a living and this happens a lot

  • My itunes keeps saying there is an error and i have to re-install it, every time i do so it still comes up with this error! i have deleted and re-installed my whole itunes but this still doesn't help! SOMEONE HELP ME PLEASE!

    someone help me!

    What's the precise text of your error message, please? (There's a few different ones I can think of that you might be getting.)

  • My itunes won't recognise my brand new ipod touch? I followed the steps on the support but it hasn't worked. help please?

    my itunes won't recognise my ipod touch, I've had one before and there was no problem, but this one is brand new, my computer recognises it but my itunes doesn't, help please? I've followed the steps on the support but it won't work, I've updated my iTunes and everything..

    So yu tried everthing here included here including removing and reinstalling all the Apple software?
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
    Next I would try another computer to rule out an iPod problem.

  • Since I upgrade to Lion OS my optical drive stop working can't read or write at all I did what I could to fix it but still not working , any help please

    Since I upgrade to Lion OS my optical drive stop working can't read or write at all I did what I could to fix it but still not working , any help please

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • Re: IllegalArgumentException: Illegal request to write non-integral

    Description:
                   Java sound library has been bundled with java1.4. There was a
                   separate sound libraray in java1.3 (sound.jar). In java1.4
                   com.sun.media.sound.* contains an inbuilt sound device configuration
                   library.
                   A JMF class (com.sun.media.protocol.javasound.JavaSoundSourceStream.class)
                   uses javax.sound.sampled.TargetDataLine Interface for reading data from
                   media device and defines a buffer size to read data for the method
                   javax.sound.sampled.TargetDataLine.read(byte[] b, int off, int len)
                   for the variable "len"
                   The source for read method of the class
                   javax.sound.sampled.TargetDataLine.read resembles like this:
                   public int read(byte[] b, int off, int len) {
                   if (len % getFormat().getFrameSize() != 0) {
                        throw new IllegalArgumentException("Illegal request to write non-integral number of frames (" + len + " bytes )");
                   Clearly, this requires that the number of bytes to be read must
                   be an integral number of sample frames, such that:
                   [ bytes read ] % [frame size in bytes ] == 0
    Solution:
                   Buffer size defined in JavaSoundSourceStream should be proper
                   and adjustable for device capability.
                   Before defining buffer size, the getFrameSize() method of
                   javax.sound.sampled.AudioFormat should be called to verify
                   the frame size of the media device.
                   The following code should be inserted in the file
                   com/sun/media/protocol/javasound/JavaSoundSourceStream.java
                   in the method openDev():
                   int adjust_FrameBuffer_size = afmt.getFrameSize();
                   bufSize = bufSize - (bufSize % adjust_FrameBuffer_size);
                   before defining DataLine.Info buffersize.
    */

    hello fellows!
    In my case i am plugging in the JSPEEX into java sound API. I am getting this same exception when I have samplesizebits as 16 Bits (Depth sample) . But when I make it as 8 Bit(Depth sample) its executing without any exception. wat is the reason?
    java.lang.IllegalArgumentException: illegal request to write non-integral number of frames (607 bytes, frameSize = 2 bytes)
    My Input parameters:
    float sampleRate = 44100.F;
    int sampleSizeInBits = 16; //8,16
    int channels = 1;//1,2
    boolean signed = true;//true,false
    boolean bigEndian = false;
    OS: Windows NT server.

  • How to write non-XML data to a file using an OSB FTP Routing?

    Hi --
    Situation ... I need to write non-XML data to a file using FTP. A proxy service retrieves XML and transforms it with XSLT to CSV format, then gives it to a Biz service to file it out, using FTP. Simple.
    Problem ... OSB sends the contents of $body to any service it calls. Because $body is a SOAP document, it has to contain XML. So therefore I have to put my CSV data into an XML element, in order to put it into $body; and this inner element then gets written to the file, which I don’t want. But if I don't enclose my CSV content in a tag, I get "Unexpected CDATA encountered" trying to assign it to a variable.
    There has to be away around this!
    Thanks for your help.
    John Taylor

    Solved. Steps:
    -- Transform the XML to CSV using an XSL transform. Put the CSV data inside enclosing XML elements, and use a Replace action to put the XML element + CSV contents back into *$body*.
    -- Define an MFL transform that only knows about the enclosing XML elements. Use a delimiter of "\n" (hard return).
    -- Route from the proxy service to a Biz service that has Service Type = Messaging Service and Request Message Type = MFL; specify the MFL transform, which will receive the incoming *$body* variable, strip off the enclosing XML element within it, and pass the CSV contents to the FTP service.
    Edited by: DunedainRanger on Nov 29, 2011 9:03 AM

  • Physical and Non-Physical Receipts

    Dear All,
    Because of SOX purposes my client would like to have a clear demarcation between physical and non-physical receipt.
    For example purchasing for stock is a physical receipt as warehouse employee can see it himself. And he is responsible to take care of it.
    But say for example a third party delivery is non-physical, as in this case vendor ships the goods directly to customer, and warehouse never sees it physically and hence they are not responsible for the same.
    To take care of this situation, we designed our process in following manner:
    1. Physical: PO > GR with MIGO, By doing a GR with MIGO we consider this as physical in our set-up.
    2. Non-Physical: PO > Inbound Delivery > VLO6IG (Automatic GR), by doing GR via VL06IG we determine it as non-physical.
    When there is any deviation from above process, we consider that as SOX violation.
    Now, the point is that inbound delivery is standard SAP process, which can very well be used for receiving stock item as well. But, we have put this artificial barrier ourselves.
    Does SAP have a standard way of segregating the physical and non-physical? Is there a better way of handling this situation?
    Thanks and Regards,
    Prakash

    Hi Jürgen,
    You are right that third party PO does not require a goods receipt. But to ensure that we have a 3 way match "PO GR IR'' we ensure that all the POs, except blanket PO, always have GR. The GR in case of third party delivery is done based on shipping notification we receive from the vendor.
    Thanks & Regards,
    Prakash

  • Physical Writes Direct

    Oracle 9.2.0.5 on HP-UX.
    In "Session Details" of "Top Sessions", in the section "Session I/O Activity", the "Physical Writes Direct" is muc bigger than any other values in the same section ("Disk Sorts" is zero for example).
    What does it mean?

    I have a performance problem that is apparently located on CPU. It is busy most of time at 100%.
    But, in addition to that, I would like to know how to interpret and use the value of "Physical Writes Direct".

  • X3755 VDD_1.1_RUN Lower Non-Recoverable - Going Low

    Hello I have an x3755 (Machine type and model : 7164Z2E) and this week the server has shutdown itself In the IBMC log i have this: W 179. [06/09/2015 02:41:26], VDD_1.1_RUN, Voltage, Lower Critical - going low - Asserted E 180. [06/09/2015 02:41:26], VDD_1.1_RUN, Voltage, Lower Non-recoverable - going low - Asserted I 181. [06/09/2015 02:41:32], VDD_1.1_RUN, Voltage, Lower Non-recoverable - going low - Deasserted I 182. [06/09/2015 02:41:32], VDD_1.1_RUN, Voltage, Lower Critical - going low - Deasserted I 183. [06/09/2015 02:41:35], HOST_POWER, Power Unit, Power Off/Power Down - Asserted But i can't find what is VDD, and why this voltage could be low So i don't know if one of the component start to failed ... or the full server ... or the external power supply ... do someone has information ? Thanks

    Hello I have an x3755 (Machine type and model : 7164Z2E) and this week the server has shutdown itself In the IBMC log i have this: W 179. [06/09/2015 02:41:26], VDD_1.1_RUN, Voltage, Lower Critical - going low - Asserted E 180. [06/09/2015 02:41:26], VDD_1.1_RUN, Voltage, Lower Non-recoverable - going low - Asserted I 181. [06/09/2015 02:41:32], VDD_1.1_RUN, Voltage, Lower Non-recoverable - going low - Deasserted I 182. [06/09/2015 02:41:32], VDD_1.1_RUN, Voltage, Lower Critical - going low - Deasserted I 183. [06/09/2015 02:41:35], HOST_POWER, Power Unit, Power Off/Power Down - Asserted But i can't find what is VDD, and why this voltage could be low So i don't know if one of the component start to failed ... or the full server ... or the external power supply ... do someone has information ? Thanks

  • How can I register the iTunes without a credit card? No "None" can be selected but only different kinds of credit cards. Thanks!

    How can I register the iTunes without a credit card? No "None" can be selected but only different kinds of credit cards. Thanks!

    Get an iTunes gift card & redeem that in iTunes using your existing Apple ID.
    Then the option for none, regarding a credit card should appear.

  • I received a low ink warning on my mac for my epson artisan 837 printer. I replaced the cartridge that was low but it still reads low ink on the mac but reads full on the epson control panel. I am also receiving a communication error between the mac

    I received a low ink warning on my mac for my epson artisan 837 printer. I replaced the cartridge that was low but it still reads low ink on the mac but reads full on the epson control panel. I am also receiving a communication error between the mac

    What exactly is the error?
    And, we'd need some info re. your Mac model and OS version - you are not running iOS on it.
    You need to realize that this model has been discontinued and the last driver updates are dated about a year ago. If you are running Mavericks, there may not be an updated driver for it. But you can try to delete the printer and add it again to see if that will work.

  • When I command tab from diablo 3, my mac changes to a non-retina resolution. But when I quit diablo, it comes back. what's happening?

    when I command +tab from diablo 3, my macbook pro changes to a non-retina resolution. But when I quit diablo, everything comes back to a full retina resolution. what's happening?
    Is this some sort of defense mechanism to save energy or space? I noticed that this only happened after I installed mountain lion. I didn't have this problem before.

    I don't think Diablo is the problem. It is retina compatible. Its what happens when I use diablo then go to desktop, or any other application - it (the other application) appears a bit blurred. as if its using the 2011 macbook pro resolution.
    It can be fixed by going to system preferences and clicking "display" then use "best for retina", but it wasnt like this before OSX mountain lion...

  • Could anyone help me with Adobe Application Manager please? I write my approved serial number but can´t go further?

    I bought a Student version CS5 back in 2010 for my studies and it worked wonderfully until last week. Now when I try to open any of the Adobe programs, it takes me to Adobe Application Manager and asks for me to provide my serial number. When I write it, it´s approved but it still does not allow me to open any of the Adobe programs. Instead, it asks me again for the serial number. I called support and they confirmed my serial number is correct but they do not deal with CS5 over the phone anymore. Could anyone kindly help me through here please? Many thanks in advance.

    When I try to open any Adobe program, "Adobe Creative Suite 5 Design Standard - Adobe Software License Agreement" pops up. I press "Agree" and then it takes me to the next part: "Provide A Serial Number" because my trial had expired. I had never agreed to a trial back when I bought the CS5 package because I had the package, of course. And I have never had any troubles/messages to access my Adobe programs until last week. I called Adobe to confirm my serial number and it is correct but then the person could not help me further because they do not deal with CS5 over the phone, hence asking through here. Once I write the serial number, I get a green tick saying that "This serial number will be used for: Adobe Creative Suite 5 Design Standard". I then press "Complete" and it takes me all the way back to the "Adobe Software License Agreement". It has been this vicious circle over and over. I unistalled it, then installed it again various times using my serial number and ID, I don´t know what else to do and everyone I call they can not help me for some reason. So thank you very much for taking your time in helping me out.

  • Whenever I close my laptop then open it it does not turn back on, the screen stays off but I will hear the fan running.  I then have to physically press the power button for it to turn on.  Help!

    Whenever I close my laptop then open it it does not turn back on, the screen stays off but I will hear the fan running.  I then have to physically press the power button for it to turn on.  Help!

    Try here.  iPhone and iPod touch: Frozen and unresponsive

Maybe you are looking for