Moving to Tomcat 6, Oracle 11g - getting weird exception

Hello,
I am having a problem that I can't seem to get past:
java.lang.UnsatisfiedLinkError: oracle.jdbc.driver.T2CConnection.getLibraryVersionNumber()I
     at oracle.jdbc.driver.T2CConnection.getLibraryVersionNumber(Native Method)
     at oracle.jdbc.driver.T2CConnection$1.run(T2CConnection.java:3536)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.jdbc.driver.T2CConnection.loadNativeLibrary(T2CConnection.java:3531)
     at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:266)
     at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:536)
     at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:162)
     at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:53)
     at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
     at java.sql.DriverManager.getConnection(Unknown Source)
     at java.sql.DriverManager.getConnection(Unknown Source)
     at com.rhs.db.conn.ConnectionOra.useOCIDriver(ConnectionOra.java:82)
The code, below, worked against Oracle 10g and Tomcat 5.5:
               try {
               DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
               _driverLoaded = true;
          } catch (Exception e) {
          deflog.error(e);
               _conn = DriverManager.getConnection("jdbc:oracle:oci:@orcl", login, pwd);
I have included ojdbc6.jar in Tomcat's "lib" directory. Am I just missing something dumb?
Thanks,
Jerry

Right it's blowing up on what looks like trying to get metadata about the library.
It's just loading the dll that came with 11g. I would think that if it were the wrong dll, that this would be a well known issue, right?
If I remove the library altogether, it complains about simply not being able to find the dll (obviously). If I use a jar ojdbc6.jar targeted at 10g, it complains about 10's dll not being there, which also makes sense.
My jvm is the latest (installed a couple of days ago).
A Google search of this particular failure yields pretty much 0 useful results, so I'm hoping someone can shed light on the problem, in general, and what one might do, in general, to fix it....perhaps a Java master employed by Oracle? :)
Ah well, I'm about to abandon this approach, I don't have time to monkey around with expensive databases that are clunky to upgrade (read almost completely different between versions) and have poor oob tool support. Oracle has cost our company more money than it's made us, that's for sure.

Similar Messages

  • Keep getting weird exception

    I am recieving the following exception
    Welcome to the database.
    1.Add employee
    2.Delete employee
    3.Edit employee
    4.View employee
    5.Save
    6.Quit
    1
    Exception in thread "main" java.lang.NullPointerException
    at EmployeeDatabase.main(EmployeeDatabase.java:42)
    It makes it about this far:
    import java.io.*;
    import java.util.*;
    public class EmployeeDatabase
      public static void main(String[] args)
        String command = "nothingyet";
        Employee[] employee = new Employee[100];
        for(byte i=0; i < 100; i++)
          employee[i] = new Employee();
          employee.setName("Noname");
    employee[i].setSSN("notnumber");
    employee[i].setSalary("0.0");
    Scanner keyboard = new Scanner(System.in);
    Scanner data = null;
    try
    data = new Scanner(new FileInputStream("employees.txt"));
    byte x = 0;
    String nextStuff;
    do
    nextStuff = data.nextLine();
    if ((x % 3)==0)
    employee[x].setName(nextStuff);
    else if ((x % 3)==1)
    employee[x].setSSN(nextStuff);
    else
    employee[x].setSalary(nextStuff);
    x += 1;
    } while (x<100);
    data.close();
    catch(FileNotFoundException e){System.out.println("employees.txt not found\nPress enter/return to close..."); keyboard.nextLine(); System.exit(-1);}
    do
    System.out.println("Welcome to the database.\n1.Add employee\n2.Delete employee\n3.Edit employee\n4.View employee\n5.Save\n6.Quit");
    command = keyboard.nextLine()
    if (command.equals("1"))
    byte isSpace = 0;
    byte nextEmployee = 0;
    byte y=0;
    for (y = 0; y < 100; y++)
    if (employee[y].getSSN().equals("notnumber"))
    nextEmployee = y;
    y = 100;
    isSpace = 1;
    if(isSpace != 1)
    System.out.println("No room for new employees. Only 100 may be stored.");

        Employee[] employee = new Employee[100];
        for(byte i=0; i < 100; i++)
          employee[i] = new Employee();
          employee.setName("Noname");
    employee[i].setSSN("notnumber");
    employee[i].setSalary("0.0");
    }kamimatsu, what would happen in your FOR loop if employee.length was more than 256?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Tomcat 7 and Oracle 11g

    Hello Everyone,
    I am facing a strange issue with tomcat 7 connectivity with Oracle 11g. I am using the below versions
    JDK1.7.0_03
    Tomcat 7
    Oracle 11g
    I used to connect to oracle9 with the thin driver, everything was fine, but when I try to connect to 11g, tomcat throws the error CONNECTION REFUSED. I created a seperate standalone java application to test the connection with the same peice of code, and I can see Oracle sends the connection, but with Tomcat 7 it throws the error. I have placed all the correct jar files in the tomcat lib directory and classpath. I am little lost as it works well as an individual application but not from Tomcat. No exception or other error is thrown by Tomcat
    Can anyone help me on this
    Thanks in advance

    926901,
    I am havnig what I think is a very similar issue. I am brand new to java and to configuring any kind of server at all. I am using the versions below:
    JDK 1.7.0_04 - on my local machine
    JRE 7 - on my local machine
    Tomcat 7 - installed on my local machine
    Oracle 11g - on a different server on my company's network
    I created a login page using scriptlets in a jps file and could connect using the following, but it is not on a tomcat server (on my company's development box):
    String dbURL = "jdbc:oracle:thin:@10.5.20.101:1521:myDB";
    String dbUser = "*****";
    String dbPass = "*****";
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    con = DriverManager.getConnection(dbURL,dbUser,dbPass);
    I am now trying to do the same login, connecting to the same DB (same url/UN/PW) using servlets from the tomcat server on my machine. I am writing the code in Eclipse also, and have pointed eclipse to the JDK and JRE folders. You mentioned that you have placed all the correct jar files in tomcat lib directory. Would you please tell me what jar files you used? I am finding a lot of people saying I need to put the oracle driver into the WEB-INF/lib folder directly in the specific web app, and some say it is fine in the tomcat lib folder, and I am seriously frustrated with it. I am not sure if I should be using the class12.jar file or the ojbdc14.jar file either. Please, any advice you can give me would be appreciated. I have been going in circles for days and nothing seems to let me connect to the DB from a servlet running in Eclipse on tomcat. The code I am trying to use on tomcat in the servlet is:
    import java.sql.*;
    import java.util.*;
    import oracle.jdbc.*;
    public class ConnectionManager
         static Connection con;
         static String dbURL;
         public static Connection getConnection()
              try
                   String dbURL = "jdbc:oracle:thin:@//10.5.20.101:1521:myDB";
                   String dbUser = "*****";
                   String dbPass = "*****";
                   // assuming "DataSource" is your DataSource name
                   Class.forName("oracle.jdbc.OracleDriver");
                   DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
                   //try
                        con = DriverManager.getConnection(dbURL,dbUser,dbPass);
                   //catch (SQLException ex)
                   //     ex.printStackTrace();
              catch(ClassNotFoundException e)
                   System.out.println(e);
              return con;
    }

  • Oracle 11G Configuration Issue

    Hi All,
    I am in the process of installing Oracle Forms and Reports 11g[11.1.2].
    I have installed Oracle 11g, getting a issue while configuring it.
    INST – 07249 :An Unexpected error occurred during the validation of Middleware home location
    INST-07286: Specified Oracle Middleware home locationdoes not have version 10.3.5 of weblogic server.If the version is incorrect then configuring with the weblogic server will fail
    WLS 10.3.5 have been installed, and I can access the Admin console.
    I did checked for the WLS version in its registry file created on WLS installation to confirm its version number.
    I have used the same middle ware home location which I used to install the WLS.
    Please can you get me some information to overcome this issue?

    This is well explained from user's guide:
    Stopping Node Manager Before Installing Oracle Forms and Reports (Windows Only)
    If you are installing Oracle Forms and Reports on a Microsoft Windows operating system, you must make sure that the Node Manager utility that was installed with Oracle WebLogic Server is stopped before you begin the installation:
    1.     Verify the Oracle WebLogic Server Node Manager utility is stopped. If it is running, kill the process.
    2.     Determine if the nodemanager.properties file is present in the WebLogic_Home\common\nodemanager directory.
    *1.     If the nodemanager.properties file is not present, continue installing Oracle Forms and Reports.*
    *2.     If the nodemanager.properties file does exist, open it and verify that the ListenPort parameter is included and that it is set. If the ListenPort parameter is not included or set, edit the nodemanager.properties file so that it is similar to the*
    following, where NODE_MANAGER_LISTEN_PORT represents the port the Node Manager listens on, such as 5556:
    *3.     ListenPort=NODE_MANAGER_LISTEN_PORT*

  • Vb6 ODBC - Syntax error or access violation in oracle 11g migration

    Hi,
    We have VB6 application with Oracle 10g and the same is working fine.
    Now, we are migrating to Oracle 11g now and we have updated the odbc drivers too.
    { call M_FR(?, ?, ?, ?, ?, ?, ?, ?) }
    L_ID = 890083
    V_ID = 1
    SUB_ID = 6955141
    SUB_SEQ = 1
    P_CODE = 1
    L_SUP_TYPE = 1
    L_REF_NO = 1
    DELETE_REASON_CODE = 1
    When calling the above sp in oracle 11g getting error: [Microsoft][ODBC driver for Oracle]Syntax error or access violation.
    But user has all the right and no issue with access. Also no syntax error. In SQLplus the same is working fine.
    Kindly help us to resolve this issue.
    Regards,
    Sathiya

    Try downloading the latest version of the 8.1.6 driver off OTN.
    That sounds like a bug that was fixed a while ago.
    Justin

  • Does the JDBC driver need to changin when moving Oracle 9i to Oracle 11g??

    Hi All,
    I have two cases
    Case 1:
    Application is deployed on WebLogic 10 (JDK 5) and connects to Oracle 9i database using the thin driver. Now the database is now moving from ORacle 9i to Oracle 11g. I have the following question:
    1. Does the driver jar file and/or driver class need to be changed on the connection pool front?
    2. If yes then, do we need to change any of the jdbc coding to ensure compatibility?
    Case 2:
    Application is deployed on WebLogic 8.1 (JDK 1.4) and connects to Oracle 10g database using the thin driver. Now the database is now moving from ORacle 10g to Oracle 11g and application is moving to WebLogic 10. I have the following question:
    1. Does the driver jar file and/or driver class need to be changed on the connection pool front?
    2. If yes then, do we need to change any of the jdbc coding to ensure compatibility?
    Additioanlly, are there any other factors that I need to consider when upgrading these applications. Does any one have checklists?
    Any help will be really helpful.
    Thank you
    Nikhil

    nikhil.gonsalves wrote:
    Case 1:
    Application is deployed on WebLogic 10 (JDK 5) and connects to Oracle 9i database using the thin driver. Now the database is now moving from ORacle 9i to Oracle 11g. I have the following question:
    1. Does the driver jar file and/or driver class need to be changed on the connection pool front?Advised to do so (bugfixes, possible performance optimisations), not required unless you want to use functionality the 9i driver doesn't support.
    2. If yes then, do we need to change any of the jdbc coding to ensure compatibility?
    Not unless you want to use things not supported by the old driver.
    It is however a very good idea to at least update the name of the driver class, as the name used for the 9i driver has been deprecated (it's still allowed, but now leads to another method call which is a waste of CPU time).
    Case 2:
    Application is deployed on WebLogic 8.1 (JDK 1.4) and connects to Oracle 10g database using the thin driver. Now the database is now moving from ORacle 10g to Oracle 11g and application is moving to WebLogic 10. I have the following question:
    1. Does the driver jar file and/or driver class need to be changed on the connection pool front?See above.
    2. If yes then, do we need to change any of the jdbc coding to ensure compatibility?
    See above (except for the driver class name which you should have used the new name already had the application been written to make use of the new name which was introduced in 10g).
    Additioanlly, are there any other factors that I need to consider when upgrading these applications. Does any one have checklists?
    You should always do a full regression test of your entire platform when attempting a migration like this.
    Worst example of what can go wrong I ever encountered was an application where an upgrade of the database server it ran on led to a bugged batch job that for 5 years had (unnoticed to anyone) never completed because it always entered a timeout causing a rollback now suddenly no longer timing out and inserting 10k records of corrupt data every time it was run (where what it should insert were maybe a few dozen records of actual data at most).
    The database engine upgrade had not been announced to the dev team, the team responsible for it didn't do regression tests (as application testing is the responsibility of the dev team), the sys admins who should make full backups at upgrade moments (so we could roll back to the previous release if something went wrong) made no backup because it was no application upgrade, and now one of the core applications for several dozen offices was fundamentally broken.
    Technical lead for the application was literally on the other side of the world on a vacation, functional lead had left the company, the entire dev team consisted of me as a contractor brought in just 2 weeks prior and a new functional lead who'd arrived at about the same time, we were both still trying to get to know the system.
    Potential financial loss: millions a week if it wasn't fixed quick.
    That's the nightmare scenario from hell of course, where everything that could go wrong did go wrong all at the same time.

  • Oracle 11g Release 2 "error in moving file"

    Hi there, right now I'm trying to install Oracle 11g release 2 64-bit on Windows 7 64 bit. about half-way through the installation i get an error message:
    "error in moving file C:\app\dlee14\product\11.2.0\dbhome_1\bin\oralbac11.dll to C:\app\dlee14\product\11.2.0\dbhome_1\bin\oralbac11.dll.dbl"
    what's going on and how do i fix it?

    1010200 wrote:
    Dear Team,
    we are getting error while installing RAT( workload features)
    Neither D:\oracle\app\product\11gRel2/bin/orarat11.dll.dbl nor D:\oracle\app\product\11gRel2/bin/orarat11.dll exist. 
    Therefore, the ORACLE_HOME is in an invalid state with respect to the option '
    Please suggest :I suggest that instead of hijacking a two year old thread that is only tangentially related to your problem, that you start your own thread with as many of your specific details as you can muster.

  • I am trying to install oracle 11g xe on ubuntu aws instance when i execute sudo /etc/init.d/oracle-xe configure command iam getting this error: sudo: /etc/init.d/oracle-xe : command not found

    i am trying to install oracle 11g xe on ubuntu aws instance when i execute sudo /etc/init.d/oracle-xe configure command iam getting this error: sudo: /etc/init.d/oracle-xe : command not found.

    "command not found" means ... there is no such thing.
    Has the .rpm been installed?
    http://docs.oracle.com/cd/E17781_01/install.112/e18802/toc.htm#XEINL122

  • Is it possible to install oracle developer suite 10g in windows 7(64 bit), I have tried to install but failed so. Though, database 11g gets install in Windows 7.  If possible, Kindly provide me the website link.

    Is it possible to install oracle developer suite 10g in windows 7(64 bit), I have tried to install but failed so. Though, database 11g gets install in Windows 7.
    If possible, Kindly provide me the website link.

    Pl do not post duplicates
    Is 1GB ram is enough for the installation of oracle developer suite 10g and database 11g??? And which one to install fi…
    I want to install oracle database 11g and oracle developer suite 10g (latest) in my system. As i'm quite new to oracle ,…
    Continue the discussions in your original threads

  • Problem with getting started with the SQL Developer in oracle 11g

    I downloaded the oracle 11g from the oracle site and installed it on my machine.Now i want to write the sql queries and practise them......so i tried this:start\oracle11gHome\ApplicationDevelopment\Sqldeveloper . But I get a messagebox with a browse button asking me to "Enter the full pathname for java.exe"
    what is this all about?Do i need to install jave in my host machine?
    how to solve this problem?

    hi
    If you are asked to enter the full pathname for java.exe, click Browse and find java.exe. For example, the path might have a name similar to C:\Program Files\Java\jdk1.5.0_06\bin\java.exe.
    http://download.oracle.com/docs/cd/E10405_01/doc/install.120/e10407/install.htm
    hope this helps
    zekeriya

  • Apache gets installed together with Oracle 11G on my Win2003 x64 server?Rem

    Hi all,
    I just installed Oracle 11G on my Windows 2003 x64 server.
    It seems that it has also installed Apache on it and took over my port 80 on which i would like to run IIS.
    Can anyone please advice on how i can either remove apache or if it is needed by oracle then at least change the port so i can have my port 80 back.
    I had a browse around but i could not find any configuration files easily.
    Looking forward to your response.
    Cheers
    Dan

    When i do netstat -a i get:
    Proto Local Address Foreign Address State
    TCP wolslice:http wolslice:0 LISTENING
    TCP wolslice:epmap wolslice:0 LISTENING
    TCP wolslice:microsoft-ds wolslice:0 LISTENING
    TCP wolslice:1030 wolslice:0 LISTENING
    TCP wolslice:1033 wolslice:0 LISTENING
    TCP wolslice:1035 wolslice:0 LISTENING
    TCP wolslice:1158 wolslice:0 LISTENING
    TCP wolslice:1830 wolslice:0 LISTENING
    TCP wolslice:ms-wbt-server wolslice:0 LISTENING
    TCP wolslice:3938 wolslice:0 LISTENING
    TCP wolslice:5500 wolslice:0 LISTENING
    TCP wolslice:5520 wolslice:0 LISTENING
    TCP wolslice:5521 wolslice:0 LISTENING
    TCP wolslice:netbios-ssn wolslice:0 LISTENING
    TCP wolslice:1189 wolslice:1521 ESTABLISHED
    TCP wolslice:1231 wolslice:1521 ESTABLISHED
    TCP wolslice:1384 wolslice:1521 ESTABLISHED
    TCP wolslice:1385 wolslice:1521 ESTABLISHED
    TCP wolslice:1390 wolslice:1521 ESTABLISHED
    TCP wolslice:1392 wolslice:1521 ESTABLISHED
    TCP wolslice:1393 wolslice:1521 ESTABLISHED
    TCP wolslice:1394 wolslice:1521 ESTABLISHED
    TCP wolslice:1395 wolslice:1521 ESTABLISHED
    TCP wolslice:1396 wolslice:1521 ESTABLISHED
    TCP wolslice:1397 wolslice:1521 ESTABLISHED
    TCP wolslice:1398 wolslice:1521 ESTABLISHED
    TCP wolslice:1400 wolslice:1521 ESTABLISHED
    TCP wolslice:1402 wolslice:1521 ESTABLISHED
    TCP wolslice:1403 wolslice:1521 ESTABLISHED
    TCP wolslice:1404 wolslice:1521 ESTABLISHED
    TCP wolslice:1417 wolslice:1521 ESTABLISHED
    TCP wolslice:1521 wolslice:0 LISTENING
    TCP wolslice:1521 wolslice:1189 ESTABLISHED
    TCP wolslice:1521 wolslice:1231 ESTABLISHED
    TCP wolslice:1521 wolslice:1384 ESTABLISHED
    TCP wolslice:1521 wolslice:1385 ESTABLISHED
    TCP wolslice:1521 wolslice:1390 ESTABLISHED
    TCP wolslice:1521 wolslice:1392 ESTABLISHED
    TCP wolslice:1521 wolslice:1393 ESTABLISHED
    TCP wolslice:1521 wolslice:1394 ESTABLISHED
    TCP wolslice:1521 wolslice:1395 ESTABLISHED
    TCP wolslice:1521 wolslice:1396 ESTABLISHED
    TCP wolslice:1521 wolslice:1397 ESTABLISHED
    TCP wolslice:1521 wolslice:1398 ESTABLISHED
    TCP wolslice:1521 wolslice:1400 ESTABLISHED
    TCP wolslice:1521 wolslice:1402 ESTABLISHED
    TCP wolslice:1521 wolslice:1403 ESTABLISHED
    TCP wolslice:1521 wolslice:1404 ESTABLISHED
    TCP wolslice:1521 wolslice:1417 ESTABLISHED
    TCP wolslice:1521 wolslice:1682 ESTABLISHED
    TCP wolslice:1521 wolslice:1770 ESTABLISHED
    TCP wolslice:1521 wolslice:3366 ESTABLISHED
    TCP wolslice:1521 wolslice:3367 ESTABLISHED
    TCP wolslice:1521 wolslice:3771 TIME_WAIT
    TCP wolslice:1521 wolslice:3791 ESTABLISHED
    TCP wolslice:1682 wolslice:1521 ESTABLISHED
    TCP wolslice:1770 wolslice:1521 ESTABLISHED
    TCP wolslice:3366 wolslice:1521 ESTABLISHED
    TCP wolslice:3367 wolslice:1521 ESTABLISHED
    TCP wolslice:3784 wolslice:1521 TIME_WAIT
    TCP wolslice:3791 wolslice:1521 ESTABLISHED
    TCP wolslice:1380 wolslice:1381 ESTABLISHED
    TCP wolslice:1381 wolslice:1380 ESTABLISHED
    TCP wolslice:1382 wolslice:1383 ESTABLISHED
    TCP wolslice:1383 wolslice:1382 ESTABLISHED
    TCP wolslice:3336 wolslice:0 LISTENING
    UDP wolslice:microsoft-ds *:*
    UDP wolslice:isakmp *:*
    UDP wolslice:ipsec-msft *:*
    UDP wolslice:ntp *:*
    UDP wolslice:netbios-ns *:*
    UDP wolslice:netbios-dgm *:*
    UDP wolslice:ntp *:*
    I cant see which one of those would be the apache started by oracle.
    I also checked the lsit of running services and i cant see it there.
    But when i browse to http://localhost i get:
    Index of /
    Name Last modified Size Description
    wpad.dat 05-Nov-2009 16:41 2.3K
    Apache/2.2.11 (Ubuntu) Server at localhost Port 80
    My apologies if this is simple stuff. I am just a begginer with Oracle.

  • Getting started with Oracle 11g express edition

    I am currently in a college class doin SQL. I have downloaded oracle 11g express edition. I'm trying to get started and when I try to create a new connection it takes me to a screen where I have to sign in. When I use my oracle sign in and pass word it tells me it doesn't recognize it. No I know it works because I can sign in on the web site. But it won't connect me or allow me to make a new connection. I really don't understand what is going on. I can seriously use some help. Something that will take me step by step on what I need to do. I have to create a data base and I'm not sure how to do it.
    Thank You
    Carl Gavin

    Hello Carl,
    Something that will take me step by step on what I need to do.Sounds like what you are searching for is the [url http://docs.oracle.com/cd/E17781_01/admin.112/e18585/toc.htm]Getting Started Guide.
    If you need some advanced knowlege, there would be the "2 Day DBA Guide", which, among other topics, contains a section on [url http://docs.oracle.com/cd/E17781_01/server.112/e18804/connecting.htm#CEGIFAHF]Connecting to the Database. I think you'll find all necessary information (background and step by step description) you need.
    -Udo

  • Failed to get Column's data type in Oracle 11g

    Hi,
    I made an ADO connection(Oracle provider) to Oracle 11g, and use ADO API: OpenSchema(adSchemaColumns) to fetch the columns' info. But I found I couldn't get the column's data type if it's type is timestamp or timestampwithtimezone in database. What I got is 'adIUnknown' whose number is 13.
    I test with another column whose data type is 'date', and everything is ok. I get the data type 'adDBTimeStamp'.
    This issue occurs on Oracle 10g, too.
    Can anyone offer some help? Thanks a lot!

    See
    http://www.oracle.com/technology/tech/windows/odpnet/index.html
    http://download.oracle.com/docs/cd/B28359_01/win.111/b28431/using.htm#CHDJJDAJ

  • How to get DDL Script in Oracle 11g

    How can i get DDL Script in Oracle 11g database.
    I am using windows as OS
    Can anyone help me to get solution.
    Thanks in Advance

    parapr wrote:
    How can i get DDL Script in Oracle 11g database.
    I am using windows as OS
    Can anyone help me to get solution.
    Thanks in AdvanceHUH?
    might DBMS_METADATA.GET_DDL() provide what you desire?

  • How to get data from PostgresSQL to Oracle 11g

    I have a general idea on the topic but need more information on the procedure to get data from Postgres (version 8.2 on Linux) database to Oracle 11g (on AIX Unix). Thanks very much in advance!

    You need to configure DG4ODBC (=Database Gateway for ODBC). When you install it on a 64bit OS (for example on the same machine as your Oracle database), then it requires a 64bit Postgres ODBC driver. If you install it on a 32bit machine (for example on a 32bit Linux), then you need a 32bit Postgres ODBC driver. Commonly on Unix you also need to install a matching ODBC Dreiver Manager (for example you can get it from www.unixodbc.org) when Postgres doesn't ship one with their driver.
    A note describing the DG4ODBC configuration can be found on My Oracle Support:
    How to Setup DG4ODBC on Linux x86 32bit          (Doc ID 466228.1)
    and
    How to Setup DG4ODBC on 64bit Unix OS (Linux, Solaris, AIX, HP-UX)          (Doc ID 561033.1)

Maybe you are looking for

  • Help with a binary tree

    I'm writing a binary tree class and am having some trouble with the Insert function. Here is the code for the TreeNode class... public class TreeNode      TreeNode Left;      TreeNode Right;      String Name;      public TreeNode(String NodeName)    

  • Posting of incoming payment against billing documents

    hi to all How to post the incoming payment using the billing document reference. Since we already posted sales order and there upon Billig Document was generated for the same.  Now we need to clear the customer against the billing document. up to my

  • Special Characters Error

    When I play songs that contain special characters, an error occures: iTunes changes the symbol into something else! Example: Röyksopp - What Else Is There? (Trentemøller Remix) authomaticly becomes Rˆyksopp - What Else Is There? (Trentem¯ller Remix)

  • Attach movie confuison

    Hi, I need a help. I created a movieclip called ball and added linkage as 'ball' and also checked the option 'export in first frame' it is working fine, BUT if i do like that then exports the movie clip in first frame and it take big time to show pre

  • Add Comment in the very start of every Custom Program Automatically

    Hi, Friends, I have more than one thousand custom program and I have a requirement to add 4 to 5 lines of  comment in the very start of every program, means if code of the program is starting from the 1st line than this line must go to number 5 if I