11.5.10.2 12.1.1 and 10g 11g database upgrade at same time

I have just started an 11.5.10.2 > 12.1.1 upgrade and have created a project in MWIZ 2.15 for it.
I would also like to upgrade the 10.2.0.2 database to 11.1.0.7 as part of the same upgrade and create an MWIZ project for that.
I have a couple of questions that the MWIZ FAQ does not address:
1. At what point in the 11.5.10.2 > 12.1.1 upgrade should I do the database upgrade?
MWIZ has two points when it can be done based on apps/database versions. One is at the end of the 'Prep for Upgrade' category and the other is during the 'Upg to Rel 12.1.1' category. The MWIZ step notes cover upgrading to the latest 10g or 11g patch version but not upgrading from 10g to 11g so I am unsure which category to go for.
2. When I create the database upgrade project which 'Destination Version' should I choose?
The two options are 'RDBMS 11.1 and E-Business Suite 11.5' and 'RDBMS 11.1 and E-Business Suite 12'.
As I haven't upgraded to R12 yet and am still at the pre-upgrade stage should I pick 11.5? Or should I go with R12 because I am upgrading Apps and the database at the same time?
Any help and advice gratefully received.
Thanks

Answer to above question not required now as:
Having read the 24th December update of note 761570.1 - 'Database Preparation Guidelines for an Oracle E-Business Suite Release 12.1.1 Upgrade' I have decided to upgrade the database to 11.2.0.x by following the Path C option.
Unfortunately as the 11.2.0.x upgrade isn't covered by MWIZ yet I will have to follow the manual steps.

Similar Messages

  • Can Intelligent Agent 9i and 10g be up at the same time

    Hello,
    I have a 9i agent and want to install 10g agent so I can see with the newly install 10g Grid Control. Can 9i and 10g be running in the same box on different oracle_home. Thank you.

    Yes.

  • Upload image to directory and data to database from the same form

    Hello all
    I'm playing at building a shopping cart (never done one
    before) from a tutorial by Gordon Knapp at www.webthang.com.
    I have created the site and it works perfectly. Now I want to
    extend it.
    There is a form that allows the user to add data to the
    database. I would also like to be able to upload an image to a
    directory on the server and add the data to the database at the
    same time from the same form. It would be good if the input field
    "<input name="product_picture" type="text" id="product_picture"
    tabindex="6" size="50" />" could be populated automatically by
    the filename of the image being uploaded, but this isn't a
    neccessity.
    I have looked at various ASP Upload packages and I can upload
    an image alone but none of them make it clear how to upload the
    image and add data to the database at the same time.
    As this is a private project I need any suggestions to by
    free.
    The tutorial shows how to create the site in Ultra Dev but
    worked perfectly well in DW. The page concerned looks like this. It
    is named 'admin_add.asp':
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="../Connections/con_ecom.asp" -->
    <%
    Dim MM_editAction
    MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
    If (Request.QueryString <> "") Then
    MM_editAction = MM_editAction & "?" &
    Server.HTMLEncode(Request.QueryString)
    End If
    ' boolean to abort record edit
    Dim MM_abortEdit
    MM_abortEdit = false
    %>
    <%
    ' IIf implementation
    Function MM_IIf(condition, ifTrue, ifFalse)
    If condition = "" Then
    MM_IIf = ifFalse
    Else
    MM_IIf = ifTrue
    End If
    End Function
    %>
    <%
    If (CStr(Request("MM_insert")) = "add_form") Then
    If (Not MM_abortEdit) Then
    ' execute the insert
    Dim MM_editCmd
    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_con_ecom_STRING
    MM_editCmd.CommandText = "INSERT INTO products
    (product_category, product_name, product_price, product_briefdesc,
    product_fulldesc, product_picture) VALUES (?, ?, ?, ?, ?, ?)"
    MM_editCmd.Prepared = true
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param1", 202, 1, 50,
    Request.Form("product_category")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param2", 202, 1, 50,
    Request.Form("product_name")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param3", 5, 1, -1,
    MM_IIF(Request.Form("product_price"),
    Request.Form("product_price"), null)) ' adDouble
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param4", 203, 1, 536870910,
    Request.Form("product_briefdesc")) ' adLongVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param5", 203, 1, 536870910,
    Request.Form("product_fulldesc")) ' adLongVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param6", 202, 1, 50,
    Request.Form("product_picture")) ' adVarWChar
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close
    ' append the query string to the redirect URL
    Dim MM_editRedirectUrl
    MM_editRedirectUrl = "admin_control.asp"
    If (Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0)
    Then
    MM_editRedirectUrl = MM_editRedirectUrl & "?" &
    Request.QueryString
    Else
    MM_editRedirectUrl = MM_editRedirectUrl & "&" &
    Request.QueryString
    End If
    End If
    Response.Redirect(MM_editRedirectUrl)
    End If
    End If
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Administration - Add Product</title>
    <link href="../scripts/admin.css" rel="stylesheet"
    type="text/css" />
    <script type="text/javascript"
    src="../scripts/ecom.js"></script>
    </head>
    <body onLoad="adminTitle()">
    <div id="wrapper">
    <div id="pageHeading">ADMINISTRATION - ADD
    PRODUCT</div>
    <div id="navBar"><a
    href="admin_control.asp">Control</a> | Add | <a
    href="admin_view.asp">View</a> | <a
    href="admin_update1.asp">Update</a> | <a
    href="admin_delete1.asp">Delete</a> | <a
    href="../Default.asp">Shop</a></div>
    <br />
    <form name="add_form" id="add_form" method="POST"
    action="<%=MM_editAction%>">
    <table border="1" align="center" id="tblArea">
    <tr>
    <td class="tdLabel">Product Category</td>
    <td colspan="2"><input name="product_category"
    type="text" id="product_category" tabindex="1" size="50"
    /></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Name</td>
    <td colspan="2"><input name="product_name"
    type="text" id="product_name" tabindex="2" size="50"
    /></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Price</td>
    <td class="tdContent" colspan="2"><input
    type="text" name="product_price" id="product_price" tabindex="3"
    size="50" /></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Short
    Desciption</td>
    <td class="tdContent" colspan="2"><textarea
    name="product_briefdesc" id="product_briefdesc" cols="47" rows="4"
    tabindex="4"></textarea></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Full
    Description</td>
    <td class="tdContent" colspan="2"><textarea
    name="product_fulldesc" id="product_fulldesc" cols="47" rows="5"
    tabindex="5"></textarea></td>
    </tr>
    <tr>
    <td class="tdLabel">Product Image File Name</td>
    <td class="tdContent" colspan="2"><input
    name="product_picture" type="text" id="product_picture"
    tabindex="6" size="50" /></td>
    </tr>
    <tr>
    <td class="tdLabel"> </td>
    <td align="center"><input type="reset" name="Reset"
    id="Reset" value="Reset Form" /></td>
    <td align="center"><input type="submit"
    name="Submit" id="Submit" value="Add To Shop" /></td>
    </tr>
    </table>
    <input type="hidden" name="MM_insert" value="add_form"
    />
    </form>
    </div>
    </body>
    </html>
    Hope you can help.
    Warm regards
    Martin

    Got it sorted.
    Found an excellent tutorial at Webthang.
    http://www.webthang.co.uk/tuts/tuts_dmx/rob15/rob15.asp

  • ASA 5505 as a SSL VPN Server and Easy VPN Client at the same time?

    Is it possible to configure and operate the ASA 5505 as a SSL VPN server and Easy VPN Client at the same time? We would like to configure a few of these without having to purchase additional ASA 5505 and use a 2 device method (1 SSL VPN Server and 1 Easy VPN Client). Thanks in advance.

    I don't think it is possible. Following links may help you
    http://www.cisco.com/en/US/products/ps6120/products_configuration_guide_chapter09186a008068dabe.html
    http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a008071c428.shtml

  • Can you use the Airport Express A1264 as an AP and a DHCP server at the same time?

    Can you use the Airport Express A1264 as an Access Point and a DHCP server at the same time?
    I would like to use it as a DHCP server and AP at the same time in my LAN (no internet, just local machines through a few switches). I was lead to belive this could be the case from a few networking friends that haven't been friendly enough to help me out setting it up.

    I need it to act as a dLink/Cisco/Linksys/etc basic wifi router, in the fact that you can access it via wifi, and it will spit out DHCP addresses (192.168.1.xxx) to everything wired downstream of it.
    I want to simultaniously provide a Wifi connection and a LAN connection at the same time
    Thanks,
    BRad

  • TS3280 How can i enable both paired bluetooth and ios keyboard input at the same time?

    How can i enable both paired bluetooth and ios keyboard input at the same time?
    This is needed for the app im working on. Need some user input via keypad as well as scanner input via a paired bluetooth scanner.

    You probably should not be using a keyboard bluetooth profile for a scanner, I am not a developer for apple so do not know the location for you to find out the correct profile you should be using for an input device that is not a keyboard. Sorry,
    I am sure if you navigate the apple developer site you will probaly finmd what you're looking for.
    https://developer.apple.com

  • Is there an issue with the hitachi hard drives in the MacBook Pro's ?  Got a 15 inch and a 13 inch at the same time and both drives have failed in under two years. I have heard from a few other people with same issue.

    Is there an issue with the hitachi hard drives in the MacBook Pro's ?  Got a 15 inch and a 13 inch at the same time and both drives have failed in under two years. I have heard from a few other people with same issue. Other drive I have had have lasted at least 5 or more years.

    there is a dylib you can put in the springboard if jailbroken but if not you have to find an apple store

  • Can I save and open an attachemnt at the same time?

    I want to be able to open an email with an attachement or attachments and click on the save button for the attachment(s), designate the location (folder) where they are to be saved - but also tell Mail to save the attachments then open them up on the desktop. Two operations in one. If you understand my request you understand what you have to do now - two separate steps. Save. Then find the saved files and open them.
    OR
    Open the attachment from the email which then downloads the file to your designated "all-purpose" location (not the ultimate location you'd want to save it). Then once you've seen it, you do the save thing with the original mail attachment and then have to go back and delete the file from the designated all-purpose download location.
    This latter problem of having to delete unedited downloads manually could be solved with an option in Mail preferences to automatically delete unedited downloads in the "all-purpose" location after that same attachment had been downloaded to another specific location on your hard drive. This option for deleting unedited downloads does not exist, however.
    But even if this step-saver option existed in the preferences, you still would not be able to tell your Mac to save a particular Mail email attachment to a particular folder AND open that attachment at the same time in one command.
    That's what I want.
    Maybe I want both. Save and open together plus the ability to automatically delete unedited attachment downloads in the "all-purpose" download file after the same attachment has been downloaded to another specific location on your hard drive.

    with IOS 6 yes you will be able to do that

  • Can Express 9 play and record multiple instruments at the same time?

    I have logic express 9 and was told with my interface that I can play and record different instruments at the same time on Express 9. Is this true because I have spent a long time trying to figure out how.

    Hi,
    to record multiple Inputs at a time, open up the appropriate number of audio tracks. Now for each track, select the correct Input in the Channelstrip.
    Now, ARM all these tracks for recording by clicking the little red R in the track header or channelstrip. Now if you hit record, all these tracks should record simultaneously their respective inputs.
    All other existing tracks should playback while recording.
    Fox

  • My dad and i use the same apple id, when he recieves a call, hes phone and my phone ring at the same time, why?

    my dad and i use the same apple id, when he recieves a call, hes phone and my phone ring at the same time, why?  and how do i fix this

    Settings > FaceTime > iPhone Cellular Calls > OFF

  • How do i drag media to the menu screens in premiere elements 13? I can't see my audio files and the menu screens at the same time. In prior versions it was easy

    How do i drag media to the menu screens in premiere elements 13? I can't see my audio files and the menu screens at the same time. In prior versions it was easy?
    It is very cumbersome to "re browse" for audio files/pics/movie clips to add to menu screens. Certainly there is a way to view the media and menu screen at the same time so I can drag and drop?

    Jayhawk
    I think I know exactly what you are seeking and believe it cannot be done in Premiere Elements 11, 12, and 13 as it can be done in versions earlier than 11 where the Disc Layout and Project Media are viewed side by side.
    Premiere Elements 13 uses a Movie Menu customization workspace which is not allowing viewing of Project Assets in the Expert workspace at the same time.
    ATR

  • Can i listen to i tunes and use another app at the same time on ipad 4 ?

    I've been trying to figure out how to listen i tunes, or listen to music on a web music site, and play a game at the same time, is that possible to do on an iPad 4 ?

    I can listen to Tunein Radio and play Coin Dozer and Burst Bubble at the same time.
    I can also play music on iTune an play Coin Doser and Bubble Burst at the same Time.

  • Labview runs CANBus and DNP3 software model at the same time

    I have an ordinary computer which communicates with several DSPs (CANBus communiation) through Compact Rio. The physical connection is that the DSPs' CANBuses are connected together and connected into Compact Rio, then the Compact Rio is connected with a router through Ethernet, at the same time, the computer also connects with the Router through Ethernet. Based on this physical architecture, the computer can run CANBus software model on Labview to communiate with Compact Rio and DSPs.
    As I know, the communication between the computer and the Compact Rio is not real time, and the communication between Compact Rio and DSPs can be real time, can you tell me if I get the right point?
    Now we have another device named RTDS (communicate with outside through Enternet based on DNP3), and want to add RTDS into our system. I am not sure about the way to conduct the communiation. The main question is that we need to run Labview to communicate with DSPs through CANBus and RTDS through DNP3 at the same time, is that possible?
    I proposed two possible ways to conduct communication, bt not sure if it is possible.
    1. I proposed that I connect RTDS with the Router through Ethernet, and then the computer communicates with RTDS through the Router based on DNP3 and also keeps the communication with DSPs through Router, Compact Rio, CANBus and then DSPs. I am wondering if this kind of communication is available for Labview.
    2. The second possible way I proposed is that I connect the RTDS with Compat Rio (CRio keeps connecting with DSPs through CANBus) through Ethernet, and then the computer communicates with DSPs through Router, Compact Rio and CANBus, and the computer communicates with RTDS through Router, Compact Rio and Ethernet. Also, the computer needs to run Labview with CANBus sofeware model and DNP3 software model at the same time. I am also not sure if it is possible.
    The diagram of the communication system is shown in the attachments.
    Attachments:
    Commnucation system diagram.pdf ‏118 KB

    To use Mail from multiple devices, your Mail Server needs to be using IMAP protocol (iCloud Mail uses that).
    IMAP keeps the Master copies on the Server, not on the Mac the way most default POP Mail servers do.
    To keep one Master Calendar, accessible from all devices, you need a web-accessible place to keep the Master Calendar. iCloud can do that.
    ¿Do you see a trend developing here?

  • [WIN7] Enable Microphone and "What U Hear" at the same time?

    Hey folks!
    I am trying to enable both at the same time on my Windows 7 in order to record Battlefield 2 and my own voice at the same time.
    Please do NOT start with "do this and that", I have tried everything for at least 1 year by now and the only way to make it work is to have microphone and "What U Hear" enabled. Apparently it is not possible. In order to activate one of both you have to make it "Default" record device but then the other device gets disabled. Trying to record the disabled device obviously ends up in silence.
    What is the reason for that and how to enable BOTH devices at the same time?
    I am using PAX Drivers which the maker always updates to the latest Creative Drivers. So I am up to date.
    Thank you a lot in advance.

    Thank you for your reply.
    Well, yes, the microphone is activated. And if I put the microphone playback volume to 100 I can hear myself talk even with "What U Hear" as my default recotding device. But once battlefield 2 starts it uses the default recording device for the in-game voice over IP. If I select "what U hear" as the default device it will basically put the game sound into the VOIP...
    What I tried was - set microphone as default device, launch BF2 so it registers the microphone as VOIP input, then alt tab out, select What U Hear as default device but it does not get activated! I only see a bar at the microphone.
    What I want is to be able to have TWO volume bars, in What U Hear AND Microphone so I can use the microphone for BF2 and What U Hear as gameplay-sound for my recording device.
    In Windows XP this was possible. In Windows 7 this is missing.
    The problem here is that once a recording device (the Default one usually) is being used by a program it BLOCKS the other recording devices.

  • Will the full version of adobe allow you to review and scroll 2 documents at the same time?

    will the full version of adobe allow you to review and scroll 2 documents at the same time?

    Sorry, I do not understand what you mean by "the full version of adobe".  Do you mean Acrobat?
    I am also not clear what you mean by "review and scroll 2 documents at the same time"; please clarify.  Adobe Reader (and Acrobat) lets you open as many documents as you want, but if you press Page Down/Page Up on one document, it will not perform that action on the other documents at the same time.

Maybe you are looking for

  • Issue for Creation of Project from Std Templete

    I have created a templete 2 templetes  like temp1 temp2 both are with same legth of projects & structure temp1 is working from all the aspects , with temp 2 while creation of new project with the help of templete, if i give the project definition as

  • 11.1.1.6.0: Invalid Unload Code for Oracle

    Hello, I have just upgraded from ODI 10.1.3.6.3 to 11.1.1.6.0 in a test environment. After doing so, I noticed that existing interfaces create invalid syntax to unload from an Oracle database. The message is as follows: org.apache.bsf.BSFException: e

  • AIR 1.5, timer and html update

    In our HTML AIR App., we developed some code to maintain a countdown timer that updates itself every second. An html element is updated within a span area (<span id="timer-display"></span>). As of AIR 1.5, the code is not updating the html, yet the c

  • CC&B to DOC1

    Hi, Can you please help me to understand how Does CC&b will be interfaced with DOC1 (external billprint provider)? where can i get the technical help for the same? Regards, Priya

  • Shutdown Weblogic in Linux

    Hi everyone, Does anyone know how to shutdown the web logic server 5.1 in Linux? Best regards,