Why disable few parameters when fast_start_mttr_target set to non zero.

When fast_start_mttr_target set to non zero value why do we need to disable log_checkpoint_interval, log_checkpoint_timeout and fast_start_io_target?

These parameters were replaced in 9i only by the fast_start_mttr_target parameter. And the recommendation to not to use them now is because, if set , these parameters would override the FSMTT parameter and also would disable the auto-tuning of the incremental checkpointing which is there because of FSMTT.
HTH
Aman....

Similar Messages

  • How do you disable i messaging when switching to a non iphone?

    How do you disable i messaging when switching to a non iphone?

    Nope, that doesn't actually do the trick.  It might keep i messages from going to your i phone but still won't allow them to go to your new device. 

  • Why is DialogResult True when I set it to False?

    I have a ChildWindow displayed. I have a Button with a Click event. The Click even sets DialogResult = False. I have a Closing event listener on the ChildWindow.
    When the Closing event is entered, the sender is the ChildWindow and the Sender's DialogResult = TRUE!???
    DialogResult was already False, when the Click event happened.
    How the heck did it get to be TRUE?
    And nothing else sets DialogResult in my code as far as I could find.

    I put together a very simple MainPage:
    <Grid x:Name="LayoutRoot" Background="White">
    <Button Click="Button_Click">Show Child</Button>
    </Grid>
    and
    public MainPage()
    InitializeComponent();
    private void Button_Click(object sender, RoutedEventArgs e)
    ChildWindow1 cw = new ChildWindow1();
    cw.Closed += new EventHandler(cw_Closed);
    cw.Show();
    void cw_Closed(object sender, EventArgs e)
    ChildWindow1 cw = (ChildWindow1)sender;
    if (cw.DialogResult == true )
    ChildWindow1 is a regular child window
    It's generated with this code:
    public partial class ChildWindow1 : ChildWindow
    public ChildWindow1()
    InitializeComponent();
    private void OKButton_Click(object sender, RoutedEventArgs e)
    this.DialogResult = true;
    private void CancelButton_Click(object sender, RoutedEventArgs e)
    this.DialogResult = false;
    I put a breakpoint in the line
    if (cw.DialogResult == true )
    When I click OK I get true returned.
    When I click cancel I get false returned.
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • Why is it that when I set the preference to always show the tab bar, it refuses to stay checked after I quit Firefox and restart it?

    Using Mac OSX10.6.7 and FF 4.0.1, I'm having a problem with the preference to always show the tab bar. I want it to always show. I check this in the Preferences under the "tab" window, and everything is fine until I quit FF and when I restart FF the tab bar is gone again. I go into preferences, and that option is now unchecked. How can I fix this so that my preference is saved?

    That hasn't helped the last ten times I tried. I posted before. I deleted the preferences file, I tried changing the preferences file, I went into about:config and changed the autoHide preference there. No dice. Firefox is not saving my preference for that one thing.

  • How do i disable prompt massege when i set Private Browsing in Firefox 7.0.1 Mac OS X Snow Leopard?

    I don't want the prompt appears every time i sing in every site i visit but i need to record passwords and users.

    Thank rbillings for the answer but I just realize that my question is wrong.
    What I want to do is to activate (Preferences > Security > passwords > (Remenber passwords for sites) and I don't want the "Prompt Message" appears every time I enter to a site with password.
    Thank, and I hope somebody can answer me this question.

  • How can I remove print margins when manually setting them to zero doesn't work?

    I'm trying to print a web page that I've created with a custom paper size of 4.5x10.25 inches. I want the page to be printed right to the edge of the paper, with no margins at all.
    I've been reading for a few days and the best thing I can find is to use Mac's Page Setup dialog to create a custom paper size and custom margins, which I've done and set to the default for all of my printers. (Hopefully I'm able to post links to images --> http://i.imgur.com/kVbOZLk.png). No matter what I do though I can't get the margins to go away. There's always always always a .75 inch margin when I print and when I print preview (Again, hoping I can post links to images --> http://i.imgur.com/cxlVS8o.png). Just to note: The same thing happens printing other websites and documents (i.e it is not a problem with my website).
    Things I've tried:
    I've read that the margins are only visible in print preview and printing the page will remove them. This didn't work.
    I've tried tricking the system by setting my margins to 0.01 inches
    I've tried adjusting the website to not be exactly the size of the page (I made it smaller) and the margins were still there.
    I've set "print.print_extra_margin" to 0 in Firefox's about:config page.
    I've tried a different printer.
    I've tried a co-worker's machine running a newer version of OSX.
    I've made absolutely sure that my page size it set correctly.
    I'm using OSX 10.6.8 with Firefox v21.0.
    The closest I can come to this is using Google Chrome, where there is a specific option for "none" in margins and the Chrome preview looks okay, but I'm not able to specify paper size unless I click "Print using system dialog" which gives me the same problems as above.
    How do I remove the margins and just fit to the exact size of the page?

    Welcome to Apple Support Communities. We're all users here.
    Does your Print dialog offer photo 'borderless printing' settings for various paper sizes?
    Every photo printer I've ever encountered leaves some unprintable margin, unless 'borderless' and/or 'photo' media are specifically selected.
    On many of the Canon inkjet color printers I've used, borderless printing is only available when one of the photo papers is selected, even when a custom size specified that is smaller than the actual paper, trying to make it 'borderless'
    I stitch together and print panoramas of theatre sets for my local community theater, so I end up with an image about 4.5 inches by 11.5 inches to be printed.
    Selecting a photo and opening in Preview and selecting 'Fill Entire Paper' illustrates the standard unprintable borders for my specific printer.
    When I open the panoramic image in Preview, I get this print preview. (The set image is of course rotated left)
    By selecting Letter and Borderless in the Paper Size dialog for my Canon MG5320 printer, I get this result.
    This particular Canon printer of course does NOT actually 'know' what paper is inserted, but the ink is applied assuming that a photo paper is being used, so it will saturate a standard paper.
    Hope this helps!
    Message was edited by: kostby

  • Why is sortCompareFunction called when clicking checkbox on non-sortable column?

    Hello,
    I have a datagrid that contains three static DataGridColumn columns.  The first column uses a checkbox item renderer whose sortable property is set to false:
    <mx:DataGridColumn
    width="100"
    sortable="false"
    itemRenderer="com.mycomponent.CheckBoxItemRenderer" />
    On creation complete, a fourth column is added dynamically to the datagrid, through ActionScript, and several of its properties are set, like so:
    var dgc : DataGridColumn = new DataGridColumn();
    dgc.headerText = someAttribute.name;
    dgc.itemRenderer = new ClassFactory(ProductResultItemRenderer);
    dgc.sortCompareFunction = attributeCompareFunction;
    Everything is rendered just fine.  If I sort the datagrid items by clicking the column header of the second or third columns (these are the static columns that use Flex's default sort function) and then click on any of the items' checkboxes, there are no issues.  However, if I sort the items by clicking on the header of the dynamically-added fourth column and then click on any of the items' checkboxes, the results are partially re-sorted.  Setting a breakpoint in my attributeCompareFunction method, any time I click a checkbox in this use case, this compare function is called.
    Can someone shed some light on why this function is invoked in this last use case, especially when performing a non-sortable event (clicking on a checkbox)?
    Thanks,
    -Jose

    Hi Alex,
    I set a breakpoint in the sortCompareFunction, but I'm unable to determine what is calling it.  Here is the call stack:
    Main Thread (Suspended)
    Function/<anonymous>
    mx.collections::SortField/http://www.adobe.com/2006/flex/mx/internal::internalCompare
    mx.collections::Sort/internalCompare
    mx.collections::Sort/findItem
    mx.collections::ListCollectionView/http://www.adobe.com/2006/flex/mx/internal::findItem
    mx.collections::ListCollectionView/addItemsToView
    mx.collections::ListCollectionView/moveItemInView
    mx.collections::ListCollectionView/handlePropertyChangeEvents
    mx.collections::ListCollectionView/listChangeHandler
    flash.events::EventDispatcher/dispatchEventFunction [no source]
    flash.events::EventDispatcher/dispatchEvent [no source]
    mx.collections::ArrayList/internalDispatchEvent
    mx.collections::ArrayList/itemUpdateHandler
    flash.events::EventDispatcher/dispatchEventFunction [no source]
    flash.events::EventDispatcher/dispatchEvent [no source]
    com.my.package.models::ProductVO/dispatchEvent [no source]
    com.my.package.models::ProductVO/set compare [no source]
    com.my.package.components::CheckBoxItemRenderer/onChange
    com.my.package.components::CheckBoxItemRenderer/___CheckBoxItemRenderer_CheckBox1_change
    flash.events::EventDispatcher/dispatchEventFunction [no source]
    flash.events::EventDispatcher/dispatchEvent [no source]
    mx.core::UIComponent/dispatchEvent
    spark.components.supportClasses::ToggleButtonBase/buttonReleased
    spark.components.supportClasses::ButtonBase/mouseEventHandler
    The event dispatched by "ProductVO/dispatchEvent" is of type "mx.events.PropertyChangeEvent", which is OK since the "compare" property was updated.  However, later in the call stack, the "ArrayList" object fires an "internalDispatchEvent" of type "mx.events.CollectionEvent", which is an "update" event.  Looking at the rest of the call stack, this is the event that leads to the re-sort.
    Is there any way to prevent this CollectionEvent event from firing and, if so, how?
    Thanks,
    -Jose

  • Refresh only current row after commit, when ChangeEventPolicy set to none

    Hi,
    I'm using jdeveloper 11.1.2.3.0
    I'm editing a table with a popup, I set the ChangeEventPolicy to none because it made some problems.
    Now I would like to know, when i'm closing the popup and doing commit,
    how could I refresh only the current row, and not whole the table?
    I would like it to work as with ChangeEventPolicy set to ppr.
    Thanks!

    could you please explain a little bit more?
    When I used the ChangeEventPolicy with ppr it looks like only the selected row was changed after commit.
    but with PartialTrigger i see that it's refreshing all the table.
    are you sure they are working the same?
    what about row.refresh(..), is it only used for rollback?

  • HT1918 why dont they accept when i click the none button on my billing payment?

    i just changed my apple id . and then , they wanted to confirm my billing address. i clicked the "none" button but they wont accept it . what should i do? thank you

    Why call you when you are 9 days late on your monthly payment?
    Because you are 9 days late with your monthly payment!!!!
    You signed a contract to pay your bill by a certain date and now you are not keeping up with your side of the agreement!!!
    Good luck though with however you decide to handle your situation.

  • Output when command exits with non-zero status

    For obvious reasons, entering the following on the command line results in non-zero status error.:
    "echo AWK might do it | sed 's/it*$//' | grep it?"
    How do I get Terminal to tell me the command that generated this error

    The Terminal is not responsible for error messages, it is your shell. The default Mac OS X shell is bash
    From the bash man page (man bash):
    The return status of a pipeline is the exit status of the last command,
    unless the pipefail option is enabled. If pipefail is enabled, the
    pipeline's return status is the value of the last (rightmost) command
    to exit with a non-zero status, or zero if all commands exit success-
    fully.
    But I must warn you that if you enable pipefail all the time, you might break existing scripts that do not expect that behavior.
    Looking at your echo|sed|grep command line, there are no errors, not even grep. A non-zero exit status is not necessarily an error, as it is all in the eye of the beholder. From the grep man page:
    Normally, exit status is 0 if selected lines are found and 1 otherwise.
    But the exit status is 2 if an error occurred, unless the -q or --quiet
    or --silent option is used and a selected line is found.
    So in the case of grep an exit status of 2 means there was an error. A value of 0 or 1 means there was no error, but rather the difference between finding what you were looking for vs not finding.

  • Select-options and Parameters, when to use what?

    Hi gurus,
    I have been using Parameters for long. Now I want to choose a range of values, which I need to retrieve from database.
    I tried using select-options. Can't I use 2 parameters that is parameter1 and parameter2 and mention query BETWEEN para1 AND
    para2, and when I use NO INTERVALS and NO EXTENSION together, it behaves same like parameter, then why did SAP gave these
    extensions.

    Hi friend,
    Simple differences between Select-options and parameters.
    Select-Options Uses keyword 'for'                         
    Parameters Uses keywords 'like', 'type'     
    Select-Options  Uses operator 'in'                         
    Parameters Uses operator '='
    Select-Options  Provides ranges for selection     
    Parameters  No ranges only single value
    Select-Options Creates selection table                              
    Parameters No selection table
    Select-Options  When i/p blank all records selected          
    Parameters   When i/p blank none is selected
    Note:
    Select options can act as parameters by using 'no-extension' 'no intervals', but all records will be selected when i/p is blank unlike parameters.
    Might be helpful..
    Thanks...
    Edited by: Guest77 on Feb 10, 2009 5:44 AM

  • Result set two few parameters exception!!?

    when i use the following code:
           res = stat1.executeQuery("SELECT * FROM Word where word="+current );
    where res is a result set
    stat1 is a statement
    current is a string
    the following exception appears after running:
    java.sql.sqlexception[microsoft][ODBC microsoft access Driver] Two few parameters.Expected 1.
    Any one can help me with this problem plz?

    is the (?) from the syntax?in:
    PreparedStatement ps =
    connection.prepareStatement("SELECT * FROM Word WHERE
    word=?");
    ps.setString(1, someWord);
    rs = ps.executeQuery(); [url http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/JDBC20.html#JDBC207]http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/JDBC20.html#JDBC207

  • Why when i set my mac in sleep it starts alone and also complete stop without I do anything (Mac mini Mid 2011 - Yosemite)

    Why when i set my mac in sleep it starts alone and also complete stop without I do anything (Mac mini Mid 2011 - Yosemite)

    in response to lllaass
    here what I copied from Console:
    27/12/2014 02:29:58,457 WindowServer[185]: WSGetSurfaceInWindow : Invalid surface 1336265605 for window 268
    27/12/2014 02:30:02,516 WindowServer[185]: WSBindSurface : Invalid surface 1040636110 for window 266
    27/12/2014 02:30:17,370 com.apple.xpc.launchd[1]: assertion failed: 14B25: launchd + 160118 [55B9FF23-B298-321A-B776-CF7676586C04]: 0xe
    27/12/2014 02:30:17,371 com.apple.xpc.launchd[1]: assertion failed: 14B25: launchd + 160118 [55B9FF23-B298-321A-B776-CF7676586C04]: 0xe
    27/12/2014 02:30:18,819 Office365Service[2012]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.1 instead of 10.10.1. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
    Call location:
    27/12/2014 02:30:18,819 Office365Service[2012]: 0   CarbonCore                          0x901777e7 ___Gestalt_SystemVersion_block_invoke + 135
    27/12/2014 02:30:18,819 Office365Service[2012]: 1   libdispatch.dylib                   0x960dc130 _dispatch_client_callout + 50
    27/12/2014 02:30:18,819 Office365Service[2012]: 2   libdispatch.dylib                   0x960dc0b5 dispatch_once_f + 251
    27/12/2014 02:30:18,819 Office365Service[2012]: 3   libdispatch.dylib                   0x960dd0d8 dispatch_once + 31
    27/12/2014 02:30:18,819 Office365Service[2012]: 4   CarbonCore                          0x90109fb8 _Gestalt_SystemVersion + 1050
    27/12/2014 02:30:18,819 Office365Service[2012]: 5   CarbonCore                          0x90109b69 Gestalt + 150
    27/12/2014 02:30:18,819 Office365Service[2012]: 6   Office365Service                    0x000589a3 Office365Service + 358819
    27/12/2014 02:30:29,794 warmd[36]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    27/12/2014 02:30:29,794 warmd[36]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    27/12/2014 02:30:29,797 warmd[36]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    27/12/2014 02:30:29,797 warmd[36]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    27/12/2014 02:30:29,797 warmd[36]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    27/12/2014 02:30:29,799 warmd[36]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    27/12/2014 02:30:29,801 warmd[36]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    27/12/2014 02:30:30,870 xscertd-helper[2020]: ldap_search_ext_s returned -1 - Can't contact LDAP server when searching for bdb suffix, exiting
    27/12/2014 02:30:30,883 com.apple.xpc.launchd[1]: (com.apple.xscertadmin[2020]) Service exited with abnormal code: 1
    27/12/2014 02:30:30,928 coreaudiod[1249]: 2014-12-27 02:30:30.927642 AM [AirPlay] Power: SystemWillSleep
    27/12/2014 02:30:30,928 coreaudiod[1249]: 2014-12-27 02:30:30.927798 AM [AirPlay] BTLE client stopping to browse for AirPlay Solo Target Presence.
    27/12/2014 02:30:30,928 coreaudiod[1249]: 2014-12-27 02:30:30.928007 AM [AirPlay] BTLE discovery removing all devices
    27/12/2014 02:30:30,929 coreaudiod[1249]: 2014-12-27 02:30:30.929458 AM [AirPlay] BTLE client stopped to browse for AirPlay Solo Target Presence.
    27/12/2014 02:30:30,931 watchdogd[162]: [watchdog_daemon] @(         pm_callback) - ref=0x0 msg_type=0xe0000280 msg=0x2a0005
    27/12/2014 02:30:30,931 watchdogd[162]: [watchdog_daemon] @(    wd_daemon_thread) - events buffer: 65r1069 3634s1069
    27/12/2014 02:30:30,965 Office365Service[2012]: System shutdown notification
    27/12/2014 02:30:31,001 WindowServer[185]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7fbf43423ed0(2001)
    27/12/2014 02:30:31,044 identityservicesd[1311]: <IMMacNotificationCenterManager: 0x7ffac2c4fef0>: notification observer: com.apple.iChat   notification: __CFNotification 0x7ffac2d4efa0 {name = _NSDoNotDisturbEnabledNotification}
    27/12/2014 02:30:31,044 imagent[1305]: <IMMacNotificationCenterManager: 0x7fde8a42c1e0>: notification observer: com.apple.FaceTime   notification: __CFNotification 0x7fde8a54a860 {name = _NSDoNotDisturbEnabledNotification}
    27/12/2014 02:30:31,089 WindowServer[185]: device_generate_lock_screen_screenshot: authw 0x0(0)[inf, inf, 0, 0] shield 0x7fbf43423ed0(2001), dev [1680,1050]
    27/12/2014 02:30:31,000 kernel[0]: PM response took 168 ms (1194, UserEventAgent)
    27/12/2014 02:30:31,105 WindowServer[185]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7fbf43423ed0(2001)
    27/12/2014 02:30:31,180 apsd[59]: Peer [pid=1203] requested push wake but lacks APSPushWakeEntitlement
    27/12/2014 02:30:31,228 imagent[1305]: <IMMacNotificationCenterManager: 0x7fde8a42c1e0>:    NC Disabled: NO
    27/12/2014 02:30:31,228 identityservicesd[1311]: <IMMacNotificationCenterManager: 0x7ffac2c4fef0>:    NC Disabled: NO
    27/12/2014 02:30:31,237 imagent[1305]: <IMMacNotificationCenterManager: 0x7fde8a42c1e0>:   DND Enabled: YES
    27/12/2014 02:30:31,237 identityservicesd[1311]: <IMMacNotificationCenterManager: 0x7ffac2c4fef0>:   DND Enabled: YES
    27/12/2014 02:30:31,237 imagent[1305]: <IMMacNotificationCenterManager: 0x7fde8a42c1e0>: Updating enabled: NO   (Topics: (null))
    27/12/2014 02:30:31,237 identityservicesd[1311]: <IMMacNotificationCenterManager: 0x7ffac2c4fef0>: Updating enabled: NO   (Topics: (null))
    27/12/2014 02:30:31,237 identityservicesd[1311]: <IMMacNotificationCenterManager: 0x7ffac2e30040>: notification observer: com.apple.iChat   notification: __CFNotification 0x7ffac2c43f40 {name = _NSDoNotDisturbEnabledNotification}
    27/12/2014 02:30:31,244 identityservicesd[1311]: <IMMacNotificationCenterManager: 0x7ffac2e30040>:    NC Disabled: NO
    27/12/2014 02:30:31,249 identityservicesd[1311]: <IMMacNotificationCenterManager: 0x7ffac2e30040>:   DND Enabled: YES
    27/12/2014 02:30:31,249 identityservicesd[1311]: <IMMacNotificationCenterManager: 0x7ffac2e30040>: Updating enabled: NO   (Topics: (null))
    27/12/2014 02:30:31,000 kernel[0]: PM response took 347 ms (71, blued)
    27/12/2014 02:30:49,000 kernel[0]: PM response took 3456 ms (31, powerd)
    27/12/2014 02:30:49,000 kernel[0]: Failed to get hibernate image filename
    27/12/2014 02:30:49,000 kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    All that is really chinese for me Do you know where i could get anything to be teached about all that
    Thanks

  • When I set up my exchange account on iPad2 cameras always become disabled. What's the problem, can I use my cams along with using exchange mail?

    Can someone help me with this question? Why iPad 2 disables camera when I set up my Exchange mail account? How can I enable camera along with using mail?

    The iPad is not disabling the camera - the administrator for your Exchange account is. You need to go to the person who administers your Exchange account and ask them to lift the restriction on cameras in their Exchange system.

  • Why is it that it would take a very long time [if ever] to change or adjust the tempo of a loop in the audio track when i set it to adjust regions to locators? Until now the spinning wheel of death is still very much spinning. thanks for any help.   Is th

    Why is it that it would take a very long time [if ever] to change or adjust the tempo of a loop in the audio track when i set it to adjust regions to locators? Until now the spinning wheel of death is still very much spinning. thanks for any help.
    Is there another way to adjust tempo of loops the faster way, any other technique?

    No clue why the final processes have suddenly started to take so long. Two things I'd try: a) capture from an older tape to see if some problem with the new tape is at fault.  And b) check the health of your RAM and the hard drive.
    The red frame sounds a bit like a glitch we used to have in OnLocation (actually in its predecessor HDV Rack) which was caused by a partial GOP. But that was a product of HDV Rack recording from the live video stream. It turned out that HDV cameras intentionally interrupt the data stream for an instant upon starting to record--specifically to avoid recording a partial GOP to tape. So my gut says that the tape has partial GOPs at the points where you stopped/started recording.

Maybe you are looking for

  • Oracle 10.2.0.3 - LINUX 64bit to sql server 2003

    I have applied Patch 5965763 and installed DG4ODBC in seperate oracle home I have the Data Direct ODBC drivers for linux 64-bit and am using ddsqls24.so driver my connection to sql server 2003 is "AFMAC" my listener on 11.2 works and is started from

  • How to delete everything, but base group and their depends?

    If I install KDE or Gnome, and even a bunch of different programs, or have too much broken system, or even what the cause .. How to easiest delete everything, but to keep packages in base group and their depends? Last edited by atommixz (2010-10-14 1

  • Send Mail  OPTIONALLY

    Hi Friends, i have create an email option in my application and i have a select list item.Return value of Select list are EMAIL and INTERNAL. i want when i select EMAIL from Select List Then Mail Should be Send .My Item Name is P81_TYPE and my code a

  • I can't open Captivate 8 (64x)

    i install captivate8 (64x) and i can't open it it running in Splash Screen and don't have anything freeze Splash Screen with word " Loading "

  • How to organize my media efficiently in FCPX

    Yesterday I started a project on FCPX.  I imported quite a bit of media and then atempted to sort it into good and bad shots.  I figured that I am supposed to use keywords to do this, but that seemed to take a long time.  The problem that I was havin