procedure to call 'iexplore.exe' of the database

I currently have a routine that calls "iexplore.exe" form - mainly to display PDF documents and images - using jj. APP_begin (en) (in SHAPES).

Asked me to do this generally available capacity by putting a procedure on the database.

I have searched but did not find any similar packaging.

Is it still possible?

It's even easier. With Apex, you are already in your browser. No need to open the browser of forms.
Apex, it is just a link HTML in the file.

Tags: Database

Similar Questions

  • My CPU usage climbs to 100% & an application called iexplore.exe uses 99% of CPU time.

    Original title: iexplore.exe

    When I activate "Task Manager", my CPU usage climbs to 100% & an application called iexplore.exe uses 99% of CPU time. This slows down my computer. I can turn it off without causing other problems?

    After restarting in safe mode and then restart in normal mode, all is back to normal. Thank you!

  • encrypt/decrypt in Oracle Forms BEFORE you call an SP or the database DML statement

    Hello.  I'm working on an application where we need to encrypt information before it is sent to the database.  I know that the database has a great set of stored procedures to manage the encryption and decryption.  The only challenge here is the fact that I would need to send information unencrypted in the database "in the clear".  Ideally, I would like to encrypt the information in the form and send it to the database.  On recovery, recover the information and then have the application forms decipher encrypted information.

    Whoever did this as a package within a PLL without all calls to a package DBMS_?

    Thank you

    BradW

    OK, I think I have the solution.  We are going to import a java class that we create to do this for us.  We then import it in forms in a library of PLL.  Problem solved!

    Nice little intro to importing Java can be found here:

    Java in Oracle Forms without beans and pluggable Java components

  • Procedure that calls another proc throws the error message

    I have a proc returns ref cursor as below

    create or replace

    PROCEDURE PROC_RETURN_CV (P_in_deptno number, varchar2, p_out_info to sys_refcursor p_in_job)

    is

    Start

    Open p_out_info for ' select ename, empno from emp1 where deptno =: = deptno and job: job ' using p_in_deptno, p_in_job;

    end;

    /

    Another Proc calls over proc;

    create or replace

    procedure proc_call_cv is

    v_local_cv sys_refcursor;

    v_rec emp % roWtype;

    Start

    PROC_RETURN_CV(10,'CLERK',v_local_cv);

    LOOP

    SEEK v_local_cv INTO v_rec;

    EXIT WHEN v_local_cv % NOTFOUND;

    DBMS_OUTPUT. PUT_LINE ('EMPNO' | v_rec.empno);

    END LOOP;

    END;

    /

    But when I realize the proc that called the first proc returns error, below

    BEGIN

    PROC_CALL_CV();

    END;

    ORA-01007: variable not in select list

    ORA-06512: at "SCOTT. PROC_CALL_CV', line 7

    ORA-06512: at line 2

    01007 00000 - "variable not in select list.

    Can someone correct me?

    Thank you

    Ann

    You said that the return type is an emp % rowtype - the entire line - all columns

    You return all the columns in the select.

    Either refund * or set a record type

  • PROCEDURE IN A FORM INSIDE OF THE DATABASE

    Hello
    I have a form procedure

    PROCEDURE get_city_data
    IS

    file_handle text_io.file_type;
    seperator VARCHAR2 (1): = ', ';
    city_row VARCHAR2 (32767).
    skip_first_row BOOLEAN: = TRUE;


    NUMBER OF S_NO;
    N_BRANCH VARCHAR2 (50);
    N_PROVINCE VARCHAR2 (50);
    N_ADD_DEPOSITOR VARCHAR2 (50);
    ACC_NO VARCHAR2 (50);
    NATURE_ACC VARCHAR2 (50);
    DATE OF DATE_WITHDRAWAL;
    REASON_OPERATE VARCHAR2 (50);
    NUMBER OF BALANCE_OUTSTANDING;
    AMOUNT_31_DECEMBER NUMBER;


    BEGIN


    file_handle: = text_io.fopen (would be: \UDMS.csv', 'R');

    BEGIN

    LOOP
    TEXT_IO.get_line (file_handle, city_row);
    IF skip_first_row
    THEN
    skip_first_row: = FALSE;
    ON THE OTHER

    S_NO: = Split (city_row, 1, ',');
    N_BRANCH: = Split (city_row, 2, ',');
    N_PROVINCE: = Split (city_row, 3, ',');
    N_ADD_DEPOSITOR: = Split (city_row, 4, ',');
    ACC_NO: = Split (city_row, 5, ',');
    NATURE_ACC: = Split (city_row, 6, ',');
    DATE_WITHDRAWAL: = Split (city_row, 7, ',');
    REASON_OPERATE: = Split (city_row, 8, ',');
    BALANCE_OUTSTANDING: = Split (city_row, 9, ',');
    AMOUNT_31_DECEMBER: = Split (city_row, 10, ',');


    INSERT IN THE TEST. UDMS)
    S_NO,
    N_BRANCH,
    N_PROVINCE,
    N_ADD_DEPOSITOR,
    ACC_NO,
    NATURE_ACC,
    DATE_WITHDRAWAL,
    REASON_OPERATE,
    BALANCE_OUTSTANDING,
    AMOUNT_31_DECEMBER
    )
    VALUES)
    S_NO,
    N_BRANCH,
    N_PROVINCE,
    N_ADD_DEPOSITOR,
    ACC_NO,
    NATURE_ACC,
    DATE_WITHDRAWAL,
    REASON_OPERATE,
    BALANCE_OUTSTANDING,
    AMOUNT_31_DECEMBER
    );
    END IF;
    END LOOP;

    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    END;

    TEXT_IO.fclose (file_handle);

    COMMIT;

    EXCEPTION
    WHILE OTHERS THEN
    message ('Error!');
    ROLLBACK;
    RAISE FORM_TRIGGER_FAILURE;
    END;



    I want to say about procedure database...
    When I do that



    CREATE OR REPLACE PROCEDURE get_city_data
    IS
    file_handle text_io.file_type;
    seperator VARCHAR2 (1): = ', ';
    city_row VARCHAR2 (32767).
    skip_first_row BOOLEAN: = TRUE;
    NUMBER OF S_NO;
    N_BRANCH VARCHAR2 (50);
    N_PROVINCE VARCHAR2 (50);
    N_ADD_DEPOSITOR VARCHAR2 (50);
    ACC_NO VARCHAR2 (50);
    NATURE_ACC VARCHAR2 (50);
    DATE OF DATE_WITHDRAWAL;
    REASON_OPERATE VARCHAR2 (50);
    NUMBER OF BALANCE_OUTSTANDING;
    AMOUNT_31_DECEMBER NUMBER;
    BEGIN
    file_handle: = text_io.fopen (would be: \UDMS.csv', 'R');
    BEGIN
    LOOP
    TEXT_IO.get_line (file_handle, city_row);
    IF skip_first_row
    THEN
    skip_first_row: = FALSE;
    ON THE OTHER
    S_NO: = Split (city_row, 1, ',');
    N_BRANCH: = Split (city_row, 2, ',');
    N_PROVINCE: = Split (city_row, 3, ',');
    N_ADD_DEPOSITOR: = Split (city_row, 4, ',');
    ACC_NO: = Split (city_row, 5, ',');
    NATURE_ACC: = Split (city_row, 6, ',');
    DATE_WITHDRAWAL: = Split (city_row, 7, ',');
    REASON_OPERATE: = Split (city_row, 8, ',');
    BALANCE_OUTSTANDING: = Split (city_row, 9, ',');
    AMOUNT_31_DECEMBER: = Split (city_row, 10, ',');
    INSERT IN THE TEST. UDMS)
    S_NO,
    N_BRANCH,
    N_PROVINCE,
    N_ADD_DEPOSITOR,
    ACC_NO,
    NATURE_ACC,
    DATE_WITHDRAWAL,
    REASON_OPERATE,
    BALANCE_OUTSTANDING,
    AMOUNT_31_DECEMBER
    )
    VALUES)
    S_NO,
    N_BRANCH,
    N_PROVINCE,
    N_ADD_DEPOSITOR,
    ACC_NO,
    NATURE_ACC,
    DATE_WITHDRAWAL,
    REASON_OPERATE,
    BALANCE_OUTSTANDING,
    AMOUNT_31_DECEMBER
    );
    END IF;
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    END;
    TEXT_IO.fclose (file_handle);
    COMMIT;
    EXCEPTION
    WHILE OTHERS THEN
    NULL;
    END get_city_data;
    /



    It gives an error


    SQL > show err
    Errors in PROCEDURE GET_CITY_DATA:

    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    3/17 PLS-00201: identifier ' TEXT_IO. Type_de_fichier ' must be declared
    3/17 PL/SQL: ignored element
    18/3 PLS-00320: the declaration of the type of this expression is
    incomplete or incorrect

    18/3 PL/SQL: statement ignored
    21/2 PL/SQL: statement ignored
    21/19 PLS-00320: the declaration of the type of this expression is
    incomplete or incorrect

    66/2 PL/SQL: statement ignored
    66/17 PLS-00320: the declaration of the type of this expression is
    incomplete or incorrect

    Anyone can fix the code...
    Thanks in advance
    concerning
    Sajid

    You can use the path directly in the FOPEN
    file_handle: = UTL_FILE.fopen('D:\','UDMS.csv','R');

    You must create a DIRECTORY FIRST

    Try

    Create or REPLACE directory D_DRIVE as "D:\". » ;

    GRANT READ, WRITE TO USER_NAME;

    MODIFY: file_handle: = UTL_FILE.fopen('D:\','UDMS.csv','R');
    To: file_handle: = UTL_FILE.fopen ('D_DRIVE', 'UDMS.csv', 'R');

    Make sure you have "UDMS.csv" placed on the D drive of your machine which Actuall DB is installed.

  • two sometimes three iexplorer.exe. Open the process in the Task Manager

    original title: iexplorer.exe.

    everytime I open a sometimes three iexplorer.exe two Web site. Open in the Task Manager process is this normal or is one of them not supposed to run?

    Hi danielgirard,

    1. did you of recent changes on the computer?

    2. do you have a security software on the computer?

    3. it happens with any site that you open it?

    Method 1

    Every new Internet Explorer window that you open will create a new entry iexplorer.exe in the Task Manager.

    I suggest that you scan the computer for malware or virus infections and check if it helps.

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    You can also use Microsoft Security databases to scan your computer

    http://www.Microsoft.com/security/PC-security/MSE.aspx

    Method 2

    If the above does not help, then perform the clean boot procedure to verify if a third-party program installed on the computer is the origin of the problem.

    To help resolve the error and other messages, you can start Windows XP by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    See the link below to learn more about how to clean boot.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Reset the computer to start as usual

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    (a) click Start, type msconfig in the search box and press ENTER.

    (b) If you are prompted for an administrator password or for confirmation, type your password or click on continue.

    (c) under the general tab, click the Normal startup option, and then click OK.

    (d) when you are prompted to restart the computer, click on restart.

  • Iexplore.exe runs twice in my task of process manager. How do I know that you close?

    When I turn on the internet, I have an iexplore.exe which uses a lot of memory, more than 200 000 K and one that uses very little of 15, 000 K.  I also seem to have a running explorer.exe.

    Anyone running Windows XP has "explorer.exe" running - it's the office.

    When iexplore.exe is, assuming that you are sure that the two tasks are spelled the same and both are run under the same user account, and then if you have upgraded Internet Explorer to version 8, the reason for the two instances of iexplore.exe is the new browser uses a separate process 'iexplore.exe' for each currently open tab. If you start your browser, you will automatically have two processes, one for the main browser window and one for the first tab.

    Microsoft has implemented this technique in Internet Explorer 8 to accommodate a more effective process to each tab priority. An example would be if you were listening to streaming radio in a tab and the surf in another. The tab that has your focus can and will take precedence over the background tab and cause the radio to cut or even stop. In the new Internet Explorer, each tab has its own procedure that allows equal priority over time CPU and not let not another tab steal the processing time for an another background tab.

    If you don't have IE 8, then you probably have a malware problem.  Download, install, update and run each of these two free scanners.  Do not run both at the same time.  Each will take a while ends, then start it up and then go for a non-it chore.

    MalwareBytes AntiMalware
    SUPERAntiSpyware

  • several iexplorer.exe in my task manager

    When I check the Task Manager, I have several iexplorer.exe files that come up. Sometimes it takes up to 500 to 600 MB of my ram. I sometimes up to twenty of these iexplorer.exe in my process. Microsoft has a solution and saw thousands of others with the same problem in forums etc. When will this be fixed?

    Hi plonky12,

    Every new Internet Explorer window that you open will create a new entry iexplorer.exe in the Task Manager.
    You see several iexplorer.exe in the Task Manager when you are not using Internet Explorer?
    Hope this helps to understand the issue. Can't wait to hear back on your part.
  • Calling stored procedures with parameters with the database connectivity Toolkit

    Hi all

    I'm new to the forum and struggling to find a solution to a particular problem I have in this respect, using the LabVIEW Database Connectivity Toolkit on a project, I am currently working on my work.  I have a database in which I tables and stored procedures with parameters.  Some of these stored procedures have input, output and return parameters.

    I tried to follow this example, but to no avail: http://digital.ni.com/public.nsf/allkb/07FD130746083E0686257300006326C4?OpenDocument

    Such a stored procedure I am working on the implementation is named "dbo.getAllowablePNs", running "SELECT * from DeviceType" (DeviceType is the table).  In this case, it requires no input parameter, it has an output parameter that generates the table [cluster] and has a return parameter that returns an integer value (status code for execution) to show if an error occurred.  The DeviceType table has 3 columns; ID (PK, int not null), PN (nvarchar ((15), null) and NumMACAddresses (int, null).)  I have surpassed many examples and I talk to the support OR try to implement this and similar procedures stored in LabVIEW but have not been successful.  I am able to connect to the database with the VI of open connection without error, but spin in some confusion as a result of this step.  I then try to use the VI of parameter query create to call the stored procedure and set the parameters.  I guess I would then use the Set parameter value for each parameter that is connected to the entry of parameters on the previous query with parameters VI VI?  I am also having some confusion during and after these steps as well.  I would greatly appreciate advice or suggestions that anyone could have in this situation because I am not a SQL expert.  Also, I would be happy to provide more information that might be useful.

    Kind regards

    Jon

    Here's what I use to do this.  I think I had to change him create parameterized query VI for him to work.  There is a post on the forum about this somewhere.

  • Make a call to the database

    From the outset, I apologize for my lack of knowledge about databases and database connectivity kit.  I am struggling through it, with my team and make advance slow progression.

    We are finally able to connect to an Oracle (11g) database with database connectivity kit (LV2015) and I successfully read some data using the select VI.  I'm pretty impressed by the way in which it works and as the integration, this will provide for my project.  The problem is that my team is very nervous about an application of part 3rd reading and writing to their database tables.  Their concern is to corrupt data, expecially when writing.

    They would rather make me a call to the database using the API.  For starters, they gave me a test script that would send a message once received by the database.  The script is the following:

    sy_common.send_mail ('[email protected]'

    , "[email protected]".

    "Database connection has worked"

    "You have successfully called a LabView database procedure."

    ,'[email protected]'

    null

    "text/html");

    Is it possible to run a script with one of the database connectivity tool screws?

    If it works, the next step would be to have several calls that could read and write data using API to return the equipment to communicate with the database according to the needs.

    Yes, look at him "create parameterized query VI.  Specify the name of the procedure that the text of the query and then build the table of parameters with your input values.  Stored procedure set to true.

    At least this is how it works with MSSQL.  I'm not familiar with Oracle, but it should work the same way on all platforms.

  • Why Microsoft did not recognize or set the iexplore.exe virus?

    After cold boot my Toshiba Satellite laptop computer with Vista, pane the Task Manager process shows no instance of iexplore.exe. However, after using the computer for a while (using Outlook, Crome, Excel etc) my system slowly grinds almost to a halt several instances of iexplore.exe appear in the process pane, each consumer of 15 to 25% of the total of processor cycles. This becomes worse and worse until the system becomes unusable.

    I belong to several thousand users of Windows who is plagued by the iexplore.exe virus. I used 5 different virus/malware removers (including MS Security Essentials and MSERT.exe), but they do not solve this problem.
    Why Microsoft did not recognize this virus dangerous and done something to remove it? (ODILE. EXE does not help).  Only users that I found on the web that have to get rid of this nasty virus are those who reformatted their hard drives.  Microsoft can surely do better than that.
    Has anyone found a solution that actually works?  (A lot of the fixes suggested on the net "seem" to work for a few hours or a day or two, but then the virus appears again upward and consumes most or all of the cycles CPU).
    I'm surprised that Microsoft do not have a solution to the problem. If you have a solution that really works, please let me know. Thank you.

    And you think this is a virus why? I admit it could be a root kit, but I suspect that a program you use called IExplore to launch a URL, but fails to launch a browser window, that is why tasks of runaways.

    However, if you believe that it is through a virus or root kit:

  • ORA-06508, procedure cannot call the procedure of package

    I have a large stored procedure that calls a package (procedure) that manages a number of procedures to determine whether the process can continue or not.  (It checks authorization of the student to enroll in a class).  We have a web process calling the stored procedure, and that works fine.  What does not work, is a call to the package.  Oracle returned ORA-06508: PL? SQL: could not find program unit called.

    I have included instructions for debugging, so I know that it is the specific call to a procedure in the package fails with ORA-06508.  Thinking it's perhaps something in the package, I inserted a debug statement as the first line in the procedure called in the package.    (Debugging instructions call a procedure inserts of rows in a table of debugging with independent validation).

    When I log in the user account with sqlplus and run a test, everything works fine.  But when the web process is running under the same user, the process fails to call the procedure of package and fails with ORA-06508.

    It seems as if the web process runs with the rights of the appellant, or a role is not granted.

    Can someone help me understand what the problem is?

    offered hv, I appreciate your comments.

    We solved the problem: remove the package that couldn't be cited, then re-create.   That's all!

    Apparently, something in the database was tangled upward.   The server recently had problems with disk space, then it might have been related to that.  But we'll never know for sure.

    The stored procedure and packaging (procedures) which he called were owned by the same schema, and there is no mechanism that I can find to prevent one of the other appellant.  But that was the case - Oracle threw the ORA-06508 exception when the stored procedure called the package procedure.

    I replaced the stored procedure and package several times fine-tuning debugging code, but this has not fixed the problem.

    Finally let it drop and then re-create the package, it's which solved the problem.

    Regarding requests to view the code, there is no way that I could reproduce the problem, since the error that occurred was against the permissions and rules which packages run and the procedures of the Oracle.  Thanks for all the tips and suggestions.

  • dbAdapter fails during the call to procedure package oracle object type in the parameter out

    JDeveloper 1.1.1.6

    Oracle 11g

    Existing package procedure is defined with the table of objects in input parameters and.

    Package myPackage

    procedure processRecon (numero_projet VARCHAR2,

    INST_ID select NUMBER,

    recon_type VARCHAR2,

    gis_design_stock GMPVT. GMPVT_GIS_DESIGN_STOCK_T,

    stock_uop GMPVT. GMPVT_STOCK_CODES_T,

    x_status OUT VARCHAR2,

    x_escalation OUT VARCHAR2,

    x_recon_error ON GMPVT. GMPVT_GIS_RECON_ERR_T) IS

    GMPVT. GMPVT_GIS_RECON_ERR_T is an array of GMPVT objects. GMPVT_GIS_RECON_ERR, who has 12 fields including the new I added it.

    I have added a new field to the GMPVT object. GMPVT_GIS_DESIGN_STOCK, where GMPVT. GMPVT_GIS_DESIGN_STOCK_T is a table of GMPVT. GMPVT_GIS_DESIGN_STOCK, no problems encountered during the test.

    Next, I added a new field for the object of type GMPVT. GMPVT_GIS_RECON_ERR, the following error below occurs when the DBAdapter is called

    < Summary > Exception occurred when the link was invoked. Exception occurred during invocation of the JCA binding: "JCA binding run operation 'processStockRecon' failed due to the reference: Interaction processing error." Error in the processing of applications from running. GMP_SOA_RECON_PKG. Interaction of the PROCESSRECON API. An error occurred during the processing of the interaction to invoke APPS. GMP_SOA_RECON_PKG. PROCESSRECON API. Cause: java.lang.ArrayIndexOutOfBoundsException: 12 check to make sure that the XML file containing the data of the parameter matches the parameter definition in the XSD. This exception is considered non reproducible, probably due to an error of modeling. ". The called JCA adapter threw an exception of resource. Please review the error message above carefully to determine a resolution. < / Summary >

    I confirmed that the XSD for the stored procedure has in fact change, which has been generated by JDeveloper as I refreshed the database adapter.

    The statement "Cause: java.lang.ArrayIndexOutOfBoundsException: 12" I can't that assume somehow SOA has 12 parameters but the 12 setting was not saved.

    Any thoughts on what I might be missing. I can provide more information if necessary.

    Hello

    This problem has been resolved. Not deployed SOA composite and then deployed to the server of the SOA. For some reason, SOA has been either you see does not changes in the file XSD (cached?) or the XSD was not get updated.

    Thank you

  • How to write a procedure to call and run the custom package backend

    Hi all

    Oracle 10g
    Oracle Apps R12

    I work with here oracle order management, we have a package called (Pick Release) to customize. Due to a problem, we have this concurrent program execution manually giving Route_id as parameter. The route_id comes from the road to the Table. By using this query

    Select distinct route@DB_LINK_APPS_TO_ROADSHOW route_id
    When trunc (route_date) = trunc (sysdate + 2).

    on a daily basis, we have almost 42 routes and we run this simultaneous program manually close times.

    so now how to write a procedure for this

    Step 1 make the route to the routing table. (By cursor we can get the route_id accordingly)

    Step 2 How to trigger custom backend package and run accordingly to this output of the cursor (route_id)

    If 40 routes of cursor get is - that the simultaneous program runs 40 times according to this route_id.


    can some could provide the steps to do this


    Thanks and greetings

    Srikkanth.M

    To submit a competing request from the back - end:

    FND_REQUEST. SUBMIT_REQUEST (Client or server)

    Summary

    function FND_REQUEST. SUBMIT_REQUEST

    (application IN varchar2 default NULL,

    program IN varchar2 NULL by default,

    Description IN varchar2 default NULL,

    start_time IN varchar2 default NULL,

    sub_request IN default boolean FALSE

    Argument1,

    argument2,..., argument99.

    Return to argument100 number);

    Description

    Submits a competing treatment by a simultaneous Manager. If the query is successful, this function returns the ID of the concurrent request; Otherwise, it returns 0.

    ATTENTION: FND_REQUEST needs to know information about the user and accountability whose application is submitted. Therefore, this feature works of concurrent programs or forms within the Oracle Applications.

    The FND_REQUEST. SUBMIT_REQUEST function returns the ID of the concurrent application after successfully. It is up to the caller to issue a commit to complete the application.

    Your code should retrieve and handle the error message generated if there is a problem of presentation (the ID of the concurrent request returned is 0). Use FND_MESSAGE. RETRIEVE and FND_MESSAGE. ERROR to retrieve and display the error (if the application is made on the client side).

    Related essays: overview of the Message dictionary (see page)

    You must call FND_REQUEST. SET_MODE before calling FND_REQUEST. SUBMIT_REQUEST of a database trigger.

    If FND_REQUEST. SUBMIT_REQUEST fails to go anywhere but a database trigger, database changes are cancelled until the time of the function call.

    After a call to the FND_REQUEST. SUBMIT_REQUEST function, installation of all parameters are reset to their default values.

    Arguments (input)

    short name of the application associated with the concurrent request for enforcement.
    short simultaneous program (not the executable) name of the program for which the application must be made.
    Description Description of the application that appears in the form of concurrent requests (optional).
    start_time time during which demand is expected to start running in the (optional) HH24 or HH24:MI:SS format.
    sub_request set to TRUE if the request is made by another application and should be treated as a subquery.
    From version 11, this parameter can be used if you submit requests for in a concurrent program of PL/SQL stored procedure.
    argument1... 100 arguments for the concurrent request; up to 100 arguments are allowed. If the Oracle Forms submitted, you must specify all arguments of 100.

  • Call a procedure that returns an array of the results of dotnet

    Hi I have a function in the database (see below), I am creating a Web page and you want to call the function and get the results, how can I do this in dotnet using the ODP.net. does anyone have a code please... I called procedures in the database that return of refCursors but not tables.


    Type rec_user is record (call varchar2 (200),)
    Identification number);

    Type tab_user is table of the rec_user;

    function populate_user (piusername in varchar2) return tab_user;

    ------------------------------
    Concerning
    Ash

    Hello

    Registration table is a PLSQL type and cannot be called from OIC (this is what ODP.NET is written in). If you change the procedure to return the table or Varray of the object instead, you could do that with the support of the UDT available in ODP 11106.21 and higher.

    There is an example in this thread that you may find useful:
    By the way the table of the UDT or Collection, as IN to the OracleDbType.InputOutput HELP

    It will be useful,
    Greg

Maybe you are looking for

  • My imessage is inactive with an error note

    Hello The imessage in my Mac app can not be activated. Joint screenshot. Nothing helps: 1. my iphone 6 s and mac are on the same wifi connection. 2. the region is the same in both devices. What can I do? I get an error every time note.

  • percentages vertical positioning depends on the width of the block?

    I seem to have found a problem when firefox is positioning of blocks based on the values of percentage margin offsets In short, look at this page: http://akos.maroy.hu/~akos/frontend/experiment/awake.html the desired size of the image section is 75%

  • print quality settings

    Hi, how you can adjust the print quality settings, as well as set black and white printing as thepreferred option? tX!

  • Two different tests running on separate monitors

    Can I run two executables different labview from a PC on separate monitors at the same time? I have a test installation of 2 station I would use 1 PC and 2 monitors with touchscreen for the RACC 2 operators simultaneously run different tests on each

  • CPU upgrade for HP Dv7-6179us?

    I did a video on my laptop and quickly noticed that my current system could not follow the program I run (Cyberlink Powerdirector 11). I already ordered a new 16gig RAM again and I was wondering what I can do to upgrade my CPU... Any suggestion would