How to do communicate Oracle 8i and Mts?

Hello,
I've just installed Personal Web Server (and Microsoft transaction server) on my system windows 98.
I would like to use some components Com to view and update my database Oracle 8i Personal Edition.
For that, I have followed the method coming from Mts Help to configure Oracle. I have also a test program to check if oracle can communicate with Mts.
But when I launch this last, I have an error. After listening again the help, I have noticed that SQL*Net is needed for that.
But it is not present on the install CD of Oracle 8i Personal Edition, where can I find it?
Are others components needed to allow that?
Thanks for any information or link etc.

I've never used Oracle personnel edition. However if it doesn't have SQL NET, I guess its not going have all the things required to used MTS. You might need to install Oracle standard or Enterprise edition.
To use MTS with oracle you wil need
SQL Net (includes oci.dll which is pretty fundamental)
The Oracle OLE DB provider
Oracle services for MTS
If personnel edition doesn't have these, then you are pretty stuck. You can either install the oracle 8i client or full oracle db on you machine and it will work.

Similar Messages

  • How to deploy the Oracle Forms and Reports 10g in Web?

    Currently I am working in Oracle forms & Reports conversion project (6i to 10g).
    As of now 6i forms working as a standalone application. After migrated it to 10g, I need to deploy the forms and reports in web.
    Any one know how to deploy the Oracle forms and Reports in web?
    Please help me out. Thanks in advance.
    Vimal

    Hello Frank,
    for development, you need to install Oracle Developer
    Suite 10g. This includes Forms and Reports.this topic interests me too, because I've downloaded Developer Suite and Database (both for 10g) from Oracle website, installed them, but I couldn't connect to a database.
    What should be done for me to create a database link and be able to connect locally, in my personal Desktop computer? (Not to a server)
    Once it was told me here that I should download 10g Database - I did it, and installed it, but it didn't work. Later, some of my job partners said I should install them in a sequence - that is, 1st the Developer, and 2nd the Database. But it has failed too. And I don't know how to configure a database connection.
    Best regards,

  • How to fine the oracle version and bit info?

    I just want to find out the
    Oracle version
    Bit info (32 or 64....)
    and other system configuration about oracle
    Please help

    Duplicate post:
    how to fine the oracle version and bit info?

  • Urgentpls : How to find the Oracle reports and forms version in Unix prompt

    Hi,
    How to find the Oracle reports and forms version in Unix prompt.
    Please give the steps
    Thanks

    I need to check the version of Oracle forms and reportsExample :$ frmcmp.sh -h | head -1
    Forms 10.1 (Form Compiler) Version 10.1.2.0.2 (Production)
    $ rwrun.sh 2>/dev/null | head -2 | tail -1
    Report Builder: Release 10.1.2.0.2 - Production on Wed Mar 10 11:17:55 2010
    $

  • How can i get oracle 10g and Xquery

    sir,
    How can i download Oracle 10g and Xquery.I need it urgently for my project work...
    thanks..
    somesh

    The following link provides a good starting point for your endeavour:
    http://www.oracle.com/technology/sample_code/products/forms/index.html

  • How to start with ORACLE APPS and ORACLE APPLICATION SERVER?

    Hi !!
    I am a little known with oracle database. But recently i have been asked to update my skills with oracle apps and oracl e application server. I do not have any prior experience with these products of oracle and I really have 0 knowledge of it.
    Can anybody help me find a start with oracle apps and oracle as?
    Thanks.

    Welcome
    http://www.oracle.com/technology/documentation/applications.html
    You can download from here.
    Regards
    Asif Kabir
    -- If helpful mark the post as correct/helpful, also close the thread as answered.

  • How to connect database(oracle 10g) and retreive values using poral 10

    can anyone help me how to connect to database and retreive values in detail and also please post the sample code if u have any.

    Hello
    Thanks for your reply
    I tried to connect and here is the result: see below
    [oracle@ebstailin 11.1.0]$ sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Sat Jul 17 15:35:31 2010
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> CONNECT apps/apps
    Connected.
    SQL>
    But still cannot connect using ORACLE SQL Developer
    thanks

  • How to call an Oracle Procedure and get a return value in Php

    Hi Everyone,
    Has anyone tried calling an Oracle procedure from Php using the ora functions and getting the return value ? I need to use the ora funtions (no oci)because of compatibility and oracle 7.x as the database.
    The reason why I post this here is because the ora_exec funtion is returning FALSE but the error code displayes is good. Is this a bug in the ora_exec funtion ?
    My code after the connection call is as follows:
    $cur = ora_open($this->conn);
    ora_commitoff($this->conn);
    $requestid = '144937';
    echo $requestid;
    $rc = ora_parse($cur, "begin p_ins_gsdata2
    (:requestid, :returnval); end;");
    if ($rc == true) {
    echo " Parse was successful ";
    $rc2 = ora_bind ($cur, "requestid", ":requestid", 32, 1);
    if ($rc2 == true) echo " Requestid Bind Successful ";
    $rc3 = ora_bind ($cur, "returnval", ":returnval", 32, 2);
    if ($rc3 == true) echo " Returnval Bind Successful ";
    $returnval = "0";
    $rc4 = ora_exec($cur);
    echo " Result = ".$returnval." ";
    if ($rc4 == false) {
    echo " Exec Returned FALSE ";
    echo " Error = ".ora_error($cur);
    echo " ";
    echo "ErrorCode = ".ora_errorcode($cur);
    echo "Error Executing";
    ora_close ($cur);
    The Oracle procedure has a select count from a table and it returns the number of records in that table. It's defined as:
    CREATE OR REPLACE procedure p_ins_gsdata2 (
    p_requestid IN varchar2 default null,
    p_retcode OUT varchar2)
    as
    BEGIN
    SELECT COUNT (*) INTO p_retcode
    FROM S_GSMRY_DATA_SURVEY
    WHERE request_id = p_requestid ;
    COMMIT;
    RETURN;
    END;
    Nothing much there. I want to do an insert into a table,
    from the procedure later, but I figured that I start with a select count since it's simpler.
    When I ran the Php code, I get the following:
    144937
    Parse was successful
    Requestid Bind Successful
    Returnval Bind Successful
    Result = 0
    Exec Returned FALSE
    Error = ORA-00000: normal, successful completion -- while
    processing OCI function OBNDRA
    ErrorCode = 0
    Error Executing
    I listed the messages on separate lines for clarity. I don't understand why it parses and binds o.k. but the exec returns false.
    Thanks again in advance for your help. Have a great day.
    Regards,
    Rudi

    retcode=`echo $?`is a bit convoluted. Just use:
    retcode=$?I see no EOF line terminating your input. Your flavour of Unix might not like that - it might ignore the command, though I'd be surprised (AIX doesn't).
    replace the EXEC line with :
    select 'hello' from dual;
    and see if you get some output - then you know if sqlplus commands are being called from your script. You didn't mentioned whether you see the banner for sqlplus. Copy/paste the output that you get, it will give us much more of an idea.

  • How do I store oracle forms and reports in the database

    Hi !!
    Is there a way I can store the forms and reports runtime in the
    oracle database ??
    We are working on forms 5.0, reports 3.0
    oracle 8.0.5.0.0 on HP-Unix
    Can someone guide me step by step from storing the forms to
    accessing it back on the desktop.
    Thanks in advance,
    Shobhit Kumar
    null

    You need SMB compatible names.. for both TC and if you use wireless then wireless.. short, no spaces, pure alphanumeric.
    Go to the disk file sharing page.. turn on guest account.. read and write access.
    Give it the right workgroup .. usually WORKGROUP
    Load bonjour for windows onto the windows machine.. that should be included with the airport utility for windows.

  • How to install latest oracle application and database?

    Hi all,
    Hope doing well,
    sir i am using sql database for my application now i want to use oracle database for my application that is visual studio 2008
    .net application. but i don't know the steps of how to get set up file how to install etc.
    plz help me. waiting for reply.
    Thanks in advance.

    Call or bring your phone to a Nokia Service center.It is possible that they can bring that stuff back in your phone.
    I assume that it wont cost you anything unless you have voided the warranty.

  • How do you communicate between flash and java?

    Hi,
    How can you pass parameters between a Flash movie and a Java applet running on the same machine? I would like to do this without opening a new browser window or putting parameters in the url of the browser window that is running the Flash movie.

    Flash supports Javascript , check out actions.
    set the URL like you would the Javascript for
    making a method call from a webpage.
    make sure that Scriptable <PARAM> has been set to true.

  • I have Mitsubishi PLC FX 128 MR model type, I have a scada which supports opc client. how do i communicat​e PLC and Scada. please note the the SCADA which i have does not have FX series PLC protocol.

    k

    Use Mitsubishi's MX Component. This utilises activex and I have successfully managed to develope VI's to both read and write to the PLC for control and datalogging. MX Component currently retails at 299 GBP and I do not know of any other protocol on the market that you can use(Mits have told me that they do not know of any either and were not even aware that MX Component could be used with LV until I proved it to them).You can use this by directly connecting to the PLC using one of many different communication protocols(serial, ethernet, profibus etc.)
    I am not sure how this will tie in with your SCADA package, are you using this as your front end because by using LV and MX Component you could do away with any bespoke SCADA and easily develope your own. I am curren
    tly working on a VI that reads data from the PLC (FXon-24MR)in real time, displays it on a graph and logs it to a MySQL database complete with report production.
    If you would like further details on how to use MX Component with LV(Its a doddle, really)then please email me at [email protected]
    Yours
    Mark lea

  • How to upgrade the oracle RDBMS and migrate cross platform

    Hi ,
    I would like to migrate my database from solaris 5.10 to linux. Simultaneously upgrade my RDBMS database from 10g to 11gR2.
    Can you please suggest
    Thanks
    Naveen

    My present database is 10.2 and new target database is 11.2.0.1.
    cross platform is from solaris to linux.
    Size of the database is 2.5TB . Does datapump a viable solution? Any alternative methods.
    We do not get any down time. I am figuring out a solution for initial lot and migation. Thereafter i can use golden to sync up and do the cutover
    Thanks
    Naveen.
    Edited by: 949870 on Jul 30, 2012 4:53 PM

  • How to install oracle 11g and 10g on same linux server.

    how can i install oracle 10g and 11g on same linux server ????
    10g database is already installed , i want to installed 11g on the same machine. How can i do this???

    Hi;
    how can i install oracle 10g and 11g on same linux server ????
    10g database is already installed , i want to installed 11g on the same machine. How can i do this???You may go wiht different mount point like to create /oracle11g and /oracle10g and you can choose related path for your installation.
    Please read:
    Managing multiple oracle home
    http://docs.oracle.com/cd/B12037_01/em.101/b12140/3_oui_oracle_homes.htm#i1005615
    http://docs.oracle.com/cd/B12037_01/em.101/b12140/3_oui_oracle_homes.htm
    Regard
    Helios

  • How to Select from Oracle 8i database and insert into Sql Server 2005 datab

    Hi how to Select from Oracle 8i and insert into Sql Server 2005.
    Source db as Oracle 8i
    Target db as Sql Server 2005.
    I need to select one table data from Oracle 8i & insert into Sql Server 2005
    Thanks

    Thanks Khan..
    Is there is any query (OPENQUERY) available for that?
    Regards..

Maybe you are looking for

  • Repeating   group variables  on the header of a  second page.

    In BI Publisher Desktop 11.1.1.6 I have something similar to a customer and a list of invoices. On each page I need the customer info at the top and also some customer info printed at the bottom of the page. The customer is a group and I do a page br

  • Payment program rules for selecting Bank accounts

    Hi !! Anyone that know the rules for payment program to select Vendor Bank accounts from XK03 when - more then one row exist in Vendor bank accounts (XK03) and - Field Partner bank type is "blank" (LFBK-BVTYP) for all bank account rows The rules seem

  • End-User Agreement before opening a pdf file

    Hi, is it possible to have an end-user agreement type thing come up when a user opens a pdf file which will only open the document if they accept the agreement? How would i do that?

  • Ipod nano only working in hold position

    recently my friends ipod nano only turns on when it is in the hold position but will not turn on when it's not on hold. It is also only recognized in itunes when it is in hold position. it's basically something I just store music on right now. Is the

  • Oracle database diff issue

    I get the following errors when clicking on an object in the diff report: Unable to compare objects. Ensure that you have the required permissions. You must own the objects or have select_catalog_role. But the user of the specified connections in the