Script is submitted but hangs in submitted state

Hi,
I have requested a workspace via apex.oracle.com. I uploaded a script, that try to run it, but it remains in submitted state... It does not go to executing or completed state. The workspace was requested last week.
Anyone an idea?
Christophe

Christophe,
Could you provide credentials for the workspace? My guess is that you're on the screen after the job was submitted. I don't believe this page is "refreshed" by AjAx or anything. You have to go back to the listing of scripts and you should see a results column that has a number you can click on.
There you should see the status as complete...
Regards,
Dan
http://danielmcghan.us
http://sourceforge.net/projects/tapigen

Similar Messages

  • Impdp hangs at definig state

    Hi Gurus,
    I am trying to do full import for APPS R12.1.1 db 11202, but it hangs at defining state for more than 72 hrs, v$session_wait and v$session_longops show 100% done for worker. There is no error in alert log. Please help.

    You may have to trace it and see which step is taking longer ... search support site for details on tracing.
    Also i am not very clear on what do you mean by defining? As impdp starts, it checks dumpfiles and internal objects directory contained therein to make sure everything is in place. If your dumpset is large it could take some time but 30 hours is a suspect. Like Srini mentioned, we need to know your impdp command and first 20 lines of log file contents.
    This is better done before you get to tracing.

  • PHP script calling another but staying on same page

    Hi,
    Im thinking of writing an additional PHP page, that has a link to another PHP page, to do an insert. On the current PHP page, I have a counter which I would want incrementing after the 2nd PHP script is called, but don't think its possible?
    I'm saying this as I will need an anchor to another script which when called, will load another PHP script - which will do the insert, but take me away from the current page.
    So basically, I want to stay on the first PHP script showing a counter, click to call another PHP script, but all the user will see is a counter increment.
    Here is what I have thought will not work:
    <code>
    echo "<br><span class=\"style1\"><a href=\"./../Test/count.php\"><img src=\"./Up.JPG\"></a>";
    </code>
    Thanks in advance...

    Hi,
    got a bit further now in that i'm calling the php script through Ajax successfully, but, got the issue where i am getting the same value sent to the script (dataString):
    source script:
    <script type="text/javascript" >
    $(function()
    $(".submit").click(function()
      var likeid = $("#likeid").val();
      var dataString = 'likeid='+ likeid ;
      var locurl = "./../Test/it.php?randval="+Math.random();
      $.ajax({
       type: "POST",
       url: locurl,
       data: dataString,
       success: function()
        $('.success').fadeIn(200).show();
        $('.error').fadeOut(200).hide();
      return false;
    </script>
    target script (it.php)
    <?php if(!$_SESSION) { session_start(); } ?>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <html>
    <head>
    </head>
    <body>
    <?php
    $_SESSION['name']=session_id();
    $sess=session_id();
    $likeid=$_POST['likeid']; <----------------------always the same value
    if($_POST)
      $result2 = mysql_query("INSERT INTO Test (value, sess) VALUES ('$likeid', '$sess')")
      or die(mysql_error());
    ?>
    </body>
    </html>
    what i get is the same value for $likeid on every call from the source script. In the source script i have:
    <form method="post" name="form1">
    <input type="hidden" name="likeid" id="likeid" value="CAR79668"/>
    <a href="#"><img src="./Up.JPG" border="0" class="submit" onclick="change11('CAR79668');"></a>
    <b id="CAR79668" value="2">2</b> </form> </span>
    <form method="post" name="form2">
    <input type="hidden" name="likeid" id="likeid" value="CAR79669"/>
    <a href="#"><img src="./Up.JPG" border="0" class="submit" onclick="change11('CAR79669');"></a>
    <b id="CAR79669" value="2">2</b> </form> </span>
    Why does the same value of CAR79668 get passed to the target script on every call?
    Thanks.

  • After Upgrading to 10.6.8 my aperture app starts but hangs trying to read the Lib. I removed the old lib and start with new. but still have the problem. 10.6.8 also made my Shark FX7 do the same thing. Any Ideas? Thanks

    After Upgrading to 10.6.8 my aperture app starts but hangs trying to read the Lib. I removed the old lib and start with new. but still have the problem. 10.6.8 also made my Shark FX7 do the same thing. Any Ideas? Thanks

    Verifying volume “Macintosh HD”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Macintosh HD appears to be OK.

  • I have previewed my book but after cliking BUY BOOK it compiles it OK but then it always states an error after of during uploading it to the store.  How can I rectify this?

    I have previewed my book but after cliking BUY BOOK it compiles it OK but then it always states an error after of during uploading it to the store.
    How can I rectify this?

    I have previewed my book but after cliking BUY BOOK it compiles it OK but then it always states an error after of during uploading it to the store.
    How can I rectify this?

  • Using tcm to load test scripts into mtm, but action fails.

    Hi,
    I am trying to load test scripts into mtm but action fails saying : "The work item cannot be saved because at least one field contains a value that is not allowed."
    My guess is that this issue is due to the parameters/attributes we give to a test case([testmethod], [description()], etc.). I am unable to find what all parameters/attributes that can be given to a test case.
    Please help me with this issue.
    Regards,
    Payal Prajapati
    Payal Prajapati.

    Hi,
    I use VS 2012.
    One of my test method code is:
    /// <summary>
            /// Test Scenario to validate auto escalation of chat if within some time analyst does not respond to user.
            /// </summary>
            [TestMethod]
            [Description("Validating scenario, Auto-Escalation of chats to other Analyst.")]
    [Priority(2)]
            [TestCategory("Acceptance")]
    public void ValidatingAutoEscalationOfChatsToOtherAnalyst()
                User alice = new User(User1);
                alice.SubmitChatInfo();
                Analyst admin = new Analyst(Analyst_Admin);
                admin.Login();
                Analyst analysttier1 = new Analyst(Analyst_Tier1);
                admin.SelectQueues(Tier1Queue);
                admin.MakeAvailable();
                alice.USendMessage("I have a problem.");
                admin.AnalystWaitForAutoEscalation(25000);
                string Message1 = alice.GetAnalystName();
                analysttier1.Login();
                analysttier1.SelectQueues(Tier1Queue);
                analysttier1.MakeAvailable();
                alice.USendMessage("I have a problem.");
                string Message2 = alice.GetAnalystName();
                analysttier1.ASendMessage("hello, i'm here to help.");
                SprtTestContext.sprtTestContext.WriteLine("Earlier agent was: '" + Message1 + "' and present agent is: '" + Message2 + "'.");
                Assert.AreNotEqual<string>(Message1, Message2, "=> Issue in auto escalation.");
                analysttier1.WrapChatClose(4, "fixed", "comments");     }
    Payal Prajapati.

  • IMovie 9.0.9 won't start but hangs in Mavericks

    I am testing out Mavericks and have installed it without problem (over Snow Leopard boot partition clones) on 2 machines, a 2010 Mac Mini and a 2007 MackbookPro.  I was using iMovie 9.0.4 on both and can still do so since I have kept Snow Leopard boot partitions on both machines.  In Mavericks I updated IMovie 9.0.4. to 9.0.9. from the App Store.  All my iMovie files are on an external drive.
    iMovie 10.0.1 works  OK on both machines (except for transient screen-redraw  glitches when the computers are under high load) and I have transferred all my iMovie 9 projects and Events folders to iMovie 10 libraries and done editing etc. and can share OK.
    BUT iMovie 9.0.9 under Mavericks will not launch but hangs on both machines, the icon bouncing continuously in the dock.  There are no related Console messages and the report file as far as I can understand it just confirms a hang in the iMovie process.  I thought I had solved the problem by deleting the iMovie preference files and restarting - I got iMovie 9.0.9 to launch a couple of times on the laptop (and it appeared to work OK) but now that no longer works and it has never launched on the Mac mini.
    I have tried removing or disabling possibly suspect third-party S/W (SIMBL, Fan Control, Growl, MacFUSE..) but no change.  iMovie 10 has occasionally also hung on launch but always seems to be OK after a 2nd try.
    Its not a major problem*  but I am curious why it is not launching.  Anyone have any experience of this or ideas about what might be going on?
    *I will either stay with Snow Leopard and iMovie 9.0.4 or move to Mavericks and iMovie 10.0.1 as my main OS (I like the new iMovie - it is the first thing that has made me seriously consider moving from Snow Leopard - but I have to keep Snow Leopard as a boot option because I need Rosetta)

    Can you try the "-updateConfig" option of admin.jar?
    java -jar admin.jar ormi://localhost admin Matrox -updateConfigTo my vague memory, the "-restart" option does not necessarily implies reading the config files again.

  • I am having problems launching the standalone version of Lightroom 6 after I have gone through the install and activation process? Lightroom starts to open but "hangs" before any photos in the catalgue are displayed. I have contacted the chat support twic

    I am having problems launching the standalone version of Lightroom 6 after I have gone through the install and activation process? Lightroom starts to open but "hangs" before any photos in the catalgue are displayed. I have contacted the chat support twice but they have not been able to fix the problem.

    I went through the activation process yesterday and shut down my PC when I went to bed last evening. When I got up this morning and turned my PC on and then started Lightrom 6 (I upgraded from version 5) it started to launch but then just hung and became "not responsive". I I then uninstalled and then reinstalled the product today but the same thing happened. What is weird is that when I install from the standalone file I downloaded when I purchased the upgrade it looks like it's downloading the software again over the Internet? I have been having these problems for the last four or five days. I have contacted the chat support folks twice and they were able to get it working but whatever they did did not last as the problem reappeared again once the PC was shut down and then started up again.

  • I have installed LR 6 for windows (win7) and LR will not start but hangs up

    I have installed LR 6 for windows (win7) and LR will not start but hangs up. I have uninstalled the software and re-installed it, Tried to open it as Administrator and it still hangs up with the Adobe banner (the picture) being displayed. Nothing happens. When I click on anything I get the message that Lightroom is not responding. I have asked to have a new catalog created for Lightroom 6............Please help.
    Thank you. Leo

    hbereth,,
    It is Ideal to install Creative Cloud app , if you are using Adobe apps.
    Creative Cloud is nothing but an updated version of Adobe Application manager. Adobe Application Manager is required for different purposes like Activation, Update.process and installation processes.etc
    Adobe application manager must be up to date , that brings to Creative Cloud application which is the updated version .
    No need to Sign in and all , just keep it install, if you are not okay with installing Creative Cloud app. it's okay , you can still have Adobe Application Manager only.

  • Does Adobe Story Free have a Type and template for stageplay format and if so where do I click for it. In the Type button I could only find screenplay, TV script, Two column script, AV script and other, but not for stageplay?

    Does Adobe Story Free have a Type and Template for Stageplay format and if so where do I click for it? In the Type button I could only find, Screenplay, TV script, AV script, Two column script, and other but nothing for Stageplay.

    Does Adobe Story Free have a Type and Template for Stageplay format and if so where do I click for it? In the Type button I could only find, Screenplay, TV script, AV script, Two column script, and other but nothing for Stageplay.

  • I want to change my billing address but it only says states i am not in the states

    I am trying to change my billing address but it keeps says states and i am not in the states. how can i change my address?

    For you to use the US iTunes Store you must have a billing address in the USA. You can change your country but then you will be using the iTunes Store for that country, and not everything will be available.
    To change your country you need to click on Change Country or Region in the Account Information section of iTunes on your computer.

  • TS1440 Following these suggestions, I startup from the Install Disk holding down C. The installation process proceeds as far as "Checking disks..." (part of Select Destination) but hangs up there: the barbershop pole just spins and spins... What do I do n

    Following these suggestions, I startup from the Install Disk holding down C. The installation process proceeds as far as "Checking disks..." (part of Select Destination) but hangs up there: the barbershop pole just spins and spins... What do I do next? This is on an old iBook BTW, 2001 G3, OS X, 10.1.2.

    Likely, but can you try to erase it/format it?
       3. Click the Erase tab.
       4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
       5. Select your Mac OS X volume.
       6. Highlight the drive, select Partition Tab, then Format type... MacOS Extended Journalled, select the Security Options button, choose Zero Out Data, Erase... after completion hopefully you'll be able to get a good install.
    Needs to be Apple Partition Map (APM) partition scheme.

  • Shogun 2 will load but hang there at the black screen even before the producers videos appear.

    Shogun 2 will load but hang there at the black screen even before the producers videos appear. Problem never occur in other games. 
    HP Pavilion P6690d user. 
    Help!

    Qwerter, welcome to the forum.
    I suggest that you download and install any patches for Shogun 2.  This is the first thing that I do when I install a new game.  The developers are under a lot of pressure to get the games released.  So, there are going to be problems that need to be patched.
    Please let us know if this solves your problem or not.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Continue script but hang in a speech

    I'm trying to do a script for a campaign in UCCX 7.0.1_Build168, make calls with 'Place Call' phone numbers extracted from a. 'Xml', and when the call is received the delivery to a 'CSQ' to the receiving agent. While waiting for an agent is free, you hear a voice and if the customer hangs over the voiceover script is cut. Was there any solution to this problem that does not affect reports Historical Reports?
    When I create a campaign "subsystem / Outbound" gets the call to the agent in the Cisco Agent, but does not sound the physical device. How I can do to ring the physical device?
    thanks

  • Uninstall Adobe Shockwave 12.1.1.151 scripts run successfully but doesn't uninstall program

    I am using sccm2012 R2 and trying to deploy package to uninstall Adobe shockwave player 12.1.1.151 using following script
    cmd /c shockwave-test.bat
    pushd "%~dp0"
    msiexec /uninstall sw_lic_full_installer.msi
    If run script manually on command prompt it uninstall Adobe shockwave player but deployment using sccm doesn't work.
    Deployment status - success,
    Message ID: 10008
    program completed with success
    Program and features still have Adobe shockwave player listed there.
    I have also tried msiexec /x using product code as application using windows installer and registry key as detection method but same results
    Here are logs of Execmgr.log file
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value NULL, user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:07 PM
    2480 (0x09B0)
      Processing [{40BF1D3A-8F3D-4088-A1F7-ED85EB5EFF7F}, 0]: OnContentAvailable
    execmgr
    06/11/2014 6:45:11 PM 4664 (0x1238)
    [{40BF1D3A-8F3D-4088-A1F7-ED85EB5EFF7F}]: Content Version 12 is available for advert RET210E2, pkg: AO10022F, program Uninstall shockwave - test.
    execmgr 06/11/2014 6:45:11 PM
    4664 (0x1238)
    An existing MTC token was not supplied, using ExecutionRequest's Id as MTC token and this execution request is the owner of resultant MTC task.
    execmgr 06/11/2014 6:45:11 PM
    4664 (0x1238)
    Request a MTC task for execution request of package AO10022F, program Uninstall shockwave - test with request id: {CBD5312D-CAAB-446C-BB2F-7DB515F6EE79}
    execmgr 06/11/2014 6:45:11 PM
    4664 (0x1238)
    Execution Request for advert RET210E2 package AO10022F program Uninstall shockwave - test state change from WaitingContent to Ready
    execmgr 06/11/2014 6:45:12 PM
    4664 (0x1238)
    MTC task with id {CBD5312D-CAAB-446C-BB2F-7DB515F6EE79}, changed state from 0 to 4
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:12 PM
    4664 (0x1238)
      Processing [{40BF1D3A-8F3D-4088-A1F7-ED85EB5EFF7F}, 0]: RemoveNotification
    execmgr 06/11/2014 6:45:12 PM
    4664 (0x1238)
    MTC signaled SWD execution request with program id: Uninstall shockwave - test, package id: AO10022F for execution.
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Sending ack to MTC for task with id: {CBD5312D-CAAB-446C-BB2F-7DB515F6EE79}
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Executing program cmd /c shockwave-test.bat in Admin context
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Execution Request for advert RET210E2 package AO10022F program Uninstall shockwave - test state change from Ready to NotifyExecution
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Checking content location C:\Windows\ccmcache\1g for use
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Successfully selected content location C:\Windows\ccmcache\1g
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Executing program as a script execmgr
    06/11/2014 6:45:12 PM 1624 (0x0658)
    Found executable file cmd with complete path C:\Windows\system32\cmd.exe
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Successfully prepared command line "C:\Windows\system32\cmd.exe" /c shockwave-test.bat
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Command line = "C:\Windows\system32\cmd.exe" /c shockwave-test.bat, Working Directory = C:\Windows\ccmcache\1g\
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Running "C:\Windows\system32\cmd.exe" /c shockwave-test.bat with 32bitLauncher
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Created Process for the passed command line
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SoftDistProgramStartedEvent
    ClientID = "GUID:d0c3da0e-ff4f-48c2-8612-805a8de31191";
    CommandLine = "\"C:\\Windows\\system32\\cmd.exe\" /c shockwave-test.bat";
    DateTime = "20141107004512.476000+000";
    PackageName = "AO10022F";
    ProcessID = 1264;
    ProgramName = "Uninstall shockwave - test";
    ThreadID = 1624;
    UserContext = "NT AUTHORITY\\SYSTEM";
    WorkingDirectory = "C:\\Windows\\ccmcache\\1g\\";
    execmgr
    06/11/2014 6:45:12 PM 1624 (0x0658)
    Raised Program Started Event for Ad:xx210E2, Package:AO10022F, Program: Uninstall shockwave - test
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value NULL, user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    MTC task with id {CBD5312D-CAAB-446C-BB2F-7DB515F6EE79}, changed state from 4 to 5
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Program exit code 0 execmgr
    06/11/2014 6:45:21 PM 4276 (0x10B4)
    Looking for MIF file to get program status execmgr
    06/11/2014 6:45:21 PM 4276 (0x10B4)
    Thanks in advance for help and suggestions
    RJ
    RJ09

    Thanks for quick reply Daniel
    I tried your suggestion and in log files I found error
     Product: Adobe Shockwave Player 12.1 -- Error 2753.The File 'swhelper_1211151.exe' is not marked for installation.
    Error 2753.The File 'swhelper_1211151.exe' is not marked for installation.
    Property(S): ErrorDialog = SetupError
    MSI (s) (34:D8) [14:08:29:832]: Windows Installer removed the product. Product Name: Adobe Shockwave Player 12.1. Product Version: 12.1.1.151. Product Language: 1033. Manufacturer: Adobe Systems, Inc. Removal success or error status: 1603.
    RJ09

Maybe you are looking for

  • Portlet editor's rich text editor gives javascript error 'access denied'

    I created a header portlet using the Publisher's published content portlet template. When I try to edit the portlet content using the rich text editor in the portlet editor window, I get a javascript error in the status bar stating 'access denied'. I

  • Scaling distorts my objects

    Scaling an object up or down doesnt seem to work anymore. I feel like the effect is random but my points dont scale correctly. there are small distortions in various instances. The distortion is random, I can scale the same object down 20 different t

  • Introscope host adapter

    Hi I am using solution manager 7.1 sp10 While configuring our new server in managed system configuring on step 7 configure automatically I get error at introscope host adater as below: CX_AI_SYSTEM_FAULT : SOAP:1.023 SRT: Processing error in Internet

  • SD and accounting issue

    Hi All I am facing a problem I can easily create a sales order and deliver it. but after the delivery the accounting documents shows 0 cost.earlier it was showing the exact value. also the decrease stock is not shown. can anybody help me wat can be w

  • Keeping iTunes libraries in MacMini together.

    I've got a MacMini with a small hard drive, and I'm running out of space. We have 5 users using this computer. Everyone logs into their own user account and syncs their iDevices to their own copies of iTunes.   I don't want 3 or 4 versions of the sam