Stored subprogram execution status

Hi Friends,
I need a information regarding PL/SQL stored procedure and function.
My query is whenever i am executing a pl/sql procedure or function,how can i get the execution status of that stored procedure or function..that means whether it is already executed or still running.
Is there any data dictionary views provided by oracle or any supplied packages to track this.
Pls help me.....
Thanx and Regadrs
somy

um.. what i am telling you is the similar thing whats been done in my application,
create or replace procedure p_test is
being
--make one table execution_state
--make an entry for procedure p_test = 'BUSY'
-- this should be done at very start when procedure is executed
--if procedure is successfully completed make the state p_test = 'IDLE'
exception
--if there is an exception make state p_test = 'ERROR'
end;
now if you want to check where this procedure
is running just query the table execution_state
for entry p_test if the state is BUSY
i.e. procedure is running,
if its IDLE its successfully completed
like this you can trace it,Message was edited by:
Nicloei W

Similar Messages

  • Stored proc execution status, pls help

    hi,
    i need to know if there is a way to find out whether an sp has been executed successfully or not, with the status code being returned.
    i know about the dbms_output.getline() function but i don't know how to use it!
    pls help
    thank you

    Hi,
    do you mean something like that ?
    SQL> create or replace procedure getData(id in number)
      2  is
      3   status number;
      4  begin
      5   select count(1) into status from emp where empno = id;
      6   if status > 0 then
      7     dbms_output.put_line('Success');
      8   else
      9     dbms_output.put_line('Failed');
    10   end if;
    11  end;
    12  /
    &nbsp
    Procedure created.
    &nbsp
    SQL> set serveroutput on
    SQL> exec getData(1)
    Failed
    &nbsp
    PL/SQL procedure successfully completed.
    &nbsp
    SQL> exec getData(7369)
    Success
    &nbsp
    PL/SQL procedure successfully completed.
    &nbspRgds.

  • Why execution status of stored procedure in shell script is returning same?

    Hi Friends,
    My shell script has below code to execute Pl/Sql procedure.depending on pl/sql procedure status i need to execute the script further.
    i am testing error condition.So i kept exe instead of exec for executing procedure.it suppose to return non zero.But iam not getting the correct status in shell script using $?.
    even for error condition also status is returning zero(0).How to catch execution status of stored procedure in shell script?
    can you please me suggest whats is wrong in below code?
    echo "*************************************************************"
    echo "             cleaning replica tables"
    echo "*************************************************************"
    sqlplus -s migrat/****@dotis01<<ENDOFSQL
    WHENEVER SQLERROR EXIT 1;
    exe PKG_OTU_HELPER.SP_CLEANUPREPLICA;
    Commit;
    exit;
    ENDOFSQL
    status=$?
    echo $status // showing 0 always.
    +if [ $status -ne 0 ]+
    then
    echo "issues in cleaning in replica tables"
    exit;
    fi
    +#Loading of data from flat files to migration tables using sqlldr programs+
    echo "*************************************************************"
    echo "      Loading of data from flat files to migration tables"
    echo "*************************************************************"
    sh /opt/finaclesoftware/UBS_10.4.02_AIX/AIX/DB/CRM/Oracle/OTU/Retail/ControlFiles/LoadData1.com
    Thanks,
    Venkat Vadlamudi

    The whenever sqlerror clause is a sqlplus command. When Oracle (that is, the sql engine of the pl/sql engine) raises and error in a sql statement, the whenever sqlerror command determines what happens.
    Exec is also a sqlplus command, exec <procedure> is shorthand for begin <procedure> end;, that is, it creates an anonymous block.
    Your misspelling of exec as exe is not an Oracle error, it is a sqlplus error. The command never actually gets to Oracle, so there has not been a sqlerror for whenever sqlerror to respons to.
    Consider, I do not have a procedure called p
    SQL> desc p
    ERROR:
    ORA-04043: object p does not existI try to call it with exe as in your code:
    SQL> exe p;
    SP2-0042: unknown command "exe p" - rest of line ignored.Note the error message is form sqlplus (SP2).
    But, if I call it correctly usinf exec:
    SQL> exec p;
    BEGIN p; END;
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00201: identifier 'P' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignorednow I have a sql error, and whenever sqlerror exit 1 would quit sqlplus with a return value of 1.
    John

  • Help! about process chain execution status

    hi:
    we nearly have one problem about the process chain execution status,
    when error occured during  process chian execution, we fixed it in time,
    however, even the error repaired, its status still showed yellow, and this
    stop the subsequent process to excute.
    Any body who can provide some help to solve this problem? thanks in advance
    and looking forward to one reply.

    Hi ,
    Try this method
    Open the messages of a failed step by right clicking on it and selecting 'display messages'.
    In the opened popup click on the tab 'Chain'.
    In a parallel session goto transaction se16 for table rspcprocesslog and display the entries with the following selections:
    1. copy the variant from the popup to the variante of table rspcprocesslog
    2. copy the instance from the popup to the instance of table rspcprocesslog
    3. copy the start date from the popup to the batchdate of table rspcprocesslog
    Press F8 to display the entries of table rspcprocesslog.
    Now open another session and goto transaction se37. Enter RSPC_PROCESS_FINISH as the name of the function module and run the fm in test mode.
    Now copy the entries of table rspcprocesslog to the input parameters of the function module like
    described as follows:
    1. rspcprocesslog-log_id -> i_logid
    2. rspcprocesslog-type -> i_type
    3. rspcprocesslog-variante -> i_variant
    4. rspcprocesslog-instance -> i_instance
    5. enter 'G' for parameter i_state (sets the status to green).
    Now press F8 to run the fm.
    Now the actual process will be set to green and the following process in the chain will be started and the chain can run to the end.
    Regards,
    Ravi

  • A question about ROLLBACK and Unhandled Exceptions in stored subprograms

    Hi,
    Oracle version :   Enterprise Edition Release 11.2.0.1.0 - 64bit
                      OS :   Linux Fedora Core 17 (X86_64)
    At chapter 11 of the online PL/SQL Reference, here is what oracle says about Unhandled Exceptions :
    If a stored subprogram exits with an unhandled exception, PL/SQL does not roll back database changes made by the subprogram.
    I tried the following code:
    code
    HOST clear;
    SET SQLBLANKLINES ON;
    ALTER SESSION SET PLSQL_WARNINGS='ENABLE:ALL';
    DROP TABLE tmptab;
    CREATE TABLE tmptab(n NUMBER);
    CREATE OR REPLACE PACKAGE pkg1_pkg
    AUTHID DEFINER
    AS
        MYEXCEPTION EXCEPTION;
        PRAGMA      EXCEPTION_INIT(MYEXCEPTION, -20001);
    END;
    SHOW ERRORS;
    -- This is a subprogram which exists
    -- with an unhandled exception
    CREATE OR REPLACE PROCEDURE mytestProc
    AUTHID DEFINER
    IS  
    BEGIN
        INSERT INTO tmptab(n) VALUES(100);
        -- So this unhandled exception does a ROLLBACK
        -- which cancels the previous INSERT statement
        RAISE pkg1_pkg.MYEXCEPTION;
    END mytestProc;
    SHOW ERRORS;
    BEGIN
        mytestProc();
    END;
    SELECT * FROM tmptab;
    And here is the output
    BEGIN
    ERROR at line 1:
    ORA-20001:
    ORA-06512: at "TRAINING.MYTESTPROC", line 6
    ORA-06512: at line 2
    no rows selected
    The fact that SELECT * FROM tmptab gives: no rows selected indicates that the unhandled exception in the stored subprogram myTestProc did in fact a ROLLBACK for the INSERT statement into the tmptab table.
    So I don't understand why in the documentation it has been mentioned that no ROLLBACK is not done.
    Could anyone kindly make some clarification on this?
    Thanks in advance,
    Regards,
    Dariyoosh

    Hi,
    If a stored subprogram exits with an unhandled exception, PL/SQL does not roll back database changes made by the subprogram.
    What's going on here is that an anonymous block (which is not stored) exits with an unhandled exception, and that does roll back uncommitted transactions.
    I created a procedure to see how many rows are in tmptab:
    CREATE OR REPLACE PROCEDURE tmptab_cnt (in_txt  IN  VARCHAR2)
    AUTHID DEFINER
    AS
         n    PLS_INTEGER;
    BEGIN
         SELECT  COUNT (*)
         INTO    n
         FROM    tmptab;
        dbms_output.put_line (  n
                             || ' rows in tmptab in '
                             || in_txt
    END  tmptab_cnt;
    and called it from your procedure, and also from your anonymous block:
    CREATE OR REPLACE PROCEDURE mytestProc
    AUTHID DEFINER
    IS  
    BEGIN
        INSERT INTO tmptab(n) VALUES(100);
        tmptab_cnt ('mytestProc');
        RAISE pkg1_pkg.MYEXCEPTION;
    END mytestProc;
    SHOW ERRORS;
    BEGIN
        mytestProc();
    EXCEPTION
      WHEN OTHERS THEN
        tmptab_cnt ('anonymous block');
        RAISE;
    END;
    The output from this is:
    Procedure created.
    No errors.
    1 rows in tmptab in mytestProc
    1 rows in tmptab in anonymous block
    BEGIN
    ERROR at line 1:
    ORA-20001:
    ORA-06512: at line 6
    no rows selected
    As you can see, there was 1 row in the table after the procedure returned to the anonymous block.
    Thanks for posting such a clear and complete test script; that really helps.
    How did you format the code, with the green background and the title?

  • Runtime error and mapping execution status

    We have set maximum no of error parameter to = 50. When our mapping encounters an exception like Unable to extend space on some table space and at the time of encoutnering this exception no of error count is less than 50 - mapping returns success status. With the result that execution pipe continues with the next mapping. Though we would like to keep error count to 50 or higher value - so as not to interrupt the pipe if there is an insertion or updation failure but we would like the mapping to stop when space error or such an exception comes. Please let us know how can we achieve this.

    Borkur,
    I believe that if you look at the execution status in Workflow Monitor, you'll see that Workflow handles and reports status correctly within the top level flow and all subprocesses.
    However, OWB Audit information for subflows is NOT registered as expected, the subflows always appear with status successful to me, even when mappings fail. I'm not sure whether it is a bug or that success actually means that the flow has concluded/finished (as opposed to status busy). I've had difficulty with OWB Workflow language before, as eg. the workflow AND operator has nothing to do with execution status logic, only with sequencing (ie. a wait-for-all-before-continuing-operator). The operator name and icon graphics are counter-intuitive to me.
    Regards, Hans Henrik

  • Why OWB Execution status report showing wrong status  ?

    Hi,
    I created a process flow. It executed successfuly.
    In that process flow I used 4 mappings. and the data is updated in 4 tables. In all the tables data updated successfully.
    But the execution status is showing that , in one table the records inserted are 0.
    I verified in the Runtime Assistant. There it shows correctly.
    Why it is showing like that?
    Any suggestions are welcome.
    Thanks and regards
    Gowtham Sen.

    I've seen this often here. Check the log files on the OWB server and you may see that control center service was force restarted. I have an SR opened with Oracle on this.
    The symptoms I've seen are:
    1. The mapping reports success
    2. Some or all of the levels of the mapping show "*" for the statistics
    3. The mapping completion time shows the mapping start time.

  • Mapping Execution Status

    Hi,
    When we I want to see the mapping execution status, I used to look into the WB_RT_AUDIT and get the mapping name, map run id, start time, end time and status. Here the status field gives the information as COMPLETE/SUCCESS. This is relating to 9.0.4. Recently, when I upgrade to OWB 10g the same view for the status it gives as 1 and even for error also it shows as 1, how to exactly know the mapping execution status is successful or not. Pls mention the table name and column name to know the status
    Kishan

    Ola Koshan,
    When you look at the audit table WB_RT_AUDIT and check the column RTA_STATUS you'll get a number. When you decode the number you will see wether the mapping is completed, running or ended in an error.
    This can be done like this:
    DECODE (rta_status, 0, 'Running', 1, 'Completed', 2, 'Error','Else')
    Please keep in mind that if you kill a mapping, the status will still be 'running'. This is because the process will not be able to update oracle's repository (because you killed it).
    There is quite a lot you can extract from the Audit tables. I do not quite know what you mean with mentioning the table and column name to know the status... As far is I understood you are looking for the mapping status... Right?
    Regards
    Moscowic

  • Software Distribution results in "The exit code is 1, the execution status is FailureNonRetry"

    I am using sccm 2007 to deploy Symantec Edntpoint Protection. The software is installed OK but the execmgr.log shows "The exit code is 1, the execution status is FailureNonRetry" and registry entry for the package shows failure code 1 and status as failure. However, the application runs properly without any problem.
    I recall that someone posted that if you let the system to reboot after installation, the installation would be logged as successful. However, I tried both "Software restarts computer" and "ConfigMgr restarts computer", but both configuration settings did not re-start the computer and I still get exit code 1.
    Any suggestions?
    I am also wondering if there is anyway to prompt the user for a manual reboot of the system after the installation.
    Thanks.
    Stephen

      Hi Stephen,
    the configmgr client reports the exit code which was returned by your package installation. For example if an install package returns an exit code 1, it will be reported as error, if it returns exit code 0, it will be reported as success - whether or not the package "really" installed successful or failed.
    The setting "Program restarts computer" will not reboot your client but assumes that the package you created automatically reboots the client after installation.
    My suggestion is to verify/modify that your software package returns exit code 0.
    This post may help you as it details how to deploy Symantec Endpoint Protection as an msi (not setup.exe) to also prevent the exit code 1 http://myitforum.com/cs2/blogs/smslist/archive/2009/01/05/mssms-symantec-endpoint-protection-deployment-77s677.aspx

  • Custom Update of the Logistics Execution status on the FO header

    Hi,
    in our project, we are using an app to update the statuses of the Freight Units. On the Fo, we are updating departure, arrival, load and unload.
    In standard, the logistical execution status has the last event on the header. Thats useful when you look at the standard freight order lists.
    In some cases, the Logistical execution status is not updated liek we would expect it, thus we would like to update it in our own way. But, where is the field? Could not find it in the BOPF Framework on the TOR object ROOT. Has anyone done this before? Is there an Action for this?

    Hi Petra,
    you did not find the field, because there is none
    The logistical execution status is determined on the fly. This is done in method GET_LOGISTICAL_CURRENT_STOP of class /SCMTMS/CL_TOR_HELPER_STATUS. There you could implement own logic in e.g. post enhancement.
    Best regards, Daniel

  • Report execution status

    Dear members,
    Is there a way to get the execution status (success / failure) of a Report from Forms (6i) when launched with "run_product" ?
    Any clue will be much welcome,

    I've seen this often here. Check the log files on the OWB server and you may see that control center service was force restarted. I have an SR opened with Oracle on this.
    The symptoms I've seen are:
    1. The mapping reports success
    2. Some or all of the levels of the mapping show "*" for the statistics
    3. The mapping completion time shows the mapping start time.

  • Execution status confusion

    There has been some confusion on our production floor concerning the execution status not matching the UUT result so I did a little experiment with the full featured UI and the Demo computer mother board test.  The results replicate the issue and is shown in the attached picture.
    What I did was to run the example sequence three times consecitivly (i.e. within the UUT loop) and set the first and third SN to pass and had the second run fail.  When the execution completes the exection status seems to indicate that the Run 3 failed which confilicts with the UUT status.  I am thinking this may be a bug.
    Any comments?
    Attachments:
    Execution failure.png ‏57 KB

    One of the work around or containment  :
    1) Dont display the confusing execution status.
    2) Create a status window ( custom panel) to display the status compatible with the end users.
    Details:
    1)Over ride process clean back in your test sequence.
    Add this in a statement step :
    RunState.Thread.PostUIMessageEx(UIMsg_CloseWindows​, 0, "", RunState.Execution, False)
    2)Over ride Post UUT in your sequence
    The Post UUT has the relevant status details in parameters
    parameters.result.status ( Passed or Failed)
    parameters.UUT.serialnumber
    Use this to update a custom status panel developed in Labview or CVI...
    Hope this helps.

  • Last few applications do not install, fail with "Execution status received: 24 (Application download failed )"

    Hello,
    We deploy applications using a task sequence. It does not matter which order we put the applications, the last two or three applications will not install. All of the applications install correctly when moved up in the task sequence order but
    previously working installs will fail once they are moved to the end of the list. Inside of the SMSTS logs we receive several errors listed below. I'm assuming it has to do with a space issue or limit but cannot find anything that would cause this error.
    On our distribution point the free disk space on the 1st package share priority is 100GB and 65GB on the 2nd package share priority which is at least triple the total size of all of the applicaitons being deployed. There are no errors under site status, component
    status, or under distribution point configuration status. The workstations have 300GB HDs.
    Execution status received: 24 (Application download failed).
    Installation failed.
    Install application action failed: 'AppName'. Error Code 0x80004005
    Any help is appreciated, thanks

    The CAS log shows the problem, I do have errors there. The SMS Cache was filling up so I doubled the SMSCACHESIZE attribute (SMSCACHESIZE=10240) to bypass the issue and allow all applications to install. The issue remains that
    the content is not deleted, it looks like the Error: DeleteDirectory error is not clearing installed applications.
    User policy requested with no user credentials. ContentAccess 5/23/2013 11:43:26 AM 3516 (0x0DBC)
    Invalid user. ContentAccess 5/23/2013 11:43:26 AM 3516 (0x0DBC)
    Submitted CTM job {B72D66BB-EEA7-45B8-8E9B-2B2FFDC2D601} to download Content Content_2d35848f-3fbe-4ac5-8e64-d2e7b0079ffc.1 under context System ContentAccess 5/23/2013 11:43:26 AM 3516 (0x0DBC)
    Successfully created download  request {C5F0CA27-463F-424C-86BA-3C6E3F12AEAD} for content Content_2d35848f-3fbe-4ac5-8e64-d2e7b0079ffc.1 ContentAccess 5/23/2013 11:43:26 AM 3516 (0x0DBC)
    Location update from CTM for content Content_2d35848f-3fbe-4ac5-8e64-d2e7b0079ffc.1 and request {C5F0CA27-463F-424C-86BA-3C6E3F12AEAD} ContentAccess 5/23/2013 11:43:26 AM 3284 (0x0CD4)
    Download location found 0 - xxxx ContentAccess 5/23/2013 11:43:26 AM 3284 (0x0CD4)
    Download request only, ignoring location update ContentAccess 5/23/2013 11:43:26 AM 3284 (0x0CD4)
    Download started for content Content_2d35848f-3fbe-4ac5-8e64-d2e7b0079ffc.1 ContentAccess 5/23/2013 11:43:26 AM 3140 (0x0C44)
    Download completed for content Content_2d35848f-3fbe-4ac5-8e64-d2e7b0079ffc.1 under context System ContentAccess 5/23/2013 11:43:38 AM 4008 (0x0FA8)
    Computed hash: 14C8B11451D0B7A4EE848492687679E7FB24E13A14C2B75C7D73F4A5EA49FCBD ContentAccess 5/23/2013 11:43:44 AM 4008 (0x0FA8)
    Hash verification succeeded for content Content_2d35848f-3fbe-4ac5-8e64-d2e7b0079ffc.1 downloaded under context System ContentAccess 5/23/2013 11:43:44 AM 4008 (0x0FA8)
    Saved Content ID Mapping Content_2d35848f-3fbe-4ac5-8e64-d2e7b0079ffc.1, C:\Windows\ccmcache\3 ContentAccess 5/23/2013 11:43:44 AM 4008 (0x0FA8)
    Download succeeded for download request {C5F0CA27-463F-424C-86BA-3C6E3F12AEAD} ContentAccess 5/23/2013 11:43:44 AM 4008 (0x0FA8)
    Error: DeleteDirectory:- Failed to delete Directory C:\Windows\ccmcache\3.BCWork with Error 0x00000002. ContentAccess 5/23/2013 11:43:44 AM 4008 (0x0FA8)

  • Reports execution status

    Dear members,
    Is there a way to get the execution status (success / failure) of a Report from Forms (6i) when launched with "run_product" ?
    Any clue will be much welcome,

    Hello,
    The RUN_PRODUCT built-in is a procedure, and does not return any report jobid information, which can be used to track the report job's status at a later point programmatically. Further, RUN_PRODUCT is a generic procedure capable of calling many other Oracle products from Forms.
    In order to be able to track the success/failure of your report run from Forms, you should use the RUN_REPORT_OBJECT builtin, which is a function that returns a jobid value, which can be used to ascertain the report's status using the REPORT_OBJECT_STATUS builtin. Please take a look at the Forms Builder Online Help for the syntax and usage examples of these builtins.
    Thanks,
    The Oracle Reports Team.

  • VStest.console.exe Query for a Data Row Result DURING Test Execution Status

    I started with the following
    thread and was asked to create a new thread. 
    I have the following test that reads a .csv as a data source.
    /// <summary>
    /// Summary description for Test
    /// </summary>
    [TestCategory("LongTest"),
    TestCategory("Visual Studio 2013"), TestMethod]
    [DeploymentItem("data.csv")]
    [DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV",
    "|DataDirectory|\\data.csv",
    "data#csv",
    DataAccessMethod.Sequential),
    DeploymentItem("data.csv")]
    public void Create_And_Build_All_Templates()
    testmethodname = "Create And Build All Templates ";
    LaunchVisualStudio2013();
    When I run the test from VStest.console.exe, I see the following:
    vstest.console.exe /testcasefilter:"TestCategory=LongTest" /settings:"C:\testing\CodedUI.testsettings" /logger:TRX /logger:CodedUITestLogger C:\AppTests\CodedUITest.dll
    Microsoft (R) Test Execution Command Line Tool Version 12.0.31101.0
    Copyright (c) Microsoft Corporation. All rights reserved.
    Running tests in C:\testing\bin\debug\TestResults
    Starting test execution, please wait...
    I want to report on the status of the iterations DURING the test run from VStest.console.exe, like how the test explorer window does this. 
    How can I achieve the output below (notice the (Data Row ) values) ?
    vstest.console.exe
    /testcasefilter:"TestCategory=LongTest"
    /settings:"C:\testing\CodedUI.testsettings"
    /logger:TRX
    /logger:CodedUITestLogger
    C:\AppTests\CodedUITest.dll
    Microsoft (R) Test Execution Command Line Tool Version 12.0.31101.0
    Copyright (c) Microsoft Corporation. All rights reserved.
    Running tests in C:\testing\bin\debug\TestResults
    Starting test execution, please wait...
    Test Passed - Create_And_Build_All_Templates (Data Row 1)
    Test Passed - Create_And_Build_All_Templates (Data Row 2)
    Test Failed - Create_And_Build_All_Templates (Data Row 3)
    Test Passed - Create_And_Build_All_Templates (Data Row 4)
    Ian Ceicys

    Jack, again the results are printed to the std. out console AFTER the test data row has been completed. Is there a way to query VSTest.console and find out which test\data row is being executed so it can be written out to the console
    DURING the test run? 
    I put together the following screencast showing the issue: 
    http://www.screencast.com/t/IrxxfhGlzD
    Also here is the github repo with the source code that I included in the screen cast:
    https://github.com/ianceicys/VisualStudioSamples2015
    Take a look at LongRunningDataDrivenTest.sln
    Unit Test
    [TestClass]
    public class UnitTest
    public static int _executedTests = 0;
    public static int _passedTests = 0;
    public void IncrementTests()
    _executedTests++;
    public void IncrementPassedTests()
    _passedTests++;
    [TestInitialize]
    public void TestInitialize()
    IncrementTests();
    Console.WriteLine("Total tests Row executed: {0}", _executedTests);
    [TestCleanup]
    public void TestCleanup()
    if (TestContext.CurrentTestOutcome == UnitTestOutcome.Passed)
    IncrementPassedTests();
    Console.WriteLine("Total passed tests: {0}", _passedTests);
    private TestContext testContextInstance;
    /// <summary>
    /// Long Running Test
    /// </summary>
    [TestCategory("Long Running Test Example"),TestMethod]
    [DeploymentItem("data.csv")]
    [DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV",
    "|DataDirectory|\\data.csv",
    "data#csv",
    DataAccessMethod.Sequential),
    DeploymentItem("data.csv")]
    public void LongRunning_TestMethod_Takes_Over_30_Seconds_to_Run()
    WaitTime(Convert.ToInt32(TestContext.DataRow["WaitTime"].ToString()));
    public void WaitTime (int waittime)
    Thread.Sleep(waittime);
    public TestContext TestContext
    get { return testContextInstance; }
    set { testContextInstance = value; }
    data.csv
    WaitTime,
    13000
    19000
    10000
    11000
    15000
    Ian Ceicys

Maybe you are looking for

  • Flat file to SQL BizTalk Server

    Hi, Currently I have a requirement in my project to import flat file data to multiple SQL tables using BizTalk. As of now I am doing the following steps : 1. Prepare a input schema using flat file schema wizard 2. Prepare a Output schema(creating a S

  • DML_FETCH_ROW with flashback?

    I love the ability to query tables using flashback and select * from TABLE as of pre-bonehead, but using a Form on Report, I can't have that flashback apply to a form that uses automatic row processing.<p> I even dug through the apex scripts a bit to

  • Blue screen at start up...can't start up in OS x 10.1.5

    When I shut down yesterday and tried to start up my computer later, the computer went through the initial opening stages but when it got past the gray screen with the little computer icon and went to the blue screen with the white mac os x box that s

  • Importing smart card certificates

    Has anyone run into any issues similar, where you cannot import the smart card certificates into the BlackBerry? Users have T-Mobile 8700g and the RIM Bluetooth smart card reader. We are able to pair the BB and the Reader. But we are stuck at the poi

  • I can't use Roboform with 4.0 beta 10, so I can't use Firefox. How do you go back to beta 9?

    I can't use Roboform with 4.0 beta 10, so I can't use Firefox. How do you go back to beta 9?