Udl test not possible to test Oracle OLEDB provider

Hi,
I have some issue to connect to my Oracle database.
My environment is Windows Server 2008 R2, with Oracle server 11G.
To test my Oracle OLEDB provider, I setup a udl test as described follow:
1- Creation a file text document on server desktop : test.txt
2- File extension change to .udl : test.udl
3- launch of test.udl
When I launched the test.udl, The Data Link Properties dialog box is not opened. A windows explorer is opened.
Anybody knows why I am not able to launch the data link properties dialog box in my environment ?
Thank you for your help
Regards,
Sandrine

Error found... issue resolved.
Basically got the sld connections tested. This error resulted because the default abap client in CTC was wrongly set.
Regards.
Mohamamd

Similar Messages

  • Oracle connect failed on x64 and IA64 platform via Oracle OLEDB provider

    Hi everyone,
    I installed SQL Sever on x64 and IA64 machine, and Create a database via Oracle datasource. I can connect the datasource via OLEDB and .Net provider successfully on x86 machine. But failed to connect the Oracle datasource on x64 and IA64.
    Following is the error messgae:
    1) Install 64 bit build on x64 machine:
    Error message: Test connection failed because of an error in initializing provider. ORA-06413: Connection not open.
    2) Install 32 bit build on x64 machine:
    Error message: Test connection failed because of an error in initializing provider. Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation.
    I know there is a know bug on c:\Program Files (x86)\... with Oracle provider. And some one has given a workarround method that I should move my my application out of the the folder path which includes parentheses. But it really is mess method for SQL Server (That is my application)......
    Is there any other workarround method? Or when will Oracle fix this bug?
    Thanks^_^
    Lindsay

    Is 10204 available for x64 and IA64. It is said that there is only 10204 for x86 machine, right?
    I downloaded 10203 for IA64 machine and tested connection on SQL Server with Oracle datasource via Oracle OLEDB provider, and got the following error (The data source is Oracle92 installed on another machine):
    Test connection failed because of an error in initializing provider. Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation.
    Could you please tell me what's wrong with it?
    Thanks
    Lindsay
    Message was edited by:
    lindsaywang

  • Append hint + ADO + Oracle OleDB Provider

    Hi everybody!
    This is my first post here in this great forum! ;-)
    I have a problem using Append hint with Oracle OleDB Provider and I've been searching internet for an answer without any luck.
    I'm trying to use Append hint with ADO + Oracle OleDB Provider (OraOLEDB.Oracle.1), like in the SQL below:
    INSERT /*+APPEND*/
    INTO my_table(field1, field2, field3)
    SELECT 0 field1, v.field2, v.field3)
    FROM my_second_table v
    The problem: Oracle is still creting log for this INSERT (It is working like there was no Append hint).
    If I use the same SQL statement with Microsoft Ole DB Provider for Oracle, the Append hint works as expected (log is not created), but doesn't work at all with Oracle DB Provider.
    Trace shows me that the SQL sentence is ok (the append hint is there!).
    I've tried Oracle servers 9.2 and/or 10g, and the problem is the same.
    Question: Does Append hint work with Oracle OleDB Provider? If yes, why it is not working? Something related with connection properties?
    Any help will be much appreciated!
    Thanks in advance.
    Alexandre Machado

    user8010279 wrote:
    Hi Solomon, thanks for you answer.
    Is the same SQL against the same database, with the same program, using ADO + OleDB Provider.
    The table is in NOLOGGING mode.
    When I use Microsoft OleDB Provider for Oracle there is no log creation. Then I disconnect and reconnect to the same server/database, using Oracle OleDB Provider. Then I execute the same SQL and.... there IS log creation, meaning that in that scenario, append hint is being ignored. I can't figure out WHY!!! :-(
    Alexandre,
    I'm not sure what you mean by "there is log creation". In general you need to distinguish between UNDO and REDO generation. A direct-path insert (APPEND hint) doesn't generate undo but still can generate redo, depending on the ARCHIVELOG / FORCE LOGGING mode of the tablespace resp. database and the LOGGING/NOLOGGING attribute of the table.
    Note that in case indexes exist on the table there will always be undo and therefore redo generation for the index maintenance as part of the direct-path insert.
    You should check V$SESSION (SQL_ID in 10g, SQL_ADDRESS + SQL_HASH_VALUE in pre-10g) and V$SQL in the database to double check if the SQL passed by the Oracle OLEDB Provider actually contains the APPEND hint in case the INSERT actually generates UNDO (which is the indicator that shows you if the direct-path insert is used or not). Whether it generates REDO is - as already mentioned - depending on other factors.
    So the question is how have you determined if the direct-path insert mode has been used or not?
    The simplest approach to test if direct-path insert mode is used or not is to issue a query on the object inserted into after the insert before committing the transaction. If it fails with "ORA-12838: cannot read/modify an object after modifying it in parallel" then you successfully inserted using direct-path insert.
    Note that there a number of restrictions that prevent the direct-path insert from happening, in those cases the APPEND hint will be silently ignored, e.g. enabled triggers, foreign keys on the table. A quite comprehensive list of restrictions is listed in the manuals here:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28313/usingpe.htm#CACEJACE
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Oracle OleDB Provider VS MS OleDB Provider

    I am using Stored Procedures in Oracle Packages and Microsoft ADO for data access.
    My Stored Procedure use a Ref Cursor output parameter to make data available to ADO's recordsets.
    A big difference in network traffic is found between "Microsoft OLEDB Provider for Oracle" and "Oracle OLEDB Provider" (the native driver provided by Oracle).
    The main issue :
    <<Oracle OLEDB Provider>>
    1) A stored procedure is put into an empty package for testing and returning no row, the result is 4KB downstream traffic.
    2) When the SAME stored procedure is put into a large package (a package that already contained 30 other stored procedures, > 1000 lines codes), the result is 70KB downstream traffic for same call that return no row.
    <<Microsoft OLEDB Provider>>
    1) and 2) both use approximately 4KB downstream traffic.
    However, for a query that return large number of rows (~2000 rows), Oracle OLEDB Provider used 143KB but MS OLEDB Provider used 400KB downstream.
    The behaviours for upstream are similar.
    My application is required utilize limited bandwidth, the the strange behaviour of the Oracle OLEDB Provider make my development of "Packaged" Stored Procedures a big problem.
    Does anyone know if there are any tricky on the Oracle OLEDB Provider? Please advice, thanks in advance.
    Regards,
    Jeff

    Sounds like the bug 2597418 that was fixed and released in 9.2.0.2 of Oracle OLEDB Provider

  • Oracle OLEDB PRovider with ASP

    hi,
    Can anyone provide me a piece of code which demonstrates how to call an Oracle sp from asp using the Oracle OLEDB provider.
    I would also appreciate if the Oracle package code could be provided too, since with the Provider we have to have a different code for the stored procedure (Ref cursor..??)
    I have been successfully connecting using the Microsoft ODBC Driver, but looks like it has some big time bugs in it which causes our server to hang and a dllhost.exe to consume large amounts of database memory.
    Anybody can help me with that?
    Many Thanks,
    Harshad.

    Harshad,
    Oracle OLEDB samples are available at
    http://otn.oracle.com/sample_code/tech/windows/ole_db/content.html
    URL.
    "Returning multiple recordsets from a stored procedure" sample demonstrates
    how REF cursors are returned from a Stored Procedure (contained in a DB package).
    This sample is a stand alone application and not an ASP program, but the same code
    can be helpful for ASP too.
    Regards
    Jagriti

  • Oracle OLEDB Provider

    Good Afternoon:
    I am having trouble running sql thru VB with the
    Oracle OLEDB provider. The sql runs fine with the
    MSDAORA provider. My error is 'missing right parenthesis'.
    Here is the sql:
    SELECT b.DIVISION_ID KEY, b.PLAN_TYPE PLAN, 900000 FS_CODE,
    SUM (CASE WHEN NOT (d.PHARMACY_NETWORK_CODE IN ('9003','9004','9012') and b.CORPORATION_ID NOT IN ('U120','U180'))
    then a.NET_CHECK_DUE_AMT/c.COMPLETION_FACTOR else 0 end) IN_PAY,
    TRUNC (a.SERVICE_DATE,'YEAR') INCURRED_YEAR, SYSDATE
    From PHARMACY_FACT a, PLAN b, COMPLETION_FACTOR c, PHARMACY_CLAIM_GROUPING d
    Where a.PLAN_KEY = b.PLAN_KEY
    AND a.PHARMACY_CLAIM_GROUPING_KEY = d.PHARMACY_CLAIM_GROUPING_KEY
    AND c.FINANCIAL_SERVICE_SUBGROUP = 900000
    AND c.MONTH_INTERVAL = MONTHS_BETWEEN(TRUNC(TO_DATE('09/30/2003','MM/DD/YYYY'),'month'), TRUNC(a.SERVICE_DATE,'MONTH'))
    AND a.SERVICE_DATE BETWEEN TO_DATE('01/01/2000','MM/DD/YYYY') AND TO_DATE('07/31/2003','MM/DD/YYYY')
    AND a.PAYMENT_DATE BETWEEN TO_DATE('01/01/2000','MM/DD/YYYY') AND TO_DATE('09/20/2003','MM/DD/YYYY')
    AND b.PLAN_NBR NOT IN('R1','V1','V2') AND b.CORPORATION_ID IN('F275', 'P475')
    GROUP BY b.DIVISION_ID, b.PLAN_TYPE, TRUNC(SERVICE_DATE,'YEAR')
    When I comment out the case statement, sql runs.
    I tried putting parens around other parts of the
    statement but to no avail.
    Any help would be greatly appreciated.
    Thanks,
    Mike

    Sounds like the bug 2597418 that was fixed and released in 9.2.0.2 of Oracle OLEDB Provider

  • Multiple Recordsets and the Oracle OleDB Provider

    We are trying to return multiple recordsets from an Oracle SP through the Oracle oledb provider using VB. First of all, is this possible and is there any example code out there. Having trouble finding some info on this.
    Thanks

    After reading install guide I figured out waht might be the problem.
    I put OLEDB install into the same home (ora81).
    It was suppose to go into different home directory (ora92).
    Also, OLEDB is one of few components which can't exist in more then one
    home dir on single machine. Installer knows that, and skips install of
    OLEDB provider itself. So in my case I had to first uninstall OLEDB provider 8.1.7
    and then install OLEDB provider 9.2
    Thanks,
    ...dejan

  • Oracle.Oledb provider returning improper out-put

    Dear All,
    Need your help in below issue.
    I have SSIS package which pull data from Oracle to SQL Server.
    Currently I have used Oracle.Oledb provider for the same, but it is giving me improper result.
    I check on oracle end count for that table was 26000 and when I run the same query through SSIS it shows 0 rows.
    The preview of the query is showing 0 as output.
    but when I tried the same using Microsoft OLEDB provider for Oracle it giving me proper out-put

    Hi Sushant,
    UseSessionFormat - specifies whether to use the default NLS session formats or let OraOLEDB override some of these formats for the duration of the session. Valid values are 0 (FALSE) and 1 (TRUE). The default is FALSE which lets OraOLEDB override some of
    the default NLS session formats. If the value is TRUE, OraOLEDB uses the default NLS session formats.
    Setting UseSessionFormat=true in the connection string will result in the provider using the session format specified by the client install, which should resolve this issue. The following connection string for the connection like below:
    Data Source=DataSourceNameHere;User ID=UserIDHere;Password=PasswordHere;Provider=OraOLEDB.Oracle.1;Persist Security Info=True;UseSessionFormat=True;
    Reference:
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2012/01/20/every-bug-is-a-microsoft-bug-until-proven-otherwise.aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Differences between Oracle OLEDB Provider & Microsoft version

    I am trying to connect to an Oracle database from a SQL Server SSIS package. When I use the Microsoft OLEDB Provider for Oracle (MSDAORA) the connection manager in the package sees a full list of the tables in the Oracle database but when I use Oracle's own OLEDB provider (Oracle.OLEDB.1) I see a much smaller list. I cannot see anything different about the tables that Oracle's Oracle provider fails to see. Has anyone come across this phenomenon before ? Are there some table name characters or data types that the Oracle provider objects to ?

    Not very likely.
    One possible explanation is they query different levels of the datadictionary.
    Sometimes the ALL_ level is queried, sometimes the DBA_ level, sometimes the USER_ level.
    At least you need to ascertain whether you are using the same Oracle account in both drivers. This can also make a difference.
    Anyhow: usually the Oracle driver implements way more functionality compared to the Microsoft driver, so the Oracle driver is to be preferred anyway.
    And probably the Oracle drivers results are correct (one really should use the ALL_ level instead of the DBA_ level).
    Sybrand Bakker
    Senior Oracle DBA

  • PLS HELP - Column value missing when calling procedure from Oracle OLEDB provider

    When calling procedure 'sp_a(?,?,?)' from SQL_PLUS and using
    DBMS.OUTPUT to print the result
    It returns a result set as
    C0, C1, C2
    But When I call the same procedure 'sp_a(?,?,?)' with same
    parameter value from MS VB6,
    It returns the a result set as
    C0, Null,C2
    The 2nd value became Null.
    Any ideas?
    Please Help.

    See http://oracle.ittoolbox.com/groups/technical-functional/oracle-apps-l/forms-personalization-execute-a-procedure-1778674

  • Is it possible to test a text in a Oracle ebs form ...?plz help me..

    Hello,
    Is it possible to test a text in a Oracle ebs form ...?
    If possible then please tell me. It is working in Http /web based application.
    and table test is possible.. in Oracle ebs form?. Is it possible to capture a data from a text field and make comparison to check it. Though i want it all to be done in Oracle Ebs forms .
    Please help me..
    Regards
    Srinivas
    Edited by: 850579 on Apr 26, 2011 7:30 AM

    Hi,
    Thank u Alex i have tested with object test its working. I have got the result. can u tell me is it possible to insert table test in oracle ebs forms.
    can we insert iteration in the middle of the script.
    Regards
    Srinivas

  • Sql * plus 9 is not able to connect oracle 7 database

    Today I have installed oracle 9i release 2 and found that the sql * plus provided with is unable to connect oracle database version 7. But before that we were able to connect the oracle 7 database well.
    Any one having a clue on that...?
    Is it a product bug...?
    If so then please provide me some alternative solution clue or patch download link. Please remember in any condition currently it is not possible discard my oracle 7 database.
    With Regards.
    Soumen.

    No, it is not a bug. You just cannot connect with Ora9i R2 SQL*Plus to an Ora7 database.You cannot create a DB link between the two database either, if you are planning on doing that.
    A solution is to install Ora8 client, which can connect to both Ora9 and Ora7 database (but a db link will stil be impossible).

  • SOA Suite Components on JBoss - not possible?

    Hi,
    I am currently evaluating the Oracle SOA products for a new project.
    We would like to use JBoss instead of OC4J and use Oracle BPEL Process Manager, Oracle ESB and Oracle Web Service Manager.
    Running on OC4J is not possible, especially since Oracle will replace it with Weblogic in the next release.
    What I have found are instructions for installing BPEL PM and the whole SOA Suite on JBoss.
    These are VERY COMPLEX and CUMBERSOME (two patches have to be installed semi-manually) installations and I have not been able to make them work in my first attempt.
    For ESB and WSM I have not seen any information at all.
    We have not bought the products yet and I have to say that this is a very bad start in the evaluation of product quality and support quality.
    Please clarify if Oracle's support for alternative application servers only exists in the data sheets or also in reality.
    If we purchase the components, will we have access to other installables that run directly on JBoss?
    If anyone has good experience with Oracle SOA on JBoss I'd be glad to know.
    Kind Regards
    Fabian

    Fabian,
    Oracle's support for other applications servers such as JBoss, Websphere, WebLogic, etc is more a sales story than something that people do in practice. Oracle doesn't want to lose a sale because a customer has a strategic alliance with a particular application server. So they support SOA Suite on the main competitors. Licensing is a dark art and I couldn't give you a 100% guarantee on how SOA Suite is sold but to get SOA Suite you need to license enterprise Application Server. SOA Suite is on top of this. If you turn it around if you buy SOA suite you get Oracle Application Server enterprise edition (includes OC4J) for free.
    So if you are looking at using JBoss for a cost cutting exercise I don't believe the licensing at Oracle will help you.
    The install for SOA Suite is the install for ESM + WSM, there is no separate install for these products for thrid party application servers. So you topology is not as flexible as it could be is you used Oracle Application Server.
    Your proposed option of SOA Suite (ESB, WSM) is an option using the document provided in previous post.
    When I say Oracle Application Server I mean Oracles existing Application Server, Not Web Logic. There is currently a progression of porting the OC4J apps to Weg Logic, this should be completed when 11g arrives. There are a few version release before this happens, each one providing more functionality.
    If I was you I would understand the price of SOA Suite on JBoss as apposed to Oracle Application Server. If the price comes close then I would go with using the Oracle Application Server. If you want to use the ESB, I would go with Aqua Logic installed on WLS. Currently SOA Suite is not certified on the 10.3 release hence keep it on the Oracle Application Server. There will be a migration path to 11g next year.
    cheers
    James

  • OCI vs OO4O vs Oracle OLEDB vs MS Oracle OLEDB

    I'm developing an application that needs to get database schema information (Tables, Columns, Stored Procedures, Views, etc.) as well as execute SQL statements against an Oracle database. From a developer's perspective, is their an advantage of using one of the above listed technologies over the other?
    Here's a brief outline of my experience with each thus far:
    I've briefly worked with OO4O and it doesn't seem to allow me to browse the schema objects unless I know the name of the schema.
    The MSOLEDB provider for Oracle is very, very slow...
    The Oracle OLEDB provider seems to work OK.
    I've not used the OCCI method.
    Any comments would be appreciated.

    I'm developing an application that needs to get database schema information (Tables, Columns, Stored Procedures, Views, etc.) as well as execute SQL statements against an Oracle database. From a developer's perspective, is their an advantage of using one of the above listed technologies over the other? OCI is the lowest programmatic layer, and the most complicated.
    All other layers are built using OCI.
    The choice depends on user's requirement - ease of use, speed, functionality etc etc.
    Here's a brief outline of my experience with each thus far:
    I've briefly worked with OO4O and it doesn't seem to allow me to browse the schema objects unless I know the name of the schema.
    The MSOLEDB provider for Oracle is very, very slow...
    The Oracle OLEDB provider seems to work OK.
    I've not used the OCCI method.
    Any comments would be appreciated.

  • No luck installing Oracle OLEDB 9.2 on WinXP

    I've bee heer with the same subject. Got an advice to uninstall Oracle OLEDB first and repeat installation. I've tried several times using full Oracle Client Installer as well as OLEDB version of Installer. Each time my list of OLEDB providers does not include Oracle OLEDB provider. I even updated my MDAC to 2.7 SP1 Refresh but results are the same.
    Does anyone have a clue what should I do ?
    Thank you.

    Don,
    If your %windir%\system32\regsvr32.exe works fine and your file system is NTFS, you may want to try the following. (Curtesy of Helena Bennett Kirksey in this forum. The instructions should be originally from Oracle.)
    1. Log on to Windows as a user with Administration privileges.
    2. Launch Windows Explorer from the Start Menu and navigate to the ORACLE_HOME folder. This is typically the "Ora92" folder under the "Oracle" folder (i.e. D:\Oracle\Ora92).
    3. Right-click on the ORACLE_HOME folder and choose the "Properties" option from the drop down list. A "Properties" window should appear.
    4. Click on the "Security" tab of the "Properties" window.
    5. Click on the "Authenticated Users" item in the "Name" or "Group or user names" list.
    6. Uncheck the "Read and Execute" box in the "Permissions" or "Permissions for Authenticated Users" list under the "Allow" column.
    7. Re-check the "Read and Execute" box under the "Allow" column (this is the box you just unchecked).
    8. Click the "Advanced" button and in the "Permission Entries" list make sure you see the "Authenticated Users" listed there with:
    Permission = Read & Execute
    Apply To = This folder, subfolders and files
    Sinclair

Maybe you are looking for

  • SP2, ORA-01400:

    Good morning All, While loading data, I got following messages: SP2-0734: unknown command beginning ORA-01400: cannot insert NULL into What difference between SP2 and ORA? Any help? Thanks in advance, ~NYorker

  • HT204370 If I order a HD movie from Itunes, how do I get it to play on a projector?

    If I order a HD movie from Itunes, how do I get it to play on a projector?

  • Memory Leak in ArrayList ?

    Dear all, When I went thru the implementation of ArrayList, it just appeared to me that there can be a memory leak in the ensureCapacity method, which allocated new memory... The code is as below. *Increases the capacity of this <tt>ArrayList</tt> in

  • Oracle HRMS R12 training from Oracle University

    Oracle HRMS R12 training from Oracle University iWare Logic provides "Oracle Apps Training" and Certification in Oracle HRMS R12 in association with Oracle University. Oracle HRMS Training and Certification topics R12 E-Business Suite Essentials for

  • Incomplete BPR

    I want to define my business processes in SOLAR01. I have an implementation project with the logical component to a ERP 4.6C system attached. In SOLAR01 I go to the "Business Scenario" and then the "structure" tab. I use the field help to look for th