Checkpoint frequency when the database is open.

Dear All,
I am facing a lot of problem with some checkpoint parameters.
FAST_START_IO_TARGET = value in what?
LOG_CHECKPOINT_INTERVAL = value in no. of OS blocks
LOG_CHECKPOINT_TIMEOUT = value in seconds
Almost every places (Documentation and our books) it is
mentioned that they are used only for instance recovery. Is it
true? If so, then we don't have any way to force checkpoint to
occur frequently when the database is running. Is there any way?
I think the last two parameters work also when the database is
running.
If multiple parameters used for checkpoint will oracle use FIFO
system or it will choose only the most aggressive parameter?
Please see the Backup&Recovery slide 2-12. It show the case of
instance recovery. As the most aggressive parameter
LOG_CHECKPOINT_INTERVAL is issuing checkpoint first. Will there
be any checkpoint at "C" or checkpoint will occur at any other
point again set by LOG_CHECKPOINT_INTERVAL ?
Please help me to solve this problem.
Have a nice time,
Tarek
BASE Ltd, Dhaka

There is an execellent document available on metalink explaining
the details of the checkpoint mechanism and how to tune it.
Document's name is "Checkpoint Tuning and Troubleshooting Guide",
Doc Id is 147468.1.
That document explains the parameters you ask about and
tells you a helluva lot about checkpoints and how to get
them to do just as you want.
If you do not have access to Metalink, drop me a mail
notice at [email protected], and I'll send you
a copy via email.
Hope that helps.
All the best
Michael

Similar Messages

  • What are all scenarios we will open the database in open resetlog mode

    what are all scenarios we will open the database in open resetlog mode..please advise

    Another situation I could think of is that when the active/current online redo logs are lost.
    Regards,
    Jaffar

  • How to change the default password file's name and path when the database created?

    how to change the default password file's name and path when the database created?
    null

    Usage: orapwd file=<fname> password=<password> entries=<users>
    where
    file - name of password file (mand),
    password - password for SYS and INTERNAL (mand),
    entries - maximum number of distinct DBA and OPERs (opt),
    There are no spaces around the equal-to (=) character.

  • Can I send an e-mail in Mail and get a receipt when the email is opened?

    Can I send an email via Mail and be notified when the email is opened by the recipient? If so, how?

    If you click on the person's name, you go to the public profile they have posted.  If there is an email address given you can email directly.  If not, you cannot email the person directly.
    You could post a reply to the persons reply on the communities to note their help.

  • Taking the datafile offline when the database is in NOARCHIVELOG mode

    My question is when the database is in No Archive log mode i'm not able to take the datafile offline.
    When i tried in my computer i have noticed fallowing.
    case1:
    SYS>alter database datafile 5 offline;
    ERROR at line1;
    ORA-01145:offline immediate disallowed unless media recovery enabled.
    case 2:
    SYS>alter database datafile 5 offline immediate;
    ERROR at line 1;
    ORA-00933:SQL command not properly ended
    case3:
    I have tried the command alter database datafile 6 offline drop; (in NOARCHIVELOG mode) and it is showing the same effect as alter database datafile 6 offline; ( in ARCHIVELOG mode).
    *In the NOARCHIVELOG mode are we really dropping the datafile to take the datafile offline? Will you please tell me the effect of keyword drop.

    JohnWatson wrote:
    You've marked your question answered - was that a mistake?
    The answer is that you cannot directly take a datafile offline in noarchivelog mode. You must take the tablespace offline:
    Hmm, are you certain about that? Perhaps I'm missing something.
    SQL> select file_id, file_name, online_status, status from dba_data_files where tablespace_name = 'USERS';
       FILE_ID FILE_NAME                                          ONLINE_ STATUS
             4 /u01/app/oracle/oradata/TEST/users01.dbf           ONLINE  AVAILABLE
    SQL> select log_mode from v$database;
    LOG_MODE
    NOARCHIVELOG
    SQL> alter database datafile 4 offline drop;
    Database altered.
    SQL> select file_id, file_name, online_status, status from dba_data_files where tablespace_name = 'USERS';
       FILE_ID FILE_NAME                                          ONLINE_ STATUS
             4 /u01/app/oracle/oradata/TEST/users01.dbf           RECOVER AVAILABLE
    SQL>  ALTER SYSTEM FLUSH BUFFER_CACHE;  <-- may not have been necessary
    System altered.
    SQL> select count(*) from scott.emp;
    select count(*) from scott.emp
    ERROR at line 1:
    ORA-00376: file 4 cannot be read at this time
    ORA-01110: data file 4: '/u01/app/oracle/oradata/TEST/users01.dbf'
    SQL> recover datafile 4;
    Media recovery complete.
    SQL> select file_id, file_name, online_status, status from dba_data_files where tablespace_name = 'USERS';
       FILE_ID FILE_NAME                                          ONLINE_ STATUS
             4 /u01/app/oracle/oradata/TEST/users01.dbf           OFFLINE AVAILABLE
    SQL> alter database datafile 4 online;
    Database altered.
    SQL> select file_id, file_name, online_status, status from dba_data_files where tablespace_name = 'USERS';
       FILE_ID FILE_NAME                                          ONLINE_ STATUS
             4 /u01/app/oracle/oradata/TEST/users01.dbf           ONLINE  AVAILABLE
    SQL> select count(*) from scott.emp;
      COUNT(*)
            14
    Also, please see the following link from the manual which discusses altering data file availability in noarchivelog mode.
    Altering Datafile Availability

  • Value of Statement becomes null even when the connection is open

    my small program deals with jdbc during which i met with this strange situation.
    i want the value assigned to an instance of Statement (say 'st') for future use. So i declared st' as a class variable. and the variable is assigned with a value inside try-catch block which is inside the constructor. But when i tried to access it from outside it seems to be null. i ve made it clear by giving two print statements INSIDE and OUTSIDE the try-catch block. More over u can notice that the
    value of an integer variable remains unaltered INSIDE and OUTSIDE the try-catch block. Wats wrong with my coding? Is there anything
    special regarding the 'st' variable which is a reference of Statement interface. BUT WHEN THE DATABASE WAS MS Access, THE
    VALUE OF 'st' WAS EXACTLY THE SAME INSIDE AND OUTSIDE THE try-catch BLOCK(i tried it also by making appropriate changes in the jdbc part).
    the output in both the situation is copied here.
    please correct me.......any help welcomed.
    my program
    import java.sql.*;
    public class MyStatement
         Connection con;
         Statement st;
         ResultSet rs;
         int test=0;
    public MyStatement()
    try
                             Class.forName("com.mysql.jdbc.Driver").newInstance();
    Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mysql", "root", "passes");
    Statement st = conn.createStatement();
    test=111;
    System.out.println("value of statement INSIDE try-catch block: "+st);
    System.out.println("value of test INSIDE try-catch block: "+test);
    catch (Exception e){System.out.println("sql "+e);}
    System.out.println("value of statement OUTSIDE try-catch block: "+st);
    System.out.println("value of test OUTSIDE try-catch block: "+test);
    public static void main(String args[])
    new MyStatement();
    }

    Try this:
    public class MyStatement {
        Connection conn;
        Statement st;
        ResultSet rs;
        int test = 0;
        public MyStatement() {
            try {
                Class.forName("com.mysql.jdbc.Driver").newInstance();
                conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mysql", "root", "passes");
                st = conn.createStatement();
                test = 111;
                System.out.println("value of statement INSIDE try-catch block: " + st);
                System.out.println("value of test INSIDE try-catch block: " + test);
            } catch (Exception e) {
                System.out.println("sql " + e);
            System.out.println("value of statement OUTSIDE try-catch block: " + st);
            System.out.println("value of test OUTSIDE try-catch block: " + test);
        public static void main(String[] args) {
            new MyStatement();
    }

  • I have a fillable form that we send to contractors - when the form is opened on a computer the contractor can view the fields we have completed, however when viewing from a mobile device or cell phone those fields appear blank. Any suggestions? I am at a

    when the form is opened on a computer the contractor can view the fields we have completed, however when viewing from a mobile device or cell phone those fields appear blank. Any suggestions? I am at a total loss as it works when viewing from the computer. I am assuming it is a setting or maybe we need to save it a special way?

    What version of Reader are they using, exactly? And are you sure they're
    using Reader itself and not opening the file inside a browser window, for
    example?
    On Fri, Feb 6, 2015 at 5:24 PM, jessicao96457206 <[email protected]>

  • Creating a pop-up in Acrobat X that is triggered when the PDF is opened.

    Hello all,
    I am wanting to create  a pop-up that is triggered when the PDF is opened.
    The problem I am facing is that our customers are filling out the packet , but are not using the purple "Submit" button located at the top of the page to submit the form to us. They are instead printing out the form and faxing it to us, or scanning and emailing the packet, which defeats the whole purpose of it being a fillable, distributed pdf.
    The email invitation that they receive is a bit wordy so I have have pared that down as well. To be honest with the amount of "Read this first" pop ups that we are exposed to daily I think that our customers are simply not reading the instructions properly.
    There was a post here in the forums but the expanation was for Acrobat 7 or 8.
    Any help is appreciated.

    Thank you for the quick response George. I guess a better way communicate what I need to accomplish is "how"
    I went to the toolbar on the right, then "javascript", then "Document Java Scripts". That opened a window that had me name the script, then add it, then put in the scripting (see below). I do not know how to "place it in a document-level JavaScript (outside of a function definition) or in the initial page's Page Open event."
    This is the script I am attempting to use.
    var message = "When you have completed filling out the Tax Organizer, click on the purple "SUBMIT" button at the top of the page. This will automaticall submit your Tax Organizer for you. Be sure to print a copy for your files"
    app.alert(msg,3);
    If you could provide some step by steps that would be super.
    I am wanting this pop-up box to open and the client will have to then click on the "ok" button to make it dissapear so that they can then fill out the PDF.
    The "Submit" button is auto created for me when I choose to distribute the form, I am unaware of any way to move it.
    I feel that my issue is a elementary one, I am currently working through the Adobe Classroom in a Book lessons as all my acrobat skills have been self taught.

  • How to prevent a TCP connection being closed when the VI that opened it finishes.

    Hello everyone.
    I am developing an application based around servers and clients communicating over TCP in LabVIEW 2012.
    When the server/client opens a TCP connection ,it launches an asynchronosly running "connection handler", to which it passes the connection reference which then takes over all the communcation. This all works fine.
    However - I have a situation where a client's connection handler can be informed of another "new" server. I would like it to open the connection (to see if it is still valid) and then pass this connection reference back to the client's main code to spawn a new connection handler. This prevents me locking up the Client's main code with a long-ish timeout if the "new" server is not actually accepting connections.
    The issue is that if the connection handler that opened up the connection to the "new" server is stopped, then it appears to destroy the reference that it opened. This means that the other connection handler that was merrily communcating with the "new" server has its TCP communciations closed (I get an Error code 1 on a write).
    I have created an example to demonstrate the issue which should be used as follows:
    1. Run server.vi - it will listen for a connection on the port specifed on its BD.
    2. Run CH Launcher.vi - it will open a connection to the server and pass the TCP reference to an instance of Connection Handler.vi which it launches.
    3. The Connection Handler should send data to the Server
    4. Stop the CH Launcher.vi
    5. The Connection Handler.vi will error.
    Any suggestions would be much appreciated.
    Cheers
    John
    Solved!
    Go to Solution.
    Attachments:
    TCP Test.zip ‏35 KB

    John_Neutron escreveu:
    In my case I have changes the part of the code that opens the TCP connection to a VI that has the same lifetime as the main VI so that any connections that have been opened will only be closed automatically when the main VI stops.
    And what are the effects? You are still facing the same problem or closing the connection only when the whole applicaton stops solved your problem?
    Regards
    Mondoni

  • My Macbook Pro (5,3) sporadically goes to sleep when the lid is open and in use.

    My Macbook Pro (5,3) sporadically goes to sleep when the lid is open and I am actively using it.  This problem happens both with OS X 10.7.2 and Windows 7 (64bit), so I don't think it's an OS issue.  Has anyone else encountered this? It's still covered under apple care... But I'd rather try to fix it myself before having to bring it in.
    Thanks!

    I wouldn't be surprised if this were the case - it does get hot.  However, this happens even when I first open it after having it in sleep mode for an entire night...  Do you know how to run the diag tool with OS X 10.7?

  • When the browser is open the mouse does random things in all open programs, I can close FF and it works fine is there a mouse bug?

    Since the last upgrade, when the browser is open the mouse randomly clicks on things changes windows by itself. In addition highlighting things to cut and past is almost impossible... this transfers over to all open programs word, movie maker, audacity, etc... and as soon as the browser is close the problems go away... I am having this on two computers the first is a 32 Bit Vista system with a corded mouse the second is a dual boot 64 bit Win 7 and Linux Mint laptop using a Logitech cordless mouse and built in mouse pad both mouse and pad does this... in both operating systems.
    I thought it was a problem with the mice or interference with the wireless receiver or from an Xbox in the same room interfering with the systems, however updated drivers were downloaded and installed on both computers for all three operating systems.

    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?

  • Is it possible to insert a video and have it automatically play when the topic is opened?

    I am using Robohelp 10. Is it possible to insert a video and have it automatically play when the topic is opened?

    Hi Alchemex,
    What tool are you using to create the video.
    You can set preferences using the tool that you created the video with/
    For example, if you are using Adobe Captivate you can set videos to start automatically?
    Let me know if you need more detail.
    Kind Regards
    Craig

  • A checked checkbox is rendered as unchecked in default pdf viewer of firefox. It is checked when the pdf is opened with adobe.

    I am using DynamicPDF to render a PDF. There are multiple check boxes which are checked. When the PDF is opened in Firefox, none of the check boxes are checked. However, when I save the PDF and open with Adobe, check boxes are checked. There might be a problem with the Firefox built in PDF viewer as the built in PDF viewer for other browsers work fine.

    Current Firefox versions have enabled a built-in PDF Viewer that doesn't have all features that other PDF readers like the Adobe Reader have or may not function properly otherwise.
    You can change the action for Portable Document Format (PDF) from Preview in Firefox to use another application like the Adobe Reader or set to Always Ask in "Firefox > Options/Preferences > Applications".
    You can set the pdfjs.disabled pref to true on the <b>about:config</b> page to disable the build-in PDF viewer.
    You can check the value of the plugin.disable_full_page_plugin_for_types pref on the about:config page and remove the application/pdf part if present or reset the pref to the default via the right-click context menu if you want to display PDF documents in Firefox with another application (i.e. not the built-in PDF Viewer).
    See also:
    *https://support.mozilla.org/kb/view-pdf-files-firefox-without-downloading-them

  • Help! iWeb won't open properly after I updated to Yosemite. No old websites, no workspace- nothing is displayed even when the app is open. HELP!

    Help! iWeb won't open properly after I updated to Yosemite. No old websites, no workspace- nothing is displayed even when the app is open. HELP!

    To open your domain file in Lion, Mountain Lion or Mavericks or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with AppleScript Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script"/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"
    delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain. Note:  you may have to Control (right) - click on the app after uncompressing and select Open due to the Sandboxing feature of OS X.  If you have problems with the app create your own with AppleScript Editor.
    Just launch the application, find and select the domain file in your Home/Library/Application Support/iWeb folder that you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible in Lion or Mt. Lion enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
    For Mavericks and Yosemite go to your Home folder and use the View ➙ Show View Options menu to bring the this window:

  • Inserting soundtracks in pdf that play automatically when the pdf is opened

    Hi,
    I am trying to insert an audio to a pdf that plays automatically plays when the pdf is opened (with Adobe). I am using Adobe Reader on a PC.
    I could do it manually (Comments - Record Audio), but I cant get it to work automatically (i.e. without clicking on the audio symbol)
    Is there anything I can do in the preferences I can do to change this?
    Thanks,
    Kish

    You can turn mail off in the settings but then you can't use it for anything, including the "test" that you want to perform.
    Settings>Mail, Contacts, Calendars>Account Name>Mail>Off. That totally turns off the mail account.
    As long as mail is turned on and you launch the app, it will look for an download new mail.

Maybe you are looking for

  • ICal sync from iPhone 3G no longer works with both MacBooks?

    Hi Group: I've got an iPhone 3G, a previous gen MBP and a white MB, all running the latest software updates. For the past several months I have been able to enter iCal events on my MBP, sync to the iPhone using iTunes, and then sync the iPhone to the

  • IOS 7.1.1 update is flawed!

    I have read and tried fixes to help with this crappy update.  I have an iPhone 4s.  I had it back to normal until a few days ago. It still takes a long time to charge now. My phone heats up very hot now. WiFi has stopped working, as it keeps asking m

  • Not receiving iCloud emails

    I haven't received a single email to my iCloud (@me.com) account since Friday - I know there must be some sort of problem because I have ordered from Amazon and Tesco, who always send confirmation emails but I have received nothing. I've already chec

  • Different session handling of weblogic on SP2 and SP3

              I have set up 2 weblogic servers which are using the same cookie name, and having           the same webapp name, on the same physical machine thus           http://127.0.0.1:7220/test (Server A).           http://127.0.0.1:9999/test (Serve

  • Linux ubuntu firefox 3.6 fonts

    I have mentioned last time the firefox fonts problem in linux ubuntu. Now i have the proof ! I already follow many fonts setting instructions via forums but it still the same. This is the only reason i switch to chromium, google chrome. http://img442