Can not see Oracle ODBC driver in Ms SQL Server 2007

Hi
I am trying to export an ms sql server table to Oracle using the Ms SQL Server 2007 export wizard and the only driver I found in the list is Microsoft OLEDB Provider for Oracle.
I already installed Oracle client and I addedd an ODBC conenction of the datasources Why can I not see the Oracle ODBC driver?

Which version of Oracle and what kind of Client Install
Are you sure you did the full Client Install which will have ODBC ?
Execute odbcad32 and look under Drivers Tab for Oracle ODBC Driver

Similar Messages

  • Could not see Oracle ODBC driver in Windows ODBC

    Hi,
    I have install the runtime version followed by custom->Windows Oracle Interface successfully.
    Any other steps that i have missed out or lack off in installing the Oracle ODBC driver?
    Thanks in advance.
    Tony

    It's not a plot, but it's sneaky.
    I had the same problem when I installed Oracle 10 client. There is a similar issue on the Oracle forum (Re: ODBC Driver Install Problem. Basically, what was happening is a line had been entered in the ODBC Drivers file that contains "@=". Anything following that line is NOT displayed in the ODBC Admin list.
    To fix this problem, open Regedit and export the "HKLM\SOFTWARE\ODBC\ODBCINST.INI\ODBC Drivers" key to a file. Edit the file to remove the line "@=" and save the file. Delete the registry key, and merge in your updated file.

  • New Domain Profile can't see Oracle ODBC Driver

    Has anyone ever moved a desktop to a new domain? If so, have you ever run across the new domain profile not being able to install software that edits the registry? Here's what I did:
    1. Changed TCP/IP settings to DHCP on desktop.
    2. Moved cable in network room from old hub to new hub.
    3. Joined new domain on desktop.
    4. Rebooted the machine and logged in with domain credentials.
    5. Added domain account to local machine administrators group.
    6. Logged off and logged back on with new privilages.
    Here's where it got weird. I then tried to test a VPN connection to an external data warehouse. The VPN connected properly, but when I attempted to make a connection to the database (through Crystal Reports), it bombed and said the ODBC driver wasn't installed (it was under the old profile). So, thinking I was smart, I grabbed the Oracle 9i client disk and reinstalled the client to get the ODBC driver back.
    At which point, I received an error stating I didn't have permission to write a key in the registry. This is semi-funny, since I was then able to re-install JInitiator, which does write to the registry, with no problem. Any suggestions??????
    Glenn McWilson
    Workforce Development Council of Seattle-King County
    [email protected]
    206.448.0474

    A few simple things to check: printer powered on? USB cable OK? Is it connected, as well?
    If it doesn't automatically show up in the printer setup utility, try choosing "More Printers" and then select Epson USB. See if it shows up then.

  • Y ? i can not see my DVD drive in favorites, on the left side. TQ.

    y ? i can not see my DVD drive in favorites, on the left side.
    TQ.

    On the left side of what, the Finder?
    Open Finder Preferences, click on Sidebar and see if CDs & DVDs is selected under devices.

  • Can not load oracle db driver

    After load the following code and I got an error message"can not load oracle db driver"
    can you help me? thanks
    import java.io.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class DBPhoneLookup extends HttpServlet {
      public void doGet(HttpServletRequest req, HttpServletResponse res)
                                   throws ServletException, IOException {
        Connection con = null;
        Statement stmt = null;
        ResultSet rs = null;
        res.setContentType("text/html");
        PrintWriter out = res.getWriter();
        try {
          // Load (and therefore register) the Oracle Driver
          Class.forName("oracle.jdbc.driver.OracleDriver");
          // Get a Connection to the database
          con = DriverManager.getConnection(
            "jdbc:oracle:thin:@dbhost:1528:ORCL", "user", "passwd");
          // Create a Statement object
          stmt = con.createStatement();
          // Execute an SQL query, get a ResultSet
          rs = stmt.executeQuery("SELECT NAME, PHONE FROM EMPLOYEES");
          // Display the result set as a list
          out.println("<HTML><HEAD><TITLE>Phonebook</TITLE></HEAD>");
          out.println("<BODY>");
          out.println("<UL>");
          while(rs.next()) {
            out.println("<LI>" + rs.getString("name") + " " + rs.getString("phone")); 
          out.println("</UL>");
          out.println("</BODY></HTML>");
        catch(ClassNotFoundException e) {
          out.println("Couldn't load database driver: " + e.getMessage());
        catch(SQLException e) {
          out.println("SQLException caught: " + e.getMessage());
        finally {
          // Always close the database connection.
          try {
            if (con != null) con.close();
          catch (SQLException ignored) { }
    }

    Hi ,
    In first look it seems a classpath problem. Means that your DB driver is not in the current class path .
    But if it is not that the try to find the exact exception for that use exception's printstacktrace() and get the exception message . So in the following block of of code put e.printstacktrace()
    catch(ClassNotFoundException e) {
    out.println("Couldn't load database driver: " + e.getMessage());
    }

  • Using SQLBindParameter, SQLPrepare and SQLExecute to insert a Decimal(5,3) type fails with SQLSTATE: 22003 using ODBC Driver 11 for SQL Server

    Hello everyone.
    I'm using SQL Server 2014, and writting on some C++ app to query and modify the database. I use the ODBC API.
    I'm stuck on inserting an SQL_NUMERIC_STRUCT value into the database, if the corresponding database-column has a scale set.
    For test-purposes: I have a Table named 'decTable' that has a column 'id' (integer) and a column 'dec' (decimal(5,3))
    In the code I basically do:
    1. Connect to the DB, get the handles, etc.
    2. Use SQLBindParameter to bind a SQL_NUMERIC_STRUCT to a query with parameter markers. Note that I do include the information about precision and scale, something like: SQLBindParameter(hstmt, 2, SQL_PARAM_INPUT, SQL_C_NUMERIC, SQL_NUMERIC, 5, 3, &numStr,
    sizeof(cbNum), &cbNum);
    3. Prepare a Statement to insert values, something like: SQLPrepare(hstmt, L"INSERT INTO decTable (id, dec) values(?, ?)", SQL_NTS);
    4. Set some valid data on the SQL_NUMERIC_STRUCT
    5. Call SQLExecute to execute. But now I get the error:
    SQLSTATE: 22003; nativeErr: 0 Msg: [Microsoft][ODBC Driver 11 for SQL Server]Numeric value out of range
    I dont get it what I am doing wrong. The same code works fine against IBM DB2 and MySql. I also have no problems reading a SQL_NUMERIC_STRUCT using SQLBindCol(..) and the various SQLSetDescField to define the scale and precision.
    Is there a problem in the ODBC Driver of the SQL Server 2014?
    For completeness, here is a working c++ example:
    // InsertNumTest.cpp
    // create database using:
    create a table decTable with an id and a decimal(5,3) column:
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE[dbo].[decTable](
    [id][int] NOT NULL,
    [dec][decimal](5, 3) NULL,
    CONSTRAINT[PK_decTable] PRIMARY KEY CLUSTERED
    [id] ASC
    )WITH(PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON[PRIMARY]
    ) ON[PRIMARY]
    GO
    // Then create an odbc DSN entry that can be used:
    #define DSN L"exOdbc_SqlServer_2014"
    #define USER L"exodbc"
    #define PASS L"testexodbc"
    // system
    #include <iostream>
    #include <tchar.h>
    #include <windows.h>
    // odbc-things
    #include <sql.h>
    #include <sqlext.h>
    #include <sqlucode.h>
    void printErrors(SQLSMALLINT handleType, SQLHANDLE h)
        SQLSMALLINT recNr = 1;
        SQLRETURN ret = SQL_SUCCESS;
        SQLSMALLINT cb = 0;
        SQLWCHAR sqlState[5 + 1];
        SQLINTEGER nativeErr;
        SQLWCHAR msg[SQL_MAX_MESSAGE_LENGTH + 1];
        while (ret == SQL_SUCCESS || ret == SQL_SUCCESS_WITH_INFO)
            msg[0] = 0;
            ret = SQLGetDiagRec(handleType, h, recNr, sqlState, &nativeErr, msg, SQL_MAX_MESSAGE_LENGTH + 1, &cb);
            if (ret == SQL_SUCCESS || ret == SQL_SUCCESS_WITH_INFO)
                std::wcout << L"SQLSTATE: " << sqlState << L"; nativeErr: " << nativeErr << L" Msg: " << msg << std::endl;
            ++recNr;
    void printErrorsAndAbort(SQLSMALLINT handleType, SQLHANDLE h)
        printErrors(handleType, h);
        getchar();
        abort();
    int _tmain(int argc, _TCHAR* argv[])
        SQLHENV henv = SQL_NULL_HENV;
        SQLHDBC hdbc = SQL_NULL_HDBC;
        SQLHSTMT hstmt = SQL_NULL_HSTMT;
        SQLHDESC hdesc = SQL_NULL_HDESC;
        SQLRETURN ret = 0;
        // Connect to DB
        ret = SQLAllocHandle(SQL_HANDLE_ENV, NULL, &henv);
        ret = SQLSetEnvAttr(henv, SQL_ATTR_ODBC_VERSION, (SQLPOINTER)SQL_OV_ODBC3, SQL_IS_INTEGER);
        ret = SQLAllocHandle(SQL_HANDLE_DBC, henv, &hdbc);
        ret = SQLConnect(hdbc, (SQLWCHAR*)DSN, SQL_NTS, USER, SQL_NTS, PASS, SQL_NTS);
        if (!SQL_SUCCEEDED(ret))
            printErrors(SQL_HANDLE_DBC, hdbc);
            getchar();
            return -1;
        ret = SQLAllocHandle(SQL_HANDLE_STMT, hdbc, &hstmt);
        // Bind id as parameter
        SQLINTEGER id = 0;
        SQLINTEGER cbId = 0;
        ret = SQLBindParameter(hstmt, 1, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &id, sizeof(id), &cbId);
        if (!SQL_SUCCEEDED(ret))
            printErrorsAndAbort(SQL_HANDLE_STMT, hstmt);
        // Bind numStr as Insert-parameter
        SQL_NUMERIC_STRUCT numStr;
        ZeroMemory(&numStr, sizeof(numStr));
        SQLINTEGER cbNum = 0;
        ret = SQLBindParameter(hstmt, 2, SQL_PARAM_INPUT, SQL_C_NUMERIC, SQL_NUMERIC, 5, 3, &numStr, sizeof(cbNum), &cbNum);
        if (!SQL_SUCCEEDED(ret))
            printErrorsAndAbort(SQL_HANDLE_STMT, hstmt);
        // Prepare statement
        ret = SQLPrepare(hstmt, L"INSERT INTO decTable (id, dec) values(?, ?)", SQL_NTS);
        if (!SQL_SUCCEEDED(ret))
            printErrorsAndAbort(SQL_HANDLE_STMT, hstmt);
        // Set some data and execute
        id = 1;
        SQLINTEGER iVal = 12345;
        memcpy(numStr.val, &iVal, sizeof(iVal));
        numStr.precision = 5;
        numStr.scale = 3;
        numStr.sign = 1;
        ret = SQLExecute(hstmt);
        if (!SQL_SUCCEEDED(ret))
            printErrorsAndAbort(SQL_HANDLE_STMT, hstmt);
        getchar();
        return 0;

    This post might help:
    http://msdn.developer-works.com/article/12639498/SQL_C_NUMERIC+data+incorrect+after+insert
    If this is no solution try increasing the decimale number on the SQL server table, if you stille have the same problem after that change the column to a nvarchar and see the actual value that is put through the ODBC connector for SQL.

  • Can't see the odbc driver in windows 7

    hallo everybody
    I've just installed the oracle instant client 11.2.0.2.0 on a windows 7 machine. when i execute the file odbc_install the returned prompt is "Oracle ODBC Driver is installed successfully.". then when i go to system -> administration -> data sources (odbc) i can't see no oracle odbc driver. what wrong?
    Edited by: 906540 on 07.01.2012 11:37

    Great you have figured it out finally. Just thought you should know that there is a bug in 11gR2 client and because of that Oracle driver version is shown as 11.1.0.7 instead of 11.2.0.2. This can be confusing 6 months or a year later down the road if you wanted to go back and upgrade your client to, let's say' 12g. To fix this, there is a patch available from Oracle metalink, patch id is p11731183 for 32bit and p11731184 for 64bit windows. This bug is mentioned in 1308617.1

  • Can not see TC hard driver using istat pro or activity monitor

    I upgraded the firmware of TC to 7.4.1 yesterday, but I found the transfer speed was too slow and I noticed that I can not see the TC condition using istat pro or activity monitor. So I downgraded the firmware to 7.3.2. Now the transfer speed is fine but I still can not see the TC hard driver in the istat pro or activity monitor.(but I can access files in the TC hard driver normally)
    Can anyone help?

    I couldn't see my TC hard drive in iStat pro until I actually mounted the TC's Airport Disk using the Finder 'Connect to server' dialog. iStat Pro only gives me Used and Free GB for my Airport Disk. My TC is an old 500GB upgraded to 1TB running 7.4.2 firmware.
    As to checking the temperature, I'd be interested too. I have a digital thermometer taped to the top surface of the TC and it is reading 46C with an ambient of 17C. The TC sits on top of a cupboard with clear space around, and I am resting it on a spacer which lifts it 12mm clear of the cupboard to give it the best ventilation. The TC has been doing a long (08:00 - 21:00) Time Machine backup today.
    Sayling

  • P55A-GD65 Can not see Sata III drive

    I can not get the bios to see my 250gig sata III. I have it connected to sata#7 white connector.
    I tried to first see it, no go. I am trying to fresh install w7 hp upgrade 64bit to my new sata III drive. I can not find the drive. I do not know if it is bad or what?
    I set Integrated peripherals- sata 6g/s controller mode to ahci, and in on-chip ata devices raid mode set it to ahci. I tried to install w7 from disc. It just Says I have made a hardware change. Try to do a repair start or start as normal. Then said my boot sector was messed up. I pressed  reset and got into bios and set it all back to ide mode.
    It would not start normal. But from page it says try w7 disc etc. I told it to start windows normally it did, I have rebooted So I guess it fixed the boot sector..
    I am not sure what to do. I can not find the drive, and no place in my bios can I find the sata 7-8 connectors. they are listed as 1-6 and 9.. everything skips 7-8. I am in w7 now. I could do the reg tweak. I want to fresh install w7 upgrade on my new sata III drive. then nuke this sata II and make it a storage drive..
    Maybe I need to press a key with w7 disc in  during restart. I can not figure out how to make Let me reinstall w7. I did press F6 but I did not know what to do. Upgrading from xp was pretty easy. This sata III and  mobo and w7 is a head ake. It is no simple instructions no place to make this stuff work right. Ha ha the manual is no help either.
    I do not know if maybe the drive is bad or not. I never had to do this stuff in bios just to install a drive, and then controllers 7-8 show no place. I do not know what to do..

    Follow up.
    My cam batteries are acting up. Sorry not better photo'. The second photo. I changed out my speakers set up etc, and its photo was with our cam corder, it has no flash.. The top 5.25 bay filter is a test. I need better materials to make a better 1, but it works well, not so pretty tho. If I relax the pantyhose, It looks a lot better, is black. You can not see through it, but less air flow...
    The blower box mod I made from a gutted opt drive, uses the rest of the 5.25 bay cage as the lower sides of the box. The top side, the actual gutted opt drive, I used my zig saw, cut along the sides from the top and back end. So it was free to bend down. You can not see from the photo, but it is down just above the top of the mobo tray, and extends out past the back side of the 5.25 cage. With both downward blowing air and is more compressed or moves faster because the top is bent down etc. I cut off the access on the side so not to go past the 5.25 cage. Made a face plate to mount the fan [can crank 103 cfm] to the other end of the gutted opti. It is easy in out, uses my normal case mounting gear, and is flush with the front of the case. The filter and or front cover are separate. I need to make a better filter frame. But it works. I like it for now.. My twin p160 case has the same set up, but using a 80mm face plate and fan, and being a normal 5.25 opti drive as it base, they can go case to case, most all cases have a 5.25 cage, so. I could use this on the lian li case below and just mount a normal fan filter right to the face plate..>>
    Build #2, my buds rig, was a snap to build. Not 1 fault in the entire build from- view reliability history. The large case was nice to work in.. Both systems running great and with AHCI support.
    Ha ha I got them running perfect in spite of ?
    MSI P55A-GD65 v1.1 bios 1.3. I5-750. W7 64 bit.
    Crucial 4GB kit CT2KIT25664BA1339 9-9-9-24 T1 1.5v
    Corsair CAFA50. ASUS ML248H 24". Corsair TX 650w.
    LIAN LI PC-A70F Black +120mm Intake Mod. EVGA 9800GT.
    Samsung DVDRW IDE. LOGITECH X-530 BLK5.1. AC MX2.
    WD2500AAKX Sata7C: WD3200AAJS Sata1E: Fios15\2mbps.
    Good to go..>
    See ya.

  • Oracle ODBC Driver (Windows 2003 x64 Server)

    Hi all
    I have some trouble with this ODBC Driver ...
    I have installed Oracle Client 10.2.0.1.0 with the ODBC Driver and SQLplus etc.
    Now I have configured in the "Net Manager" some "Service Naming" as I did
    on other servers before. Then I Test the connection in the "Net Manager" it
    seams to work fine.
    When I now try to connect in SQL Plus the following error comes up:
    ORA-12154: TNS:could not resolve the connect identifier specified
    I did already do this:
    - Add "...\NETWORK\ADMIN" to the Path Variable of the server
    - sqlnet.ora looks like:
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES)
    - tnsnames.ora looks like:
    MyName.WORLD =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myDomain.net)(PORT = 1521))
    (CONNECT_DATA =
    (SID = DBSIDxx)
    What do I have to do to get this working ???
    Thanks for any comments!
    Best regards
    Frank Uray

    Nevermind, I think I'm to assume that this is the same as:
    Re: unable to use SQL Plus (Windows 2003 x64 Server)

  • Purchase or not ODBC Driver for MS SQL Server 2005

    Hi experts,
    We have Windows Server 2003 R2 Standard with MS SQL SERVER 2005 and our other branch want to access this system's Database at their end.
    other branch is planning to integrate database record to ERP
    Can u confirm whether they have to purchase ODBC driver or not.
    from where i can purchase ODBC driver online.
    Best Regards,
    Pardeep

    Hello,
    The data provider like ODBC and SQL Server Native Client are already integrated in all common MS Windows OS, so in common you don't need to install additional provider.
    But if you want to install and newer version, then you can get it for free from
    Feature Pack for Microsoft SQL Server 2005 SP4 => sqlncli.msi ( = SQL Native Client, which includes ODBC)
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • MAXDB ODBC driver and MS SQL SERVER

    Dear SAP Community
      I need to set up a linked server from MS Sql Server to a MAXDB instance.
    Well, after installing the ODBC driver, I've set up a data source and then I could successfully establish a connection to my MAXDB from a sample Excel file using that datasource.
    Then I moved to Sql server in order to define a linked server with this data source, likewise.
    Therefore, in the first option as a provider I've selected "Microsoft OLE DB provider for ODBC drivers" then I specified that datasource for both Product Name and Data Source (same setting), however I got the following error.
    Could you kindly help me? I have almost spent 2 days on this problem without figuring it out, and any help or hint would be extremely appreciated.
    Many many thanks in advance
    Alberto
    The OLE DB provider "MSDASQL" for linked server "MAXDB2" reported an error. The provider did not give any information about the error.
    Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "MAXDB2". (Microsoft SQL Server, Error: 7399)

    Just for your information,
    I have the connection tested and running, without errors: I had to force the authentication before actually creating it.
    However, I don't see any table at the moment, so it would be extremely appreciate if anybody could provide me with some hints, perhaps I do have to put a connection string, as I kept blank those settings (just set only Product Name and Data Source).
    Many thanks in advance!
    Alberto
    /****** Object:  LinkedServer [MAXDB3]    Script Date: 07/18/2011 17:10:29 ******/
    IF  EXISTS (SELECT srv.name FROM sys.servers srv WHERE srv.server_id != 0 AND srv.name = N'MAXDB3')EXEC master.dbo.sp_dropserver @server=N'MAXDB3', @droplogins='droplogins'
    GO
    /****** Object:  LinkedServer [MAXDB3]    Script Date: 07/18/2011 17:10:29 ******/
    EXEC master.dbo.sp_addlinkedserver @server = N'MAXDB3', @srvproduct=N'MAXDB3', @provider=N'MSDASQL', @datasrc=N'MAXDB3'
    /* For security reasons the linked server remote logins password is changed with ######## */
    EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'MAXDB3',@useself=N'False',@locallogin=NULL,@rmtuser=N'DBADMIN',@rmtpassword='########'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'collation compatible', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'data access', @optvalue=N'true'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'dist', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'pub', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'rpc', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'rpc out', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'sub', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'connect timeout', @optvalue=N'0'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'collation name', @optvalue=null
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'lazy schema validation', @optvalue=N'false'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'query timeout', @optvalue=N'0'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'use remote collation', @optvalue=N'true'
    GO
    EXEC master.dbo.sp_serveroption @server=N'MAXDB3', @optname=N'remote proc transaction promotion', @optvalue=N'true'
    GO

  • I can boot up my macbook pro but all i see is the wallpaper and the dock and the toolbar at the top. I can not see my hard drive or anything else. please help

    Please help. I can boot up my macbook pro and log in but after that all i see is the wallpaper, toolbar and the dock. In the dock it has 2 ? where the doc and download folders should be.  If I open up a new finder window it doesnt show anything in there no hard drive or anything. If anyone konws how to help let me know please and thank you.

    Agree with baltwo, though even if you have saved the install app I wouldn't use it unless its been used to install a known good copy of the OS already.
    In your case, that probably means start fresh:
    Restart the computer, holding down 'command' and 'r'. When the recovery disk window shows, choose 'Reinstall Mac OS X'.

  • Can not see Oracle BPEL Project option in Eclipse

    Hi,
    I have followed the Test Drive document to install the Oracle BPEL Process Manager 2.0 e.g:
    1. Installed Eclipse 3.0 GA (eclipse30GA.zip)
    2. Installed BPEL Process Manager 2.0RC9 (orabpel_2.0rc9_OC4J_win32.exe)
    3. Installed BPEL Designer Plugin for Eclipse (bpelz_0.9.1_win32.exe)
    When I open Eclipse to build a new Oracle BPEL Project I don't get the option to do that. It seems that the plugin isn't loaded or so ?
    I am very sure that I answered the install questions correctly (tried multiple times).
    Any ideas on what could be wrong ?
    Thanks
    Andy

    Further information - it now seems that the missing 'bat' file is due to the order of installation of server and designer. However, the 'bpelz.bat' file looks for the 'obsetenv.bat' in the wrong directory. Should be 'call ..\..\bin\obsetenv.bat' (on my install at least). Eclipse 3.0 also has a bug I now discover that does not load plugins correctly. Delete the 'configuration' directory, restart and the plugin becomes available

  • Problem using odbc driver 10g with SQL Server 2005

    We are getting following error. Any solution?
    cannot retrieve the column codepage info from the OLE DB provider

    there is an additional error message
    The output column SR_CONTACT_POINT_ID (58) has a precision which is not valid. Precision must be between 1 and 38.

Maybe you are looking for