CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2000
    Location
    Florida, US
    Posts
    2

    MTS & Oracle database

    Hi,

    I am using MTS for middle tier where my DLLs are running. These DLLs insert
    data into oracle database with help of PL/SQL procedures. The data transfer
    is going pretty slow between MTS and Oracle database.

    Does anybody know any kind of tool through which I can find the byte transfer
    rate between these two tiers and thus find out the reason for this slowness ?

    Thanks
    Praveen


  2. #2
    Guest

    Re: MTS & Oracle database

    Hello,

    Try to make Insert Through SQL DML

    and use OLE/DB provider for ORACLE, with ADO. Some thing like this

    Conn.BeginTrans
    Conn.Execute("Insert into TAble Values(" ")")
    conn.commitTrans

    it'll automatically get faster.
    beceause if u are using PL/SQL Stored Procedure, u'r Component has to make request to u'r ORACLE Server and Receive The Result.
    So try to do it directly.
    if u'r problem is not solved by this solution then acknowledge be at:

    [email protected]



    Best of Luck

    Bye

    Vivek Singh






Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured