10.2.0.4 upgrade - dbua FINISH button does not process

I am using dbua to upgrade database from 9.2.0.6 to 10.2.0.4
I have a problem at the last screen in the DBUA. ("Database Summary Screen").
+[skScheduler timer] [16:50:47:173] [CompManager.setUpForOperation:5623] isDierctory dir=/data/MORADEV2/moradev2db/9.2.0/admin/MORADEV3_msoradb82/bdump+
+[TaskScheduler timer] [16:50:47:174] [CompManager.setUpForOperation:5623] isDierctory dir=/data/MORADEV2/moradev2db/9.2.0/admin/MORADEV3_msoradb82/cdump+
+[TaskScheduler timer] [16:50:47:174] [CompManager.setUpForOperation:5623] isDierctory dir=/data/MORADEV2/moradev2db/9.2.0/admin/MORADEV3_msoradb82/udump+
+[TaskScheduler timer] [16:50:47:174] [CompManager.setUpForOperation:5623] isDierctory dir=/data/MORADEV3/admin/MORADEV3/dpdump+
+[TaskScheduler timer] [16:50:47:174] [CompManager.setUpForOperation:5707] Creating Summary log file+
+[TaskScheduler timer] [16:50:47:178] [CompManager.setUpForOperation:5748] Everything OK in setUpForOperation+
+[Thread-27] [16:50:47:212] [StepContext$ModeRunner.run:2478] ---- Progress Needed:=true+
+[AWT-EventQueue-0] [16:51:7:37] [SQLEngine.done:1958] Done called+
+AWT-EventQueue-0] [16:51:7:37] [SQLEngine.done:1958] Done called+
I hit the FINISH button, it just does not progress to the upgrade.
I am on Linux x86 - RHEL 5.5

If you have problems with the DBUA and you cannot properly run it, instead of using the GUI approach you may
consider the MANUAL upgrade with the scripts!
The DBUA calls the same scripts you have to run with the manual method but in a more Next-Next Wizard.
For me DBUA is a great tool for Windows, but with Linux-Unix i prefer the Manual upgrade with the scripts
For example
http://www.runningoracle.com/product_info.php?products_id=354

Similar Messages

  • Ipad 2 Print button does not work after 6 upgrade?

    Since we upgraded to iOS6, our print button does not work and does not find our printer.  It was working fine until iOS6.  Called an Apple Technician and he had me reset, which wiped out all of my saved information but didn't fix the print.  He then started talking about a restore but the phone line went dead.  Has anyone had this problem?

    Today's iOS 6.1 update fixed the printer problem.

  • HT5594 I upgraded to iOS 7 and my location service button does not work.  How can I turn it back on?

    I upgraded to iOS 7 and my location service button does not work.  How can I turn it back on?

    Settings>General>Restrictions>Privacy>Location Services. Have you restricted it?

  • Windows 8.1 - Upgrade from 8, Start Button Does Not Work

    I cannot find a fix for my 8.1 start button.
    It works when I move the task bar to the top, right or left but not at the bottom. I ran all windows updates and there are no missing/unknown drivers in device manager. No errors in the event log. I've restarted multiple times and created a new local profile.
    I've also tried: 
    Copy WinX folder under C:\Users\Default\AppData\Local\Microsoft\Windows into C:\Users\[your user name]\AppData\Local\Microsoft\Windows.
    dism /online /cleanup-image /restorehealth
    Any ideas? I would prefer not to do a clean install. Thanks in advance. 
    HP Touchsmart 23 series
    i5-3475S 2.90GHz
    16GB RAM
    1TB HDD

    Could you please describe a little more detailed about “Start Button does not work”? What is the symptom?
    Yes, when the taskbar is at the bottom of the screen, I cannot left click on the start button. The machine is also a touch-screen, which does work when I touch the start button. If I move the task bar to the left, right or top; the start button does work.
    And what is the kind of the account, Domain? Local? Or both?
    This is local machine.
    It still doesn’t work in a new account?
    Same issue happens with a new account.
    What happens if you use win + "X"?
    Win + "X" works fine; displays options.
    Regarding to the “doesn’t work, both for screen touch and mouse?
    Left-click via the mouse does not work. Touch works fine.
    Can you try to copy the WinX folder from a working PC to your PC for a test?
    I do not have another Windows 8.1 machine available to me.

  • Since upgrade to v29, pinned tabs don't appear and sometimes all tabs don't appear and open menu button does not work

    My pinned tabs don't appear at any start and at some starts, I don't see the bookmarks toolbar (I can restore that by removing it from view-toolbars and then reselecting it). when this happens, FF also does not show any tabs and the Menu button does not work.
    I have tried various suggestions found on here like deleting the sessionstore.js and re-installing FF, also tried disabling hardware acceleration in safe mode and still have the same problems.
    Am reluctant to reset FF in case I lose my favourites and Bookmarks, is there anything else I can try?

    Firefox may not have closed properly.<br />
    You can try to update to Firefox 29.0.1 to be released tomorrow (Friday) to see if that helps with this issue.
    See also:
    *"Hang at exit": http://kb.mozillazine.org/Firefox_hangs
    *"Firefox hangs when you quit it": https://support.mozilla.org/kb/Firefox+hangs

  • Button does not respond (with attachment)

    Hi,
    I'm trying to develop a LV program for a psychology experiment to record a participants mouse movements whilst drawing or tracing a picture using the mouse.
    My program uses an event structure to generate an event each time the mouse is moved or the mouse button is pressed or released. Upon each of these events the coordinates and button position is recorded to an array.
    When they have finished drawing there is a button "Stop & Save" that allows the user to save the coordinate data to a file. This can then be opened by a sister program I'm developing that allows the movements to be replayed and shows where the mouse button was down and up.
    At the start of the program there is the option of loading a background jpeg picture to trace over on the screen.
    The program then waits for a 'Record' button to be pressed before moving on to record all coordinates there after until the 'Stop & Save' button is pressed.
    The problem I have is that the record button does not respond. It doesn't even change state when pressed, even though at that stage it's just sat in a while loop waiting for it to be pressed before moving on to the event structure.
    I attach the program for you to look at.
    Any help/hints much appreciated.
    Thanks,
    Dave.
    Attachments:
    MouseCoordinatesForPW.vi ‏178 KB

    altenbach wrote:
    Your overall program design is higly flawed. This calls for a single state machine with an event structure that handles all FP events. All your locals can be handled by shift regsters. Get rid of that useless stacked sequence!
    Frame 0: Initialization belongs to the left of the state machine. CoordinatesArray should initialize a shift register (no locals needed). Use a boolean shift register to set state to either recording or not. Event for "record, value changed" will switch the boolean to be used on the other states.
    Frame 1: "Clear" and "stop" need to be inside their own events. Running it parallel to the event structure is a no-no! Do you really want to record mouse movements on the entire FP or only on the picture area?
    Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes no sense.
    Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values.
    Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead.
    Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help.
    Message Edited by altenbach on 05-22-2007 09:23 AM
    Hi, thanks for your reply.
    The reason for the main stacked sequence was to get some order to the program, my programming background's text based and as such I like to think of a program running in a list/sequence order. LabView seems strange when you've been used to programming in asm or C. Does anyone know of any books or online documentation for people migrating from text languages to LV? - I haven't found any.
    "Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes sense."
    - The string 'CoordsArray' is cleared to make sure it's empty before chars concatanated to it in the next frame. Call me old fashioned but is it not good practice to clear out any junk in a variable rather than just assuming it's empty?
    "Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values." - not sure what you mean by that?
    "Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead."
    - No, it's not an empty string since in the previous frame the coordinates array is converted to numbers and concatanated to it. Trust me, it generates a file with lots of data in so no way is it an empty string!!
    - Yes, you could just swap the cases instead of inverting the 'canceled' output but sometimes it reads better to say 'if NOT cancelled then DO theTask, ELSE DO nothing' rather than 'if cancelled DO nothing ELSE DO theTask'. Not sure if that makes sense but I guess it's just personal prefference there.
    "Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help."
    - I wasn't sure how that one would work. I wanted the final exe version to close the program window when the program comes to the end, what's the best way to do that? In the past I think I used the 'Exit' function but this would annoyingly quit LabView at the end of each trial run whilst still in the development stage.
    Thanks,
    Dave.

  • I just updated firefox and now when i play online games ,my home button and my login in button does not work,also my refresh button is gone. Please help me with this problem. THANKS

    i updated firefox to the newest version,now my login and home button does not work,also my refresh button dissapeared. I play alot of games and need those buttons to switch back and forth to other games. THANKS

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Personas button does not appear in HTML

    Personas button does not appear in HTML
    Hi! I installed Personas 2.0 and finished most of the configuration. The Sliverlight component is working fine but when I switch to html component the personas button not appear.
    I did all the settings. User have SAPALL and /PERSOS/ADMIN_ROLE with /PERS/AUTH and /PERS/AOBJ full authorizations. I use sap-ie=edge as part of the URL: http://xxxxxxxxxxxx:8000/sap/bc/gui/sap/its/webgui?sap-ie=edge&sap-client=100&sap-language=EN
    Is there any other settings I can do?
    I've SAP_BASIS 740 level 05 and Kernel 741 level 11 in Personas 200 SP 02.
    Thanks,
    Juan Manuel.

    Hi Tamas! Does this mean that in SAP_BASIS 740 level 05 HTML is disabled and button never appears? Do you have any note or link where talk about it? I just need to access HTML for comparison with Silverlight.
    thank you very much!

  • Buttons blend into background. Open menu button does not produce a menu.

    Progress button, home button, back button, bookmark this page, show your bookmarks and open menu buttons are present, but you can not see them. Open menu button does not produce a pop up menu.

    .Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    <b>WARNING:</b> Do not run Firefox's uninstaller or use a third party remover as part of this process, because that could permanently delete your Firefox data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!
    Thank you.

  • Browser Go button / "More" button does not work

    Within the browser the Browser Go button / "More" button does not work
    When I tap it the highlight appears above it... but nothing happens.
    I upgraded the OS today and that didn't fix the problem.
    I have to use google to browse to a different url... incredibly frustrating... solution?
    With further testing I've found that if I load a new tab nothing happens... if I then reselect that new blank tab I can then enter in one url of my choosing and it will load... after that the tab from a Go button stance is dead again.  No matter what I do I can get the 'three button' more button to work.
    Help Please!
    Tudor

    Hey tudorwhiteley,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    Does this happen to all websites?  Also what version of BlackBerry 10 are you currently running?  This can be found by going to Settings>About.
    If you remove the battery and place it back in and then access the browser, are you able to replicate the issue?
    I look forward to your reply.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Froze on black screen and power button does not work

    my sons ipod touch is stuck on a black screen when plugged into the computer got a spinning wheel and will not connect now spinning wheel will not go away the power button does not work so can not reset it manually
    any suggestions would be appreciated

    - iOS: Not responding or does not turn on
    Neglect the reset and when it says place the iPod in recovery mode use one of thes programs
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer          
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Open Task Button does not come in Outlook

    I have a three level approval workflow in which each level an email is generated to the approve to approve or reject.
    But suddenly the Open Task Button does not pop up in Outlook 2010 anymore can you tell me why?
    Srinivasan Kidambi

    had the same issue with External users not using Outlook. This is how I fixed it:
    Open the task list that the workflow is using and connect it to Outlook. Then kick off a workflow to make a new task. Once the task is made open the task from Outlook. The bottom options (review, perform the specific req. for the task, and Open this task)
    are now links. Hover your mouse over the link and you will see the address.
    Now open SPD, connect to your site and open the work flow assc. to the doc lib.
    Start editing the workflow and click the "Approval" link
    Click "Change the behavior of a single task"
    You are going to have to look for all the instances of "then e-mail task notification to "Current Task:Assigned to"
    Open "Current Task:Assigned to"
    Click where you want he link to go and hit the Hyperlink button
    name the link whatever you want, then hit the string builder ("..." button)
    Copy the link from the Task in Outlook into the string builder (if you use External addressing you can also hard code the External address).
    At the very end of the link where is says ID=(then a number) delete the number and DO NOT put a space. Click the Add or Change Lookup button and use "Current Task: Approval" "ID" "As String" and click ok. Should like this:
    Now this will not pop the form up, but it will send the user straight to the task form (might have to enter username and password) for the correct task. Remember to do this to all the "Current Task:Assigned to" in the workflow. It sounds like a chuck of
    work but it does not really take thaty long on the OOTB Approval workflow.
    Just wanted wanted to add my two cents.
    Also check
    http://social.technet.microsoft.com/Forums/en-US/417466a3-cdcb-4559-8453-9fff6da4aceb/getting-around-a-missing-open-this-task-button-in-a-nonoutlook-email?forum=sharepointcustomizationprevious
    If this helped you resolve your issue, please mark it Answered

  • Is there a capability to save/export the time capsule settings file when using the iphone/ipad airport utility. the "file" button does not exist on the latest airport utility app.

    is there a capability to save/export the new airport 2TB time capsule settings file when using the iphone/ipad airport utility. set-up wasn't a problem but the "file" button does not exist on the latest airport utility app v6.3 to save the configuration file.

    the "file" button does not exist on the latest airport utility app v6.3 to save the configuration file.
    Sounds like you are a bit confused with version numbers.
    Latest AirPort Utility version for the iPhone / iPad is 1.3.3.  There is no option or capability to export/import settings on the iOS version(s) of AirPort Utility.....although you could take a series of screen shots and save them for future reference.
    AirPort Utility 6.3.x is found on a Mac.....not on iPhone / iPad. Export and Import options are found under the File menu in 6.3.x.

  • After upgrading to Yosemite, Preview does not let me edit jpg photos (cut out something in background and paste a patch to get rid of the flaw.)

    After upgrading to Yosemite, Preview does not let me edit jpg photos (cut out something in background and paste a patch to get rid of the flaw.) Help.

    thankyou. THANK you.
    thankyouthankyouthankyou!
    sorry about no screenie but the first option worked (at least so far!)
    THANKYOUTHANKYOUTHANKYOUTHANKYOUTHANKYOUTHANKYOUTHANKYOUTHANKYOU

  • I installed the latest version of iTunes (10.6.3.25) on a new Windows 7 PC.  I can see ahred libraries on Shared but can't import as the line containing the Settings and Import buttons does not display.   Any suggestions?

    To move the iTunes library to this new computer I switched on Home Sharing and can see the other libraries on my home network.  If I select tracks from a Shared library I can't import them as the strip containing "Show: All Items" and the "Settings" and "Import" buttons, does not display at the bottom of the screen.  Goes straight from the list of tracks to the strip with Playlist icons and xxxx items, tttttt total time, yyyy GB. 
    Any suggestions for making the Import button appear?

    I hvae the EXACT same issue
    I built a new computer which is EXTREMELY fast overclocked i7 ect and.. ITUNES DOESNT WORK
    I click on itunes which ive uninstalled and reinstalled and reset the winsock AND seen if there were any errors AAAAAAND ive check the Hkey to make sure bonjur was the only one in there which it is and all that happens is my cpu goes to 25% and i cant do anything except go into the task manager and close it! ANYTHING with itunes (everything else is premium speed).
    what do i do
    windows 7 64 bit

Maybe you are looking for

  • A few questions from possible Apple TV newbie

    Hi all, I am interested in buying Apple TV and have read the product description on the Store section.I have a few question as I don't quite get how it works. I watch digital/freeview TV currently on my iMac using a USB eye-TV thingy. Works Great! I

  • Getting error 0x8100002f while taking backup of windows 7 on external drive.

     I have tried to back up windows 7 back up on external drive. After completing 90% back up i got error 0x8100002f. When i view the details of skipped files there are some files skipped from document, user data as these file are corrupted. I have trie

  • How to out Dynamic ref cursor from Procedure to Forms

    Hi I am trying to out Dynamic ref cursor from Procedure to Forms, But I am unable to do so. however cursor return the value within procedure but I am failed to capture the same in Forms Pl advice suggestion if any, Here I am attaching full procedure

  • Database corrupt + ipod refuses to update

    windows said the ipod database was corrupt, and when i tried to add new songs, it didn't work. to try to solve this problem, i have downloaded a new ipod updater. ipod updater doesn't finish. after 30 minuts, it still says it needs to stay connected

  • Cannot select a folder- Nikon NEF files

    OK, I am aware of all the talk about having to select a folder for the DNG converter, not the actual files. My DNG Converter has worked fine up until today, it's now not letting me select a folder. When I do, and go back to the converter window, the