Progress of update

Hi friends,
is there a possibility to see the progress of an update-statement, i.e. how many "rows" of the table have been processed already. We currently have a rather simple UPDATE-statement which cycles through a table with 135000 rows and after 90 minutes run-time we are getting a bit anxious right now and would like an estimate on how many rows have been updated already so we can compute the remaining time of the statement.
Thanks

I am not sure how yuo can estimate but following statement will tell you rollback segment usage by session. May be based on that you can estimate number of rows processed and hence estimate remaining time.
select rpad(object_name, 30, '.') TABLE_NAME, substr(name, 1, 11) rollback, SESSION_ID SID, curext,
       CURBLK
  from DBA_OBJECTS A, V$ROLLSTAT B, V$ROLLNAME C, V$LOCKED_OBJECT D
where D.OBJECT_ID = A.OBJECT_ID
   and A.OBJECT_TYPE = 'TABLE'
   and C.USN = B.USN
   and D.XIDUSN = B.USN
order by object_name;Thanks,
Dharmesh Patel

Similar Messages

  • Copying multiple files (1000+) - Progress bar update is slow! Any ideas?

    When I copy 1000+ raw files from any drive to another it takes a long time before the copy progress bar shows up, and some times it just takes a long time before the progress is updated. When it is updated, it has already copied alot of the files. Quite annoying, because you don't really get if it has begun copying, if it's hanging or what... Seems to me that the new per-file progress bar takes up too many ressources!
    Btw I'm not on a slow system. 2.5 Quad core i7 MBP, 16GB RAM, OCZ Vertex 3 SSD...
    Anyone got any ideas on this?

    The progress bars have always been wonky. Can't judge a thing by them.
    File feedback here.

  • URGENT: progress bar update problem

    Hi,
    I have the following problem: I have a JWindow that displays as a Splash screen at the start of my application. On that I have a progress bar that updates upto 60% (there is no task associated with it, I simply create a thread that does this). In the main thread, i wait for this thread to complete and then display a login dialog box on top of the splash screen. At this time, the progress bar is not increasing.
    After logging in correctly, I wish that the login dialog box be disposed, and i should be able to see the progress bar reach completion, after which i want a JFrame to be displayed with a lot of components, and after this JFrame is displayed, i want the splash screen to be disposed.
    However, the progress bar updates itself properly till the login dialog is displayed. when i click enter on the dialog box, although i have called dispose, the part of the dialog box over the splash screen reamins visible, and the progress bar is no longer updated. I have printed System.out.println statements in the run part of the thread doing the update, and this shows that the progress bar value goes on to reach 100. but the GUI is not updated.
    Can any1 explain why this is happening? Any help inthis matter would be highly appreciated... Pls reply URGENTLY!!! i've already spent three days looking into this!!!
    Thanks...
    Shefali Panchal

    Caution with using threads to update the display -
    look at the Swing __utility__ class methods, I seem to remember that
    there are 2 methods in which you pass a thread instance
    (which can contain display update calls)and this is called and maintained within the event despatch thread - this should mean
    that display updates are done correctly.
    Refer to Swing documentataion with regard to utility methods
    Hope this is of help

  • ITunes problems after upgrading - progress bar "updating library"

    after upgrading iTunes to the latest version I open iTunes and a progress bar appears "updating library". After a few seconds it stucks and I do not get a response at all. I have to cancel the program in the Windows Task Manager. Any help is greatly appreciated. Cheers

    You might try rebooting your computer. Select Shutdown and let the computer turn off. Then start it up again and see if the problem is corrected.

  • Saving Progress when updating applications (apps)

    I have a few applications that have had updates available and when I update them on the iPhone, I lose all the progress. This is very frustrating for games like Texas Hold'em and I don't even want to think about losing everything in Asphalt 4.
    Is there a way on the 3G (I have heard of a way to do it on the older versions) to save the "user" file or something so it can get applied back after updating in order to keep all the user progress in that app?
    Thanks.

    If all your apps and other content are on your computer's iTunes (File > Transfer Purchases) then the update process should do a backup for you (you can make sure that you have an up-to-date backup by right-clicking the iPad 'device' on the left-hand side of iTunes and selecting Back Up), and it should then restore the iPad to that backup after it's updated the iOS. For the restore to work you will need your apps on your computer's iTunes (which the Transfer Purchases should ensure) - the backup itself doesn't contain the actual apps, just their content and settings, so for the restore to work it needs access to the apps.
    All my content and settings were copied back to my backup by the update process.
    If the update doesn't do the restore for you (which it should), you can always do the restore via iTunes.

  • Progress bar update issue

    I have a flash program written in Action Script 3.  It worked fine on XP but I recently moved to windows 7 and now I have problems.  It is a simple file upload program.  In Windows 7 the progress moves really fast to 100% like it is reading a buffer and not what is being sent over the internet.  Once it reaches 100%, the program hangs (sometimes hangs the browser) until the file has finished uploading.  The program still works in XP so is this a known issue with Windows 7?  I haven't found any other problems with this online anywhere.
    Thanks

    Thanks for your response.  It isn't Adobe Flash that is the problem, I think that it is the way the flash program is interpreted in IE/Firefox on Windows 7.  The line of code I use to update the progress bar is progressBar.setProgress(event.bytesLoaded, event.bytesTotal); (after I have set a progress handler)  Like I said, the same flash application runs great on Internet Explorer/Firefox on XP but not on Windows 7 and my flash player is up to date.  Also, on Win7 you can't run IE in compatibility mode either...
    Thanks for you time.

  • My ipad was frozen everything while im in progress to update in latest version

    everything is frozen

    IF THE ABOVE DOESN'T WORK, FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • Progress indicator for installing missing SCCM 2012 R2 updates

    Hi Everyone!  I've put together a simple powershell script to install missing SCCM updates and it works well but doesn't output anything to the console when its running.
    How could I include a write-progress indicator during the While loop is running?
    I'm thinking I could insert Write-Progress for the While (($CMInstallPendingUpdates.Count -ne 0) but I'm just not too familiar with the syntax required.  -Thanks!
    # Get the number of missing updates
    [System.Management.ManagementObject[]] $CMMissingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE ComplianceState = '0'" -namespace "ROOT\ccm\ClientSDK") #End Get update count.
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    #Install missing updates.
    If ($CMMissingUpdates.count) {
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    $CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
    Do {
    Start-Sleep -Seconds 15
    [array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
    #Not 100% sure $result.UpdateCountBefore is needed below.
    $result.UpdateCountBefore = "The number of pending updates for installation is: $($CMInstallPendingUpdates.count)"
    } While (($CMInstallPendingUpdates.count -ne 0) -and ((New-TimeSpan -Start $StartTime -End $(Get-Date)) -lt "00:45:00"))
    } ELSE {
    $result.UpdateCountAfter = "There are no missing updates."}

    # Get the number of missing updates
    [System.Management.ManagementObject[]] $CMMissingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE ComplianceState = '0'" -namespace "ROOT\ccm\ClientSDK") #End Get update count.
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    #Install missing updates.
    If ($CMMissingUpdates.count) {
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    $CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
    $Increment = 100 / $CMInstallMissingUpdate.Count $Percent = 0 Do {
    Start-Sleep -Seconds 15
    [array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
    #Not 100% sure $result.UpdateCountBefore is needed below.
    $result.UpdateCountBefore = "The number of pending updates for installation is: $($CMInstallPendingUpdates.count)"       Write-Progress -Activity "Installing updates" -PercentComplete $Percent -Status "Working ..."
    $Percent = $Percent + $Increment
    } While (($CMInstallPendingUpdates.count -ne 0) -and ((New-TimeSpan -Start $StartTime -End $(Get-Date)) -lt "00:45:00")) Write-Progress -Activity "Updates installed" -Status "Done" -Completed} ELSE {
    $result.UpdateCountAfter = "There are no missing updates."}

  • Write-Progress in PowerShell script for installing Missing Updates

    Hi, I had a previous question here
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/88931488-3b2c-4c08-9ad3-6651ba9bbcef/action?threadDisplayName=progress-indicator-for-installing-missing-sccm-2012-r2-updates
    But that method is not working as expected.  The progress bar displays then continues to increment past 100 throwing an error each time.
    I'm thinking I could use a foreach loop for the missing updates but I'm just lost when it comes to Powershell syntax.
    For example:
    # Get the number of missing updates
    [System.Management.ManagementObject[]] $CMMissingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE ComplianceState = '0'" -namespace "ROOT\ccm\ClientSDK") #End Get update count.
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    #Install missing updates.
    #Begin example code, not tested.
    Foreach ($update in $CMMissingUpdates)
    $i++
    If ($CMMissingUpdates.count) {
    $CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
    Do {
    Start-Sleep -Seconds 15
    [array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
    #end my example code.
    #The code below is working to install updates but Write-Progress isn't.
    If ($CMMissingUpdates.count) {
    #$result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    $CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
    #Set the missing updates to variable for progress indicator.
    $updates = $CMMissingUpdates.Count
    $Increment = 100 / $updates
    $Percent = 0
    Do {
    Start-Sleep -Seconds 15
    [array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
    #Not 100% sure $result.UpdateCountBefore is needed below.
    $result.UpdateCountBefore = "The number of pending updates for installation is: $($CMInstallPendingUpdates.count)"
    Write-Progress -Activity "Updates are installing..." -PercentComplete $Percent -Status "Working..."
    $Percent = $Percent + $Increment
    } While (($CMInstallPendingUpdates.count -ne 0) -and ((New-TimeSpan -Start $StartTime -End $(Get-Date)) -lt "00:45:00"))
    Write-Progress -Activity "Updates Installed" -Status "Done" -Completed
    } ELSE {
    $result.UpdateCountAfter = "There are no missing updates."}
    $result

    The increment should be 100  / (max number of items)
    That will not exceed 100 through (max number of items ) iterations in a loop
    Mathematically that can be written as 
    100 / (Max Number of items) * (max number of items ) iterations in a loop
    = 100 * ( (Max Number of Item) / (Number Iterations in a loop) )
    = 100 * 1 = 100
    The (max number of items) and (Number of Iterations in a loop ) need to be based on the same number.
    In the script, it is not based on the same number.
    The maximum number of items is $CMMissingUpdates.Count
    The number of iterations in the loop  is based on the condition 
    ($CMInstallPendingUpdates.count -ne 0)
    Which causes the iterations of the loop to exceed $CMMissingUpdates.Count
    Assuming the $CMInstallPendingUpdates.count is going down (is decremented) through the loop, then
    $Increment = 100 /
    $CMInstallPendingUpdates.count

  • Update PS CC stalling at "99% complete"

    After trying to update PS CC, the computer is stalling at "99% complete" with the message "Update Progress - Currently Updating Adobe CSXS Infrastructure 4..."
    My system is Windows 7
    Soren

    Hmm, if you're getting windows updates OK then that is a positive sign as far as the wireless connection being able to download farily large files and not just smaller ones.
    Have you tried a different browser? For example if it stalls in IE, it might download 100% using Firefox or Safari.
    A third option is asking a friend who has the current itunes, to put the setup file on a USB stick.
    You said the download freezes. No error message at all, then?
    It still could be  a router issue. For instance, netgear WNDR3300 model routers had this update
    http://support.netgear.com/app/answers/detail/a_id/12689
    The release notes state "3. Fixed download failure with certain some ISPs", so it could be something obscure like that.

  • Updating to 10.5.1

    Hi,
    I upgraded to Leopard about 2 months ago now, and Software Update tells me there is an update to Leopard 10.5.1, and that it requires a restart. I download the update, and it appears blue screen with the dialogue box in them middle that shows the progress of updating the computer, but nothing happens. It says 'Configuring Installation' for ages, so in the end I force restart the computer by holding down the power button.
    How can I solve this?
    Thanks.

    At this point an Archive&Install or Erase&Install are your best options. Interrupting an update, particularly one that installs system software, can be deadly.

  • HT4623 Problems Updating My iOS!

    I've just sync'ed my Iphone 4 and it said that newer versions of Itunes / QuickTime were available.  I updated these.
    When my phone was connected it the itunes told me a newer version of iOS 6.0.1 was available for my phone did i want to download and install.
    I ok'd it and itunes backed up my phone and then downloaded the iOS.  My phone was then in recovery mode - itunes wanted me to restore my phone so it would work with itunes.  When I look at the progress of update and restore it completes but my phone is left in recovery mode and I can not get it out of this state which means I can not reinstall my backed up data and essentially I'm left with a VERY EXPENSIVE paperweight!
    The phone was purchased originally from Apple factory setting unlocked.
    Any assistance gratefully recieved

    What model iPad and what iOS are you currently running?
    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.1. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
     Cheers, Tom

  • Error occured in Updater core in DownloadUpdates

    Running Windows 7 SP1 64-bit on my PC:
    Creative Cloud says I have 7 updates. I've tried each one and I get "update failed"  with error code 49. The last few lines of DLM_Native.log are:
    12/17/14 23:57:06:782 | [WARN] |  |  |  |  | UCErrorHandling |  | 48600 | Error occured in Updater core in DownloadUpdates
    12/17/14 23:57:06:782 | [ERROR] |  |  |  |  | DLMNative |  | 48600 | UpdaterCoreHelper::StartUpdateOpCallback : handleError : 43
    12/17/14 23:57:06:782 | [ERROR] |  |  |  |  | DLMNative |  | 48600 | Download Updates Returned Error
    12/17/14 23:57:06:782 | [ERROR] |  |  |  |  | DLMNative |  | 48600 | Progress:: Download Updates API Failed
    12/17/14 23:57:06:782 | [ERROR] | {E4DB7134-F46A-45EB-9D06-B30DB9C95665} |  |  |  | DLMNative |  | 48600 | download updates returned statusCode:43, errorCode:49
    12/17/14 23:57:39:599 | [WARN] |  |  |  |  | UCErrorHandling |  | 45428 | Error occured in Updater core in DownloadUpdates
    12/17/14 23:57:39:599 | [ERROR] |  |  |  |  | DLMNative |  | 45428 | UpdaterCoreHelper::StartUpdateOpCallback : handleError : 43
    12/17/14 23:57:39:599 | [ERROR] |  |  |  |  | DLMNative |  | 45428 | Download Updates Returned Error
    12/17/14 23:57:39:599 | [ERROR] |  |  |  |  | DLMNative |  | 45428 | Progress:: Download Updates API Failed
    12/17/14 23:57:39:599 | [ERROR] | {629F9911-BBE2-432F-B35A-04F8B2DF0665} |  |  |  | DLMNative |  | 45428 | download updates returned statusCode:43, errorCode:49
    Any Ideas?
    Thanks,
    Milt

    Hi There,
    Kindly try the following solutions:
    1. Try to rename folder 1.0 to ~1.0
    Mac: ~/library/Application Support/Adobe/AAMUpdater/
    Win: C:\Users\[Username]\AppData\Local\Adobe\AAMUpdater
    -Initiate the installation.
    2. Try to download and install the update manually:
    All Adobe CC 2014 Updates: The Direct Download Links for Mac OS | ProDesignTools
    Adobe CC 2014 Direct Download Links: Creative Cloud 2014 Release | ProDesignTools
    3. Try to create new Admin user account and try to update and share the results.
    Thanks,
    Atul Saini

  • Help with updating jprogressbar

    Hi,
    I'm currently trying to create a JProgressBar which tracks the progress of a function. Basically, I know that I need to use threads to update the progress bar, but I have never used threads in Java. Can someone just give me a basic example of how I can make it work, so the progress bar updates?
    Thanks, currently I have a start button, that calls a method called startChecking to start the calculation.

    http://java.sun.com/docs/books/tutorial/uiswing/components/example-1dot4/index.html#ProgressBarDemo

  • Update 710219 stalled

    updated 710219 stalled in the progress of updating
     -  update device software screen says "during these steps, do not disconnect your device or interupt this process as it could make your device unusable"
    well my connection is been stalled at
    - module"net_rim_bbid_daemon.cod" since last night at 10pm it is now 9am the next day
    have to get to work or does rim remeburse for lost wages?
    does rim purchase a new phone?
    what do i do now?

    Hey dennisfm,
    Welcome to the BlackBerry Support Community Forums.
    I can definitely help you out.
    Since the update is frozen, you will need to perform the update via force detection.  Follow the steps in this KB article: www.blackberry.com/btsc/KB10144
    Let me know if you have any more questions.
    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)!

Maybe you are looking for

  • How can I Remove Firefox Hello in a high-security environment?

    Hi, After a recent Firefox update in a test environment for a high-security environment (I'm not at liberty to disclose the nature of this environment, sorry. Let's just say we have to disable Firefox from contacting Mozilla's servers and further dis

  • Goods Receipts & Issues without any financial impact - (No accounting Docs)

    Hi Experts, We have this new scenario to manage some goods which we do not own or manufacture in any of our plants, but only store them in our warehouse for another Company and release them upon a shipment notification from them to one of our common

  • I need information about FICO

    hi friends,          i need over view of FICO.

  • Import Process Server

    Hello, I'm capturing Beta Cam tapes via Black Magic, it creates an AVI file, to a GLYPH hard drive; I'm working off the Glyph.  After a minute of plyaback Adobe Premiere CS4 crashes and explains that there is an Import Process Server crash.  This onl

  • T440p wifi slow reconnect after sleep

    Hi, I have a T440p with the intel 7260AC wifi card. I recently upgraded my HDD to an SSD and did a clean windows 7 install. Now, when waking up from sleep, it alwas takes about a min before it reconnects to a wifi network. The reconnect used to be in