IMPDP shows no progress

HI, im using oracle 10g on RHEL4,
Im importing a schema, through IMPDP ,
bt it is stalled at
Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
Processing object type SCHEMA_EXPORT/ROLE_GRANT
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
Processing object type SCHEMA_EXPORT/SYNONYM/SYNONYM
Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
Processing object type SCHEMA_EXPORT/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
it is not showing any progress, even dba_datapump_jobs shows the jobs is executing,
also sum(bytes)/1024/1024/1024 also not showing any progress.
anyone can help?

Pl see MOS Doc 286496.1 (Export/Import DataPump Parameter TRACE - How to Diagnose Oracle Data Pump) on hot to trace expdp/impdp
HTH
Srini

Similar Messages

  • Attempted to mail an email with a large attachment file.  One of the addresses was bad.  When my Outlook is running, the Mac tries to send it and shows the progress.  However, when I look in my Outbox the files are not there.  It does show up in the Outb

    attempted to mail an email with a large attachment file.  One of the addresses was bad.  When my Outlook is running, the Mac tries to send it and shows the progress.  However, when I look in my Outbox the files are not there.  It does show up in the Outbox progress section but I can not delete it when it is there.
    Where do these files reside?
    Is there a hidden Outbox??
    MacBook Pro, Mac OS X (10.7.1)

    If you think getting your web pages to appear OK in all the major browsers is tricky then dealing with email clients is way worse. There are so many of them.
    If you want to bulk email yourself, there are apps for it and their templates will work in most cases...
    http://www.iwebformusicians.com/Website-Email-Marketing/EBlast.html
    This one will create the form, database and send out the emails...
    http://www.iwebformusicians.com/Website-Email-Marketing/MailShoot.html
    The alternative is to use a marketing service if your business can justify the cost. Their templates are tested in all the common email clients...
    http://www.iwebformusicians.com/Website-Email-Marketing/Email-Marketing-Service. html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • Tools sync now doesn't show any progress bar???

    I have created sync module for firefox.
    But when i click on : Tools > sync now
    Why it doesn't show any progress bar???
    Firexfox team should look into this matter.
    I love firefox.
    Best Regards,
    Jason Malaysia

    Yup Okay..
    But i'm now wondering, if it run background:-
    Where does it update sync to?
    Is it into my firefox account?
    Where i can see my backup bookmarks?
    Best Regards,
    Jason Malaysia

  • Can the video player for FlashDVD be configured to show download progress?

    The video I'm using for a FlashDVD is about 1GB in f4v format, so it takes awhile to fully download. It's choppy until it's fully downloaded. It would be nice if the video player used for FlashDVDs showed the progress of the background dowloading of the video, the same way that all other video players do.
    Is this configurable, or is it showing, but the colors are so subtle that I can't see it?
    Can this be configured so I can see a clear progress for the download?

    I'm guessing, but my guess is "no." I am assuming it is not present currently.
    Configuring the progress bar ends up with code in the swf. It COULD be made configurable by putting variables for the code in the theme.xml, but it is not.

  • XML not showing load progress...

    I have a fla file that loads a slide show from an XML file. The xml file contains info about each slide. There's over a 100 slides so the loading takes some time. However I'm not getting actual load progress. It traces nothing until after the load is complete and then it shows the progress that it should have traced one by one, however it traced them all at once on the complete. Because it's not firing the onProgress correctly my preloader is rendered useless. Am I doing something wrong on is this a bug in Flash?
    //======================================================================================== =================================================
    //     load xml
    //======================================================================================== =================================================
    var xmlLoader:URLLoader = new URLLoader();
    var xmlData:XML = new XML();
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    xmlLoader.addEventListener(ProgressEvent.PROGRESS, LoadingXML);
    function LoadXML(e:Event):void {
    trace("complete");
    xmlData = new XML(e.target.data);
    ParseSlides(xmlData);
    xmlLoader.removeEventListener( ProgressEvent.PROGRESS, LoadXML);
    xmlLoader.removeEventListener( Event.COMPLETE, LoadingXML);
    MovieClip(root).loading_mc.x = 1500;
    MovieClip(root).loading_mc.bar.width = 1;
    MovieClip(root).loading_mc.loading_txt.text = "";
    function LoadingXML(e:ProgressEvent):void {
    //trace("Loading..." + Math.ceil(e.bytesLoaded * 100 / e.bytesTotal) + "%");
    var loaded:Number = e.target.bytesLoaded;
    var total:Number = e.target.bytesTotal;
    var pct:Number = loaded / total;
    trace(pct);
    MovieClip(root).loading_mc.x = 500;
    MovieClip(root).loading_mc.bar.width = pct * 194;
    MovieClip(root).loading_mc.loading_txt.text = "Loading XML... " + (Math.round(pct * 100)) + "%";
    xmlLoader.load(new URLRequest("XML/SectionII.xml"));
    HERE IS THE OUTPUT: All at once when the complete fires
    0.149821570227718
    0.299643140455436
    0.44946471068315397
    0.599286280910872
    0.74910785113859
    0.8989294213663079
    1
    complete

    Actually it still doesn't work like I need it to. The loading of the xml preloader only works if the temporary internet files are gone. Which means that the time I need the loader is during the parsing of the xml process. I have a function that creates an object for each slide after the xml loads. It runs through a for loop, however the loader won't appear and work during the for loop. It only works after its finished.
    function ParseSlides(slideInput:XML):void {
    // create a list of slide items
    var slideList:XMLList = slideInput.Slide;
    var slideSize:Number = slideList.length();
    var buildPct:Number;
    // run through list to build each slide object
    for (var i:Number = 0; i < slideList.length(); i++) {
      // get progress of building slides
      buildPct = Math.ceil(i / slideSize);
      MovieClip(root).loading_mc.bar.width = buildPct * loadBarWidth;
      MovieClip(root).loading_mc.loading_txt.text = "Building Slides... " + (Math.round(buildPct * 100)) + "%";
      // build slide id and name
      var idElement:XML = slideInput.Slide.attribute("ID")[i];
      var headerElement:XML = slideInput.Slide.header.copy[i];
      var headerAnimationElement:XML = slideInput.Slide.header.animation[i];
      var headerStartXElement:XML = slideInput.Slide.header.startx[i];
      var headerStartYElement:XML = slideInput.Slide.header.starty[i];
      var headerFinishXElement:XML = slideInput.Slide.header.finishx[i];
      var headerFinishYElement:XML = slideInput.Slide.header.finishy[i];
      var headerStartAlphaElement:XML = slideInput.Slide.header.startAlpha[i];
      var headerFinishAlphaElement:XML = slideInput.Slide.header.finishAlpha[i];
      var headerDelayElement:XML = slideInput.Slide.header.delay[i];
      var headerSecondsElement:XML = slideInput.Slide.header.seconds[i];
      var subheaderElement:XML = slideInput.Slide.subheader.copy[i];
      var subheaderAnimationElement:XML = slideInput.Slide.subheader.animation[i];
      var subheaderStartXElement:XML = slideInput.Slide.subheader.startx[i];
      var subheaderStartYElement:XML = slideInput.Slide.subheader.starty[i];
      var subheaderFinishXElement:XML = slideInput.Slide.subheader.finishx[i];
      var subheaderFinishYElement:XML = slideInput.Slide.subheader.finishy[i];
      var subheaderStartAlphaElement:XML = slideInput.Slide.subheader.startAlpha[i];
      var subheaderFinishAlphaElement:XML = slideInput.Slide.subheader.finishAlpha[i];
      var subheaderDelayElement:XML = slideInput.Slide.subheader.delay[i];
      var subheaderSecondsElement:XML = slideInput.Slide.subheader.seconds[i];
      var audioElement:XML = slideInput.Slide.audio[i];
      var videoElement:XML = slideInput.Slide.video[i];
      // create new slide object
      slide[idElement] = new Object();
      slide[idElement].name = idElement;
      // set header information
      slide[idElement].header = headerElement;
      slide[idElement].headerAnimation = headerAnimationElement;
      slide[idElement].headerStartX = headerStartXElement;
      slide[idElement].headerStartY = headerStartYElement;
      slide[idElement].headerFinishX = headerFinishXElement;
      slide[idElement].headerFinishY = headerFinishYElement;
      slide[idElement].headerStartAlpha = headerStartAlphaElement;
      slide[idElement].headerFinishAlpha = headerFinishAlphaElement;
      slide[idElement].headerDelay = headerDelayElement;
      slide[idElement].headerSeconds = headerSecondsElement;
      slide[idElement].subheader = subheaderElement;
      slide[idElement].subheaderAnimation = subheaderAnimationElement;
      slide[idElement].subheaderStartX = subheaderStartXElement;
      slide[idElement].subheaderStartY = subheaderStartYElement;
      slide[idElement].subheaderFinishX = subheaderFinishXElement;
      slide[idElement].subheaderFinishY = subheaderFinishYElement;
      slide[idElement].subheaderStartAlpha = subheaderStartAlphaElement;
      slide[idElement].subheaderFinishAlpha = subheaderFinishAlphaElement;
      slide[idElement].subheaderDelay = subheaderDelayElement;
      slide[idElement].subheaderSeconds = subheaderSecondsElement;
      // set the audio in the slide
      slide[idElement].audio = audioElement;
      // set the video in the slide
      slide[idElement].video = videoElement;
      // push new slide to the array of slide names
      slidesArray.push(slide[idElement].name);
    //MovieClip(root).loading_mc.x = 1500;
    //MovieClip(root).loading_mc.bar.width = 1;
    //MovieClip(root).loading_mc.loading_txt.text = "";
    // start slide
    buildSlide();

  • Syncing problem - showing only progress bar

    The syncing keeps showing the progress bar but not actually showing whats moving onto the iphone, like the song, video, etc. I believe it isnt doing anything because it takes forever 4+ hrs and i've only selected about 200mp3 and 500jpegs.
    How can I find out the problem here?

    Carolyn Samit wrote:
    Login to another user account on your Mac. Try Safari there. If you see the same thing there then log back onto your admin account, launch Disk Utility (Applications/Utilities). Select MacintoshHD in the panel on the left then select the FirstAid tab. Click: Verify Disk.
    Haven't done the (obvious) first step yet, DU reports all is well.
    Also, check Safari / Preferences - Extensions. If you have any installed, turn that OFF. Quit Safari, then relaunch Safari to see if it makes a difference.
    No such item in Safari Preferences (v 4.1.3)
    You may not have a third party toolbar add on but follow the instructions here just in case there's a Safari third party plugin installed.
    No toolbars, but several plugins in the internet plugins folders, one in the User/Library, the rest in the system Library. I'm suspecting one of the recent ones, & will try to get to checking it tonight.
    Make sure there's enough free space on the startup disk. Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure you always have a minimum of 15% free disk space.
    Another probable cause, all right. I'm struggling to get the seemed-big-at-the-time 60GB drive back up to 10% . Ah well, must press on with that quest, I guess.
    Several good leads here. Will post again after checking them out.
    Thanks,
    Barry

  • Hello, my name is Todd, I recently dowloaded PS CC 2014. I have used PS for decades. The crop tool will show the progress bar, then at about 25% it will totally stop. What can I do? Thanks

    Hello, my name is Todd, I recently dowloaded PS CC 2014. I have used PS for decades. The crop tool will show the progress bar, then at about 25% it will totally stop, even on VERY small 72dpi images. What can I do? Thanks!

    Double check all the settings in the crop tool, and make sure you aren't telling it to create a HUGE image as a result of your settings.

  • Trying to show a progress bar...

    Helloo!
    I'm having trouble getting my progress bar to update. I post the new control values, but it doesn't get a chance to redraw until either the End, or if I hit a breakpoint using ExtendScript Toolkit.
    It DOES correctly disappear (close) at the end.
    I'm setting a bunch of keyframes in a big loop. Takes a little time, nice to show the progress.
    Oh, I'll show the code too. It's longish, sorry. Thanks for any advices!
    b Caller
    > var pb = progressBar("Setting " + notes.length + " Keyframes");
    for(var i = 0; i < notes.length; i++)
    pb.setValue(i / notes.length);
    tp.setValueAtTime(note.time,note.text);
    pb.close();
    b Progress Bar Handy Object
    >/*
    Easy to use progress bar for ExtendScript.
    Written by [email protected], 2007
    Enjoy, but this credit must remain intact.
    >usage:
    > var pb = progressBar("main title","subtitle");
    pb.setValue(valueFrom0to1);
    pb.setTitle2("new subtitle display!")
    if(pb.isCanceled())
    pb.close(); // they clicked cancel
    function progressBar(title1,title2)
    var result = new Object();
    result.running = true;
    result.p = new Window("palette");
    result.p.orientation = "column";
    result.p.alignChildren = "left";
    > result.t1 = result.p.add("statictext",undefined,title1);
    result.t2 = result.p.add("statictext",undefined,title2);
    result.b = result.p.add("progressbar");
    > result.c = result.p.add("button",undefined,"Cancel");
    result.c.onClick = function() {
    result.running = false;
    > result.isRunning = function() { return this.running; }
    result.isCanceled = function() { return !this.isRunning(); }
    result.setValue = function(x) { this.b.value = x * 100; }
    result.setTitle1 = function(t1) { this.t1.text = t1; }
    result.setTitle2 = function(t2) { this.t2.text = t2; }
    result.close = function() { this.p.close(); }
    > result.p.show();
    return result;

    As usual, thanks, that worked perfectly Jeff!
    (I've gotten a midi-file parser working in ExtendScript, will post soon. Fun fact: adding a keyframe in AE is approximately very much slower than adding a point to a path in Illustrator. Illustrator is fast fast fast.)

  • How to show webgui progress indicator in Webgui while executing report

    ITS 6.2 patch 18
    I am calling r/3 report as a new window from template base html page. Mission is to show webgui progress indicator instead of hour glass. The report takes 3 minutes to the result. Shortly before showing result page,the webgui progress indicator appears at the center of the page. I tried abap function SAPGUI_PROGRESS_INDICATOR to r/3 report.However, it did not work.
    If anyone konws how to do it, let me know.
    I am using below function to call r/3 report.
    <script language="JavaScript">
      function new_win(){
    var w_address, wp  ;
    w_address    = "http://`HTTP_HOST`/scripts/wgate/webgui/!?transaction=ZZZZ&~OkCode=EXEC&PA0001-ORGEH=" + "`PA0001-ORGEH`" + "&PCHDY-DEPTH="  + "`PCHDY-DEPTH`" ; ;
    w_address    = w_address    +  "&client=`write(client)`&language=`write(language)`"  ;
        win_prop = "left=0, top=0, height=600, width=800, status=no, menubar=no, resizable=yes,  fullsize=yes, channelmode=no, scrollbars=yes";
    alert(w_address);
    wp = window.open(w_address,'',win_prop);
    wp.location.href = w_address;
    alert(w_address);
    if (window.focus) {
          wp.focus()
         return false;  
    </SCRIPT>

    Hi Klaus,
    I appreciate your quick response.
    Okay ! Let me give up webgui progress indicator.
    Another question is how to grab webguiform input field data.
    I got other issues.
    As you see source code, I pass parameter like PA0001-ORGEH=`PA0001-ORGEH` to the javascript function for a popup window .
    When I use this `SAP_InputField("PA0001-ORGEH")` clause at template script, I cannot grab data properly before hitting enter. I guess the reason is in webgui's dynamic webpage generation. Is it right ?
    When I use html code <input type="text">, there is no problem in passing parameter. When I use search help function with <input> code,  other field's data is changed into default value.
    If someone knows the way to grab input field data from DOM, let me know. I tried document.webguiform.element[0].value, it did not work.
    It seems there are tons of limits in webgui function.

  • How to show the progress bar on forms?

    Hello ALL,
    How should we show the progress bar in our forms screen so we can see how much work is remaining?
    For example if we are performing some task through forms, what code and on which trigger we placed this code in order to show the progress bar that inform us about the task in progress.
    Thanks
    malan

    Hi,
    Shouldn't the oracle forms' support the progress
    bar?
    I prefer to have a code which shows progress bar on
    forms.
    Can some one have this code ?
    ThanksPJC progress bars are shown on the form and forms support progress bar and coding itit's relatively easy.
    If I were you I would take Francois' advice and type in "progress bar" in the lil search box :)
    It's a wonder what a lil search can show you
    Tony

  • My ipad is in recovery mode that failed,it shows the progress bar but is frozen. Itunes shows the wrong name for the Ipad but the correct account.

    my ipad is in recovery mode that failed,it shows the progress bar but is frozen. Itunes shows the wrong name for the Ipad but the correct account.

    You're gonna have to restore the iPhone from your last backup with iTunes. You did do a backup before you attempted to update the software didn't you?

  • My ipad has stopped updating apps. It doesn't even ask for password, it just oges to the apps screen showing empty progress bars. I've re-synced account and restarted but with no luck. Other than deleting the apps is there anyway around this?

    My ipad has stopped updating apps. It doesn't even ask for password, it just oges to the apps screen showing empty progress bars. I've re-synced account and restarted but with no luck. Other than deleting the apps is there anyway around this?

    OK. I will work backwards.
    You certainly don't want to have to delete apps every time that they need an update, for any number of reasons. Losing data first and foremost would be a drag, but the overall hassle would be absurd. All things being equal, you should be able to update apps in the future after you delete them and reinstall them. I delete and reinstall apps all the time and I am also able to update them when updates are available for the apps. I just wanted to know if you had any success in any fashion installing apps.
    Resyncing/refreshing the Apple ID/iTunes account wouldn't seem to be the issue either if you can download apps or other content from the iStores. Your ID is being accepted.
    That leaves us with I'm not sure what. But I think I would try this trick fix and see if it helps.
    Go to Settings>General>Date and Time>Set Automatically>Off. Set the date one year ahead. Try to update the apps again. If you get an error message, go back to the settings. Correct the date and time (set automatically) then go back and try to update the apps again.

  • IOS (iPads) always show "in progress" when enrolling

    Set up Server 3 on a Mac Mini. Profile Manager enrolls OSX (Macbook) with no problem. iOS (iPads), on the other hand, always show "in progress" when enrolling. Any suggestions on what could be causing this?

    Same issue here, profile manager is working fine for iphone and macbook, but any tasks sent to the iPad Air just sit there "in progress" forever...
    The enrolment is still "in progress" but the device appears in the list, doing an update info or trying to send settings to it (which is also triggered with the enrolment) also sits "in progress" and the settings never arrive.
    It can't be a firewall issue, as the iphones are working just fine, in the same environment, i'm stuck...

  • Macbook Pro seems to be bricked by ML install. Upon restart it shows a progress bar which makes it to about 15%, and then the machine simply shuts off. Help?

    Title pretty much says it all. Install seemed to be going fine, then upon restart it hit a gray screen with a progress bar for about 30 seconds. Once the progress bar makes it to about 15% the machine simply shut off. I tried turning the machine on again a few times, but each time I had the same issue. I then tried running the 10.8 recovery disk, but it just showed the gray spinning wheel for about 6 hours. Any ideas?

    Something similar issue with me too. Intallation went fine. Then it started updating java once reboot it got stuck on grey screen. It wont boot at all. That spinning wheel keeps on going forever. :(

  • How do you download a static file using a FileReference and URLRequest and show the progress?

    All,
       I'm trying to download static content (PDFs) off of my server using tutorials from adobe's site and some online as well and i'm having no luck showing an updated progress bar.  I attached the meat of my code below.  If a user clicks a hyperlink, it calls the downloadPDF method passing in a constant url defined.
      When debugging, i can see that the event.bytesLoaded is incrementing on each call to the progress method, however the bytesTotal is only set to the intitial number of bytes transferred on the first pass through the method.  (Ex:  First time the method is called, bytesLoaded and bytesTotal will be 4,000... which i dont understand... the bytesTotal should be the total size of the file being downloaded.. definitely not the case...  the next time the method is called, bytesLoaded will increases to some number while bytesTotal will remain at 4,000).  This happens during the entire file transfer.
    Am i missing something? Are the examples incorrect?  Also to note, i'm using sdk 3.2 (Not sure if that makes a difference.)
    Thanks for any response or insight.
    Damian
    <mx:Script>
            <![CDATA[
                import com.ctc.fema.resources.Buttons;
                import flash.net.FileReference;
                private var fileRef:FileReference;
                private var urlReq:URLRequest;
                 * Constant values for user manual pdfs
                private static const PDF_STRING:String = "blahblahblah.pdf";
                private function init():void
                    /* Define file reference object and add a bunch of event listeners. */
                    fileRef = new FileReference();
                    fileRef.addEventListener(Event.COMPLETE, completeHandler);
                    fileRef.addEventListener(Event.OPEN, openHandler);
                    fileRef.addEventListener(ProgressEvent.PROGRESS, progressHandler);
                private function doEvent(evt:Event):void
                    /* Create shortcut to the FileReference object. */
                    var fr:FileReference = evt.currentTarget as FileReference;
                    try
                        /* Update the Model. */
                        fileRefModel.creationDate = fr.creationDate;
                        fileRefModel.creator = fr.creator;
                        fileRefModel.modificationDate = fr.modificationDate;
                        fileRefModel.name = fr.name;
                        fileRefModel.size = fr.size;
                        fileRefModel.type = fr.type;
                        /* Display the Text control. */
                    catch (err:*)
                        /* uh oh, an error of sorts. */
                private function downloadPDF(url:String):void
                    /* Begin download. */
                    urlReq = new URLRequest(url);
                    fileRef.download(urlReq);
                 * When the OPEN event has dispatched, change the progress bar's label
                 * and enable the "Cancel" button, which allows the user to abort the
                 * download operation.
                private function openHandler(event:Event):void
                    downloadStatusContainer.visible = true;
                    downloadStatusContainer.includeInLayout = true;
                    downloadProgressBar.label = "DOWNLOADING %3%%";
                    cancelButton.enabled = true;
                 * While the file is downloading, update the progress bar's status.
                private function progressHandler(event:ProgressEvent):void
                    downloadProgressBar.setProgress(event.bytesLoaded, event.bytesTotal);
                 * Once the download has completed, change the progress bar's label one
                 * last time and disable the "Cancel" button since the download is
                 * already completed.
                private function completeHandler(event:Event):void
                    downloadStatusContainer.visible = false;
                    downloadStatusContainer.includeInLayout = false;
                    downloadProgressBar.label = "DOWNLOAD COMPLETE";
                    cancelButton.enabled = false;
                 * Cancel the current file download.
                public function cancelDownload():void
                    fileRef.cancel();
                    downloadProgressBar.label = "DOWNLOAD CANCELLED";
                    cancelButton.enabled = false;
                    downloadStatusContainer.visible = false;
                    downloadStatusContainer.includeInLayout = false;
            ]]>
        </mx:Script>

    The tick counter has a resolution of 1 ms.  Resolution, accuracy, and the responsiveness of the OS are three different things.  The issue is that OS latency can be 10s of milliseconds or occasionally longer.  If the OS decides to index the hard drive between the time you read the tick count and send the start audio command, your tone could be quite late. Sending the TTL pulse is a third call to the OS.  So you have two latency times for each trial. Unless you have a real-time operating system, this latency issue will introduce randomness into your data.
    Try sending TTL pulses of 50 ms duration every 200 ms, software timed, for a few minutes and look at the variation in the edge timing.  Then try it again with tones thrown into the mix and see if the variation changes. 
    That is where hardware timing and synchronization pays off. 
    Lynn 

Maybe you are looking for