How to check whethere apps patch need downtime or not?

hi,
i am going to apply in Oracle 11i.how to that patch need down time or not?
Plz help
Thanks in advance

Hi,
Check the patch README file and it should tell you. For the application patches, you need to enable maintenance mode in general before applying any patch. You may use "options=hotpatch" to apply the patch online without enabling maintenance mode but it depends on what patch you are applying, the size of the patch, and modules it is affecting. For patchsets, family packs, minipacks, and AD/FND patches, it is better you enable maintenance mode before applying the patch. For small patches which only need to replace a package with a new one you can apply the patch online.
The best practice is to try your patching on a TEST instance first and see how it works. Please remember you would need to shutdown the application services on Windows if relinking executable files is required, otherwise the patch will fail and you will have to run it again after stopping the services.
Maintenance Mode
http://forums.oracle.com/forums/search.jspa?threadID=&q=%22Maintenance+Mode%22&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
hotpatch
http://forums.oracle.com/forums/search.jspa?threadID=&q=hotpatch&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • How to check whether a patch is applied or not when we apply a patch using patch.sh in oracle apps 11i

    Hi,
    If we apply patch using adpatch,we can know whether the patch is applied or not by checking ad_bugs,even with opatch we can check by using opatch lsinventory...
    But when we apply patch with patch.sh then how can we find out whether a patch is applied or not.
    I have to apply patch 14615390 and  16414360...but how can i know whether those patches are already applied or not. We have jre upgrade so we need to find out whether these patches or already applied or not.
    Thanks in advance,

    These are patches for Forms aren't they?
    I think this has been addressed before
    How to know if a patch has been applied to Forms?
    As the mighty Hussein points out in that post, refer to How to verify if a patch has been installed (Doc ID 105158.1)
    DA

  • How to configure Mail app on mountain lion to not download all my emails in hotmail server. I need only just 1-2 weeks

    How to configure Mail app on mountain lion to not download all my emails in hotmail server. I need only just 1-2 weeks

    Try going to the web based site and see if you can set up a temporary folder there. Move anything you don't want to download to that folder.

  • How could I know whether Microsoft patch need reboot or not ?

    We use win2003R2 and win2008R2 and so on in the domain environment.
    When we apply the Microsoft-provided patch, is there any way to know it need OS reboot in advance ? 

    Thank you.
    It is not about specific patch.
    I would like to know how to identify the microsoft-patches need OS reboot or not , perhaps from information from Microsoft web site.

  • HOw to check weather flash player is installed or not in Nokia ?

    How to check weather flash player is installed or not in
    Nokia ? I had created some flash file , i need to install in Nokia
    mobile .If there is no flash player how it will detect? if it is
    installed then how it will detect.
    Chirag

    Did you see the list of supported devices?
    http://www.adobe.com/devnet/devices/nokia.html
    http://www.adobe.com/devnet/devices/nokia_s60.html
    http://www.adobe.com/devnet/devices/nokia_s40.html
    http://www.adobe.com/mobile/supported_devices/

  • How to check SQL Mamagement studio is installed or not (any version) programatically

    How to check SQL Mamagement studio is installed or not (any version) programatically?
    Secondly how to check if it is installed in other driver of a system(other than C drive) programatically.

    Thanks visakh16,
    Actually i do not want to read/write registry from SQL Server like  you replied 'Accessing The Registry From SQL Server' link
    and i dont want to check manually in registry.even i am aware of all registry path.. programmatically (by C# or VB.NET) i want to get that yes SSMS is installed of not even if it is installed in other drive(other than C Drive).. Beacause if it is installed
    on the system , i want to launch that. i can launch, login for specific user/database, but i want to know, is it installed or not any version of SSMS befoe launch.This is my question... please review it..Thanks in advance..
    Actually I tried this way..
     Dim registryView As RegistryView = If(Environment.Is64BitOperatingSystem, registryView.Registry64, registryView.Registry32)
            Using hklm As RegistryKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, registryView)
                'Dim instanceKey As RegistryKey = hklm.OpenSubKey("SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQL", False)
                If instanceKey IsNot Nothing Then Return True
                Return False
                      '    For Each instanceName In instanceKey .GetValueNames()
                '    Next
                'End If
            End Using
    Here i am checking for instances but i want to check only SQL Management Studio is installed or not..Thanks again

  • How to check the apps authorization/privilege in OS Lion?

    I recently authorized an app to read from my screen (safari, terminal) when I select some words, I want to know how could I manage this authorization and where can I check the app modified which files in my system?

    While we all have MacBooks in this forum most of us don’t have Lion. There's a Lion Support Community where everybody has Lion. You should also post this question there.  https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion

  • How to check which app is using my network, how to check which app is using my network

    I find my net very slow on my mac. so when i open the activity monitor i find network being used but no app seemes to be open which is using the net. so how do i check which app is using the network?

    Download Little Snitch 

  • SRM RFx Response - How to check if a button is clicked or not

    Hi All,
    This is rani.  Im very new to SAP.
    Im into my first project, in which im having an Immediate enhacement.
    In SRM Portal, I need to logged in as bidder to create a bid response.
    "Participate" button is there, i need to clicked that button, this is mandatory.
    So how and where to check whether the button is clicked or not.
    else i need to raise the error message in BBP_DOC_CHECK_BADI and some fileds needs to be grayed out.
    The webdynpro component is FPM_OIF_COMPONENT.
    Can u please help me out in this regard.
    Thanks in Advance,
    Rani.

    Hi  Rani ,
    In SRM 7.0 the system variables ( sy-ucomm & sy-Tcode ) will not work .
    if you want the action code  triggered in the  Webdynpro screen inside the BADI: BBP_DOC_CHECK_BADI
    kindly study the SAP Note 1334202 - How to get current action ID and transaction group
    Below piece of code will give you the action Id in side the badi
    DATA: lo_trans_context TYPE REF TO /sapsrm/if_transaction_context,
            lv_action        TYPE /sapsrm/pdo_action_type,
            lv_tcode         TYPE /sapsrm/transaction_group.
      lo_trans_context = /sapsrm/cl_transaction_context=>/sapsrm/if_transaction_context~get_instance( ) .
      lv_action = lo_trans_context->get_current_action( ). "  replacement for sy-ucomm
      lv_tcode  = lo_trans_context->get_transaction_group( )." replace ment for sy-tcode
    kindly go through the SAP note provided .
    Regards
    Chinnaiya P
    Edited by: chinnaiya pandiyan on Jun 27, 2011 7:34 PM

  • How to check if a button is clicked or not

    Hi All,
    This is rani.  Im very new to SAP.
    Im into my first project, in which im having an immediate enhancement.
    In SRM Portal, I need to logged in as bidder to create a bid response.
    Participate button is there, i need to clicked that button, this is mandatory.
    So how and where to check whether the button is clicked or not.
    else i need to raise the error message in BBP_DOC_CHECK_BADI and some fileds needs to be grayed out.
    The webdynpro component is FPM_OIF_COMPONENT.
    Can u please help me out in this regard.
    Thanks in Advance,
    Rani.

    HI,rani;
       you can use the FM  :BBP_PD_BID_GETDETAIL ,you will get the detail of the Rfx ,and check the status of the Rfx !
       Alex

  • How to check whether internet connection is avaliable or not from Swing

    Hii Javaties
    I am developing a application in Swing .
    I need to call a servlet from Swing.
    So how can i check tht internet connection is avaliable or not. ?

    i am also fatching this type of problem. my applet is playing a audio file from server. during the playing time if network connection failed then NoRouteToHostException occurs from some PCs. but there are some PCs it doesn't occur though the playing is stoped.
    all PCs OS windows XP and jre jdk1.5.0_06
    i can't find out the problem. can any one help me for this?
    code:
    URL testURL = null;
                                try {
                                    testURL = new URL(sourcePath);
                                    //inputStream = testURL.openStream();
                                    URLConnection connection = testURL.openConnection();
                                    connection.connect();
                                } catch(NoRouteToHostException e) {                
                                    System.out.println("NoRouteToHostException block: " + e.getMessage());
                                }thanks
    bashar

  • How to check whether 620 routine is configured or not?

    Hi,
    I hv VOFM>Formulas>Conditional value--> 620 routine, its used to determine the SHIPMENT COST DOCUMENT creation and its talks about consolidating all the shipemts together belongs to same customer and there by creating only one shipment (cartons/volume/weight) cost document. (Its developed and done activated)
    So, pls let me know that, How to check that whether this VOFM routine 620 is in place (configured) or not in the system?
    I tried from SPRO/IMG, but, no use!!
    Thank you

    This should be in SPRO. See the link at the bottom of this [sap library topic|http://help.sap.com/saphelp_erp60/helpdata/en/93/7440d3546011d1a7020000e829fd11/frameset.htm]

  • How to check weather oracle db is started or not and how to start at oracle

    Hi
    could u please tell me how to check weather database is started or not
    and also how to start . (on unix and windows)
    waiting for ur reply.
    rajendra

    Hi rajendra,
    You can use the following command at Unix/Aix operating system.
    login into unix/aix operating system
    & run the following command.
    sqlplus "connect /as sysdba"
    you come in sql prompt
    & than run the following query
    sql>select status from v$instance;
    In windos you can check DB status using MMC.
    if you have any query than message me freely.
    Karan
    Edited by: karan Singh on Jun 24, 2008 5:10 PM
    Edited by: karan Singh on Jun 24, 2008 5:12 PM

  • How to check IN paramers are oracle keywords or not

    Hello
    i am new in oracle word and i want to know, how i will check IN parameters are oracle keywords or not. if client using orale key wors as parameters then i will geneate error and exit from procedure..............
    Regards.
    Edited by: user13478428 on Dec 14, 2010 10:07 AM

    dear sir
    i am new already told. and i had write this dynamic procedure for a very good application.
    i am using on front end dotnet and backend oracle 10g. so i write a dynamic procedure which is using to delete record. but now i want check from frontend, user sen me exact parameters or used oracle keyword like /*, */, //, drop and many more. if user send me such (oracle reserved word) parameters then it will destory my datbase and slowdown my application working.
    so to stop such (oracle reserved word) as parameters , i check these parameters and stop my procedure execution.
    please any help,
    thanks,
    Edited by: user13478428 on Dec 14, 2010 10:07 AM

  • How to check whether Output ES is working or not.

    I am able to see Output ES in the services list of the admin console of my server. Please let me know how to check whether this is working or not.
    Regards,
    Shabeer

    LiveCycle ES2 (and LiveCycle ES) ship with three undersold and unadvertised web applications that are VERY useful. Each is referred to as an Installation Verification Sample (or IVS) but they are great testing tools you can use during development and QA. There is
    1) Assembler IVS,
    2) Forms IVS, and
    3) Output IVS
    Output IVS looks like this...
    The pattern for deploying and using all three IVSs is very similar as what I am about to describe for Output IVS. The following directions apply to the JBoss turnkey on Windows.
    1) go to C:\Adobe\Adobe LiveCycle ES2\deploy and locate adobe-output-ivs-jboss.ear
    2) copy adobe-output-ivs-jboss.ear to C:\Adobe\Adobe LiveCycle ES2\jboss\server\lc_turnkey\deploy
    3) if necessary, start LiveCycle
    4) open a browser and go to http://localhost:8080/OutputIVS/
    5) click Check/Change your preferences
    6) add Admin Credentials
    7) click Save
    8) click Test your form designs
    9) Select an .xdp from Form designs
    10) Click Use EJB (or Use Web Service if you feel so inclined) to invoke LiveCycle Output ES2
    Steve

Maybe you are looking for