User permission issue in connecting to Oracle using java in Cent OS

Hi ,
I am facing a peculiar issue and since I am new to Cent OS, I hope somebody can help me.
I am using Cent OS 4.2 and I installed Oracle client 10.2 in cent os 4.2.
I am having a java application which connects to Oracle server in another Linux system using Oracle OCI driver which comes along with Oracle client
I have a user called user1 which belongs to group group1 as primary group and my application runs under this user user1.
This user is a member of oinstall group (which is the group for oracle uesr which has access to oracle client directories/files)
But when my application tries to connect to Oracle server, I am getting connectivity error saying "Oracle driver not found" or "cannot load libocijdbc10.so". All environment variables like ORACLE_HOME, PATH,CLASSPATH, LD_LIBRARY_PATH are set properly.
The permissions to Oracle folder/files are rwx for owner(oracle user) , rx for group(oinstall) and none for others
What we observed are
1. When the application is start under root user, it works
2. When we give rx permission to others, it works
3. When we make oinstall group as the primary group for my user user1, it works
My questions here
1. Why it is not working even though my user user1 is a member of oinstall group
2. Why it is working when I make oinstall as the primary group
3. Is there any difference in security policy of RHEL and Cent OS
4. How can I access libraries from multiple folders which created by different user and belongs to different groups, if this is the case
I never faced this issue in RHEL4
Hope some body can help me.
Regards
Sunil

Sorry, I should have been more specific. The error message I was referring to shows up in a pop-up windows when I try to run the program. The actual java error message (that shows up in the command prompt window) is as follows:
"Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\WINNT\system32\ocijdbc8.dll: The specified procedure could not be found
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1473)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1397)
at java.lang.Runtime.loadLibrary0(Runtime.java:788)
at java.lang.System.loadLibrary(System.java:832)
at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:192)
at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:142)
at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:214)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:193)
at java.sql.DriverManager.getConnection(DriverManager.java:512)
at java.sql.DriverManager.getConnection(DriverManager.java:171)
at lookup.main(lookup.java:16)"
I'm running the program through Windows 200 Pro command prompt, and the version of java is, as I mentioned in the previous message, 1.4.1:
java -version
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)

Similar Messages

  • Connecting to Oracle using Java API

    I'm fairly new to Oracle, but what I'm trying to do should be straight forward (at least that's what I thought). I'm simply trying to connect to an Oracle database using the latest java API (J2SE 1.4.1).
    I downloaded JDBC OCI (type 2) driver form the Oracle Web site along with the appropriate DLL; however when I try to run the following two lines
    String dbUrl = "jdbc:oracle:oci8:@test";
    String user = "user";
    String password = "password";
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection c = DriverManager.getConnection(dbUrl, user, password);
    I get the following error message:
    "java.exe - Entry Point Not Found
    The procedure entry point slzsetevar could not be located in the dynamic link library oracore8.dll."
    Please note that I am running under Windows 2000 Pro, have Oracle Client 8.1.5 installed, and am able to connect to the same Oracle database using ODBC and PowerBuilder native drivers.
    Then I read somewhere that I should use 8.1.7 version of the Oracle client software, so I downloaded it from the Oracle Web site. However when I try to install it under Windows 2000 (by double-clicking on the setup.exe) nothing happens!!!
    Any ideas?!

    Sorry, I should have been more specific. The error message I was referring to shows up in a pop-up windows when I try to run the program. The actual java error message (that shows up in the command prompt window) is as follows:
    "Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\WINNT\system32\ocijdbc8.dll: The specified procedure could not be found
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1473)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1397)
    at java.lang.Runtime.loadLibrary0(Runtime.java:788)
    at java.lang.System.loadLibrary(System.java:832)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:192)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:142)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:214)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:193)
    at java.sql.DriverManager.getConnection(DriverManager.java:512)
    at java.sql.DriverManager.getConnection(DriverManager.java:171)
    at lookup.main(lookup.java:16)"
    I'm running the program through Windows 200 Pro command prompt, and the version of java is, as I mentioned in the previous message, 1.4.1:
    java -version
    java version "1.4.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
    Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)

  • Error in connection to oracle using java

    hi ,
    i am tring to make a connection to oracle database using java with this code
    public class DataBase {
    public DataBase(){
    Connection connection = null;
    try {
    // Load the JDBC driver
    String driverName = "oracle.jdbc.dirver.OracleDriver";
    Class.forName(driverName);
    // Create a connection to the database
    String serverName = "http://localhost:7777";
    String portNumber = "1521";
    String sid = "ora9i";
    String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String username = "scott";
    String password = "tiger";
    connection = DriverManager.getConnection(url, username, password);
    } catch (ClassNotFoundException e) {
    JOptionPane.showMessageDialog(null,"Coud not find the database driver ");
    // Could not find the database driver
    } catch (SQLException e) {
    JOptionPane.showMessageDialog(null,"Coud not connect to the database ");
    // Could not connect to the database
    public static void main(String[] args) {
    new DataBase();
    i always got the compilation error Coud not find the database driver
    i am using oracle9i and jdk1.5.0_04 and my classpath is C:\oracle\ora92\jdbc\lib\ojdbc14.zip;C:\oracle\ora92\jdbc\lib\orai18n.zip
    i am realy stuck with this so any one can help me with this probelm
    thanks alot,

    thanks for your reply,
    yes i changed the server name and i verified the location of the JDBC driver file(s) on my computer. any way i solved my problem.
    you know there was a misunderstanding in what you mean by classpath, i thought that i have to change the classpath from control panel>system>advance>enviroment variable
    and then select classpaht and edit it. i was doing this but this is didn't work.
    then i don't know why i did that
    i went to java program and select my project,right click on it and then select properties>java build path and then select "add external Jars" button and then i simply choose them and add them to my project. and finaly it worked.
    thanks alot

  • Connecting to Oracle using JDBC

    Hi all,
    I am a new to Oracle. I am trying to connect to Oracle using JDBC
    The URL with which I tried to connect was:
    jdbc:oracle:oci8:@myServiceName,user='myLogin',password='myPassword'
    I get an error (ORA-12154)
    - TNS could not resolve service name
    When I use the same userid, password and service and connect thru' SQL*Plus it goes thru'. Is there any parameter which I am missing. Can anyone throw some light on this. I am held up with this issue badly.
    Thanks for all your help and time.
    Regards,
    Latha

    Hi Latha,
    Please try to use thin and add port number.
    m_conn = DriverManager.getConnection("jdbc:oracle:thin:@" + hostURL + ":" + port + ":" + database, user, password);
    Hong
    null

  • Connect to oracle using jdba thin driver

    i want to use jdbc thin driver to connect to oracle 8i for linux intel.
    my code is:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    String dbURL = "jdbc:oracle:thin:@dbserver:1521:iasdb";
    Connection con = DriverManager.getConnection(dbURL,"scott","tiger");
    but an error is reported as "the network adapter can not establish connection".
    why?
    i can connect to oracle using JDBC-ODBC bridge successfully.

    i want to use jdbc thin driver to connect to oracle 8i for linux intel.
    my code is:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    String dbURL = "jdbc:oracle:thin:@dbserver:1521:iasdb";
    Connection con = DriverManager.getConnection(dbURL,"scott","tiger");
    but an error is reported as "the network adapter can not establish connection".
    why?
    i can connect to oracle using JDBC-ODBC bridge successfully.

  • How to connect with Oracle in java

    Hello!
    I would like to use java for my graduation project. And connect with Oracle in java.
    I used j2sdk1.4.2_04 and Oracle 9i release 9.2.0.1.0
    May I ask where could supply me information or content ?
    Thanks!!

    hi jus a sample code
    public class DbUtil {
    // Connection instance
    private static Connection conn = null;
    private Object connection;
    public DbUtil() {
         // Connect to the database
    dbConnect();
    * This method performs the clean up action and closes the application
    void exitDbUtil(){
    // If connected to database
    if (conn != null) {
    try {
    // Close the connection
    conn.close();
    conn=null;
    catch (Exception ex){      // Trap errors
    System.out.println(" Error while Closing the connection: "+ex.toString());
    * Creates a database connection object
    private void dbConnect() {
    try {
    String driverName = "oracle.jdbc.driver.OracleDriver";
    Class.forName(driverName);
    String url = "jdbc:oracle:thin:@" + ConnectionParams.s_hostName +
              ":" + ConnectionParams.s_portNumber +
              ":" + ConnectionParams.s_databaseSID;
    // Create a connection object
    conn = DriverManager.getConnection(url, ConnectionParams.s_userName,
                             ConnectionParams.s_password);
    catch(Exception e){

  • Add a posixaccount user in posixgroup in sun directory server using java

    Hi
    Anybody now how to add posixaccount user in posixgroup in sun directory server using java code.
    I am able to add normal directory server user in ldap group in java.
    But i am getting any luck to add posixaccount user in posixgroup.
    I know we can set uid value in memberuid attribute but how to add through java program.
    Anybody can paste code for that.
    Thanks.

    To CRabel,
    My company have restriction on using the open sources product/code, but i will take a look on netscape ldap sdk as a reference~
    To raghu1978 ,
    i find a product call Directory Editor 1 2005Q1, I hope it is useful.
    thz all~

  • Wierd message while connecting to ORACLE using sqlplus

    Hi
    Server:AIX 3 5
    Oracle: 10.2.0.1 patched to 10.2.0.3
    i tried connecting to oracle and getting a wierd error only via OS Authenticated user not while connecting as sys or "/ as sysdba"
    $ sqlplus /
    1224868 : map : Permission Denied
    1224868 : map : Permission Denied
    1224868 : map : Permission Denied
    SQL*Plus: Release 10.2.0.3.0 - Production on Tue Nov 27 00:40:18 2007
    Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    any idea on this?
    thanks
    Deepak

    Server:AIX 3 5Is it true or mistake ? I don't think Oracle 10g has ever supported on that AIX version.
    Anyway, what OS user did you use ?
    Nicolas.

  • Unable to connect to Oracle using OS authentication (sqlplus / as sysdba)

    Hello,
    When I try to connect locally ,using OS authentication ( sqlplus / as sysdba ), on a Oracle database, I get "ORA-01031: insufficient privileges" error.
    OS: Windows XP
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod.
    connecting as sysdba using sys/pasword works.
    I have setup :
    -> Log on as a batch job
    -> Log on as a service
    I am also member of ORA_DBA group.
    I mention that connecting "/ as sysdba" worked many months after I've installed the Oracle database. But at some moment in time connecting "/ as sysdba" was no longer possible.
    C:\>sqlplus / as sysdba
    SQL*Plus: Release 10.1.0.3.0 - Production on Wed May 23 11:08:52 2007
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    ERROR:
    ORA-01031: insufficient privileges.
    Thank you for any suggestion.

    Hi,
    I have the same issues from the beginning..
    I have two Oracle homes ( One for earlier installed SOA10g, and another for current installing SOA11g).
    I have the right sqlora.net file. I have removed the old path and reset to point the new oracle home. I have this home entry as the first entry in my Universal installer too.
    I AM ABLE TO CONNECT WITH sys USER AS SYSDBA on THE SAME SYSTEM ( I MEAN WHERE i INSTALLED THE DATABASE) USING THE command prompt.
    But I am not able to connect as the SYSDBA with sys ACCOUNT through the SQLDeveloper tool. or RCU tool? Any help please. Again I am able to connect as a normal user through the SQL developer using the SYSTEM account.
    -- Khaleel

  • Trying to connect to Oracle using Web App

    Hi Guys, I'm hoping someone here can help. This question goes out to anyone who has tried to connect to an Oracle database via web application written using Java Server Pages and Servlets. There is a specific file called the context.xml that contains the connection parameters to Oracle. Please note thread of conversation derived from a Java forum I've posted to earlier.
    The bottom line is that "orcl" is the SID value for the Oracle database. The connection pool apparently isn't able to create connection objects based on the SID value given. When I attempt to run the test.jsp page in the browser I get the error message noted below. I still don't know how to fix this and simply must get it working.
    Any advise is welcome.
    Alan
    I'm putting together a test page test.jsp in Tomcat that attempts to access my Oracle database running on the same machine. The point here is just to make sure I have the connection parameters correctly set before proceeding too far into the web application.
    In my context.xml file I have the following:
    <Resource name="jdbc/myoracle" auth="Container"
                  type="javax.sql.DataSource" driverClassName="oracle.jdbc.OracleDriver"
                  url="jdbc:oracle:thin:@127.0.0.1:1521:orcl"
                  username="BASIC_USER" password="tiger" maxActive="6" maxIdle="3"
                  maxWait="10000"/> In my web.xml file I have the following:
    <resource-ref>
          <description>Oracle Datasource example</description>
          <res-ref-name>jdbc/myoracle</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
    </resource-ref>My test.jsp page simply attempts to open a connection with the database and to display data from one table.
    When I go into the browser to open the page I get the following SQLExceptioin error:
    SQL Problem: Cannot create PoolableConnectionFactory (Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor )
    SQL State: null
    Vendor Error: 0
    It refers to the SID value in the descriptor. Well...you can see from the descriptor that I've written "orcl". That is the SID. url="jdbc:oracle:thin:@127.0.0.1:1521:orcl"
    At this point I'm spinning my wheels. I don't know what else to do to make this work.
    Please advise.
    Alan
    [Dukes Earned 111] Karanjit
    Posts:459
    Registered: 2/28/08
    Re: Tying test jsp page in Tomcat
    Jul 23, 2009 12:31 AM (reply 1 of 2) (In reply to original post )
    Click to email this message
    Oracle docs say:
    ORA-12505:TNS:listener does not currently know of SID given in connect descriptor
    Cause: The listener received a request to establish a connection to a database or other service. The connect descriptor received by the listener specified a SID for an instance (usually a database instance) that either has not yet dynamically registered with the listener or has not been statically configured for the listener. This may be a temporary condition such as after the listener has started, but before the database instance has registered with the listener.
    Action:
    - Wait a moment and try to connect a second time.
    - Check which instances are currently known by the listener by executing: lsnrctl services <listener name>
    - Check that the SID parameter in the connect descriptor specifies an instance known by the listener.
    - Check for an event in the listener.log file.
    [Dukes Earned 0] ashiers
    Posts:126
    Registered: 12/26/01
    Re: Tying test jsp page in Tomcat
    Jul 23, 2009 7:40 AM (reply 2 of 2) (In reply to #1 )
    Click to email this message Click to edit this message...
    Thanks for the description for the Error message 12505. It doesn't help much. This I did find out by running this command: LSNRCTL SERVICES LISTENER
    C:\>LSNRCTL SERVICES LISTENER
    LSNRCTL for 32-bit Windows: Version 11.1.0.6.0 - Production on 23-JUL-2009 11:12
    :00
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    Services Summary...
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:545 refused:0 state:ready
    LOCAL SERVER
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:64 refused:0 current:0 max:1022 state:ready
    DISPATCHER <machine: DOHWS1911, pid: 804>
    (ADDRESS=(PROTOCOL=tcp)(HOST=DOHWS1911)(PORT=1101))
    Service "orcl_XPT" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:545 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully
    So, according to this orcl is the correct SID parameter. Please advise further.
    Alan

    sb92075 wrote:
    Listener Log File c:\oracle11g\diag\tnslsnr\DOHWS1911\listener\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DOHWS1911)(PORT=1521)))
    Please note HOST=DOHWS1911.
    Does DOHWS1911 map to 127.0.0.1?
    post results from following command
    tnsping orcl
    Please post last 2 - 3 dozen lines from c:\oracle11g\diag\tnslsnr\DOHWS1911\listener\alert\log.xml
    take very soon after the error is reported
    Yes DOHWS1911 is the host name given to my computer and probably is mapped to 127.0.0.1.
    When I ran tnspring orcl I get:
    C:\>tnspring orcl
    'tnspring' is not recognized as an internal or external command,
    operable program or batch file.
    Following is the tail end of the log.xml file after attempting to connect:
    <msg time='2009-07-23T16:41:02.031-03:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DOHWS1911'
    host_addr='10.1.186.192'>
    <txt>23-JUL-2009 16:41:02 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2009-07-23T16:41:20.031-03:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DOHWS1911'
    host_addr='10.1.186.192'>
    <txt>23-JUL-2009 16:41:20 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2009-07-23T16:41:53.031-03:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DOHWS1911'
    host_addr='10.1.186.192'>
    <txt>23-JUL-2009 16:41:53 * service_update * orcl * 0
    </txt>
    </msg>
    <msg time='2009-07-23T16:42:01.562-03:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DOHWS1911'
    host_addr='10.1.186.192'>
    <txt>23-JUL-2009 16:42:01 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=services)(ARGUMENTS=64)(SERVICE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DOHWS1911)(PORT=1521))))(VERSION=185599488)) * services * 0
    </txt>
    </msg>
    <msg time='2009-07-23T16:42:02.546-03:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DOHWS1911'
    host_addr='10.1.186.192'>
    <txt>23-JUL-2009 16:42:02 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=SYSTEM))(COMMAND=status)(ARGUMENTS=64)(SERVICE=(ADDRESS=(PROTOCOL=TCP)(HOST=DOHWS1911)(PORT=1521)))(VERSION=185599488)) * status * 0
    </txt>
    </msg>
    <msg time='2009-07-23T16:43:30.984-03:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DOHWS1911'
    host_addr='10.1.186.192'>
    <txt>23-JUL-2009 16:43:30 * (CONNECT_DATA=(SID=mysid)(CID=(PROGRAM=)(HOST=__jdbc__)(USER=SHIERSAJ))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1594)) * establish * mysid * 12505
    </txt>
    </msg>
    <msg time='2009-07-23T16:43:31.000-03:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='DOHWS1911'
    host_addr='10.1.186.192'>
    <txt>TNS-12505: TNS:listener does not currently know of SID given in connect descriptor
    </txt>
    </msg>GOD! It doesn't get any more Greek than this!
    What does it all mean? HELP!
    Alan

  • Connect to Oracle using DAC Client in command line

    Hi,
    I'm trying to connect to Oracle DB using DAC client. I have configured a connection and tested, it works. When I use the connection to connect to the DB, its giving me an error
    "unknown error, please start in command line mode and see the stack error"
    How do I start in command line mode? Could anyone provide more information on this.
    Thanks in advance,
    RK

    In oracle db, you can create 3 different types of users:
    (1) create user x identified by pwd.
    In this case the user x will connect to the db using username/password, in this example x/pwd
    (2)create user ex identified externally;
    In this case the user ex will connect to the db using "/" and the sqlnet.authentication_services parameter value in the client and server sqlnet.ora will be used in determining the oracle external authentication adapter to use. For oracle windows client/db server, this is by default set to NTS. NTS is the oracle windows authentication adapter.
    (3)create user gx identified globally as 'CN=gx,O=Oracle';
    In this case also the user gx will connect to the db using "/" and oracle ssl will be used to authenticate this user to the db.
    It would not be possible to "Create user x identified externally" and connect with x/pwd.
    Please clarify.
    To help you in isolating the problem, I will need the following info:
    (1)
    what are you connecting as to execute your plsql. Are you using sqlplus ? How are you connecting (connect "/ as sysdba", connect "/", connect x/pwd) ?
    (2)
    what create user statement did you use to create the user
    (3)
    is odp.net and the db server on the same machine.
    (4)
    did you run your plsql from the same machine as the db server.
    (5)
    if odp.net is on a different machine than db server, did you try connecting from odp.net machine to db server, using sqlplus ?

  • Can not connect to Oracle using ASP, but i can connect  to VB6.0

    i have installed ODAC 11.2.0.2.1(latest version) and i m trying to connect to Oracle 11G server
    So no vb programs are worked so i have installed oracle 11g client and vb programs are all started to work,
    but when i try to connect it using asp. i m getting the following error.pls help me
    Error Type:
    OraOLEDB (0x80004005)
    ORA-12154: TNS:could not resolve the connect identifier specified
    conn.asp, line 12
    on line 12, i did this,
    Conn221.Open ConnString221
    but my original connection code is
    ConnString221 = "Provider=OraOLEDB.Oracle;Password=newbie;User ID=newchips;Data Source=HIS241;PersistSecurity Info=True;PLSQLRSet=1"
    Conn221.Open ConnString221
    but the same piece of code is working in my friend PC,she installed only 8i Client and this is working perfectly...

    Please Double check your database name...
    Regards,
    Raghu

  • Connectivity in flex to oracle using java

    hello,
            i have to connect flex  3 with java which uses oracle as a database.How i can connect flex with java.I am trying to access web services provided by          java in flex.Is it possible? Please help me out.
              Thanks,

    Hi,
    Are you using Flash Builder to build your application?
    Definitely you could connect to web services from flex .
    May be in your case, expose the JAVA class as web services using AXIS(may be) and access it as shown below:
    Sample snippet:
    <mx:WebService
      id="service"
      result="onResult(event)"
      fault="onFault(event)"
      wsdl="http://abc.cd.com/ PhoneNumber.asmx?WSDL/>
    Refer: http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_3.html  for more details.
    Please revert back if you face any issue
    Thanks,
    Balaji
    http://balajisridhar.wordpress.com

  • Direct connect to Oracle using Delphi

    How I can direct connect and transfer data from Oracle Database using Delphi.
    Not via ODBC driver!!!

    There are several BDE replacements that allow you to connect to
    Oracle from Delphi with out BDE or ODBC
    DOA- Direct Oracle Access from Allaround Automation ~$200.00
    http://www.allroundautomations.nl/index.html
    NCOCI8 is freeware.
    Goto to www.kylecords.com and they list BDE replacements.
    I use DOA and their PL/SQL developer systems from Allaround
    Automations and they are both excellent systems with excellent
    support.

  • Problem connect to oracle using ORACE

    Hi,
    Has anybody been able to connect to Oracle 10g using the latest ORACE(Free PL/SQL code editor)? The application hangs when I click on connect. Do I have to install the Oracle Instant Client if I have Oracle 10g Enterprise Edition installed?
    Any sort of help would be greatly appreciated.

    Do I have to install the Oracle Instant Client if I have Oracle 10g Enterprise Edition installed?
    No, But make sure that ORACLE_HOME variable is set correctly.
    What is the name of the PL/SQL editor you want to use?
    You can try SQL Developer.It is free as well.

Maybe you are looking for

  • Cannot install any apps from Creative Cloud in corporate environment.  Suspsected Firewall issues.

    Hello all.  I subscribed successfully and easily to CC on my home PC (iMac) and downloaded a few apps.  All is fine.  I wanted to download those same few apps on a remove machine I use several times a week (Win 7). After many many attempts of trying

  • Creating a role to update a view

    Hi. Oracle 10.2.04. Linux 4. I have been reading about updating views. The Oracle documentation http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/views001.htm#i1006887 states that: The owner of the view (whether it is you or another user

  • Possible to hide Grouping name for certain tracks only?

    I am organising my classical music library and using the Grouping column with good success. However, it would be visually better to be able to hide the Grouping name for the subsequent movements of a piece. For example in a Dvorak album: ..Grouping*.

  • Target database size limit to monitor

    Hi, What is the Maximum database size OEM 10g Grid Control can monitor? Regards, msen

  • Continue receiving a question mark

    Hello! Everytime I try to view a slideshow online, all I am able to see is a Blue "Q" with a question mark through it. I do have quick time, what is the problem? I have been trying to figure this out for a couple of weeks. Thanks!