Issue with Oracle 10g database connectivity

Hi,
Oracle 10g Express edition is been installed in my machine at the location C:\Oracle10g.
When i tried to connect the same from toad it is working fine.
Visual studio-2008 is been installed in machine at loc C:\Program files(x86)\
Problem I am facing is unable to connect Oracle 10g from vb.net application.I am connecting usig Oracle Provider for OLE DB but the program directly coming to exception block
with out connecting to database.
My OS is Windows7 and I am thinking oracle 10g Express will not support completely to this OS.Please suggest me to resolve this issue and comapatable Oracle DB for the same.
Edited by: 1909 on Apr 25, 2011 12:17 AM

Hi,
Try uninstalling and installing VS at the path which does not include brackets. Have a look at my thread.
Re: Database engine setup for 10.2.0.5
Thanks,
Jignesh

Similar Messages

  • I am trying to connect oracle develper suit form with oracle 10g database

    i am trying to connect oracle develper suit form with oracle 10g database
    but when i pass username and password
    this message apperars
    ORA-12560:TNS:protocol adapter error
    every time even i try to connect Report or Designer each time same problem
    making no connection .
    can any body help can help me to reslove this prblem
    Arshad khan

    Duplicate thread:
    Re: connection problem

  • Oracle 6i forms issue with Oracle 9i Database

    Hi Friends,
    I am having Oracle Forms Developer installed with patchset18.The Version is 6.0.8.27.0
    When i connect the forms builder to 9i Database (9.2.0.1) the form builder is getting crashed but i am able to connect the forms builder to e-business suite database(9.2.0.6)
    I tried installing 9i Database(9.2.0.1) on windows 2003 server,windows xp,windows 2000.
    When i connect my forms builder to any of these databases the forms builder is crashing with don't send message error on (ifbld60.exe).
    Is there any compatibility issue between forms builder(6i) and oracle 9i(9.2.0.1).Please suggest me.
    Regards,
    Arun .N

    Forms 6i connects to Oracle 9 databases just fine, even though it is no longer certified by Oracle.
    First of all, can you connect to the database with SQL Plus? Make sure that works first.
    The other thing that comes to mind is the AL32UTF8 character set. Forms 6i and other older Oracle software cannot connect to databases using it. But I have only seen that problem with Oracle 10g databases, so I am not sure about the Oracle 9 db.
    Here is a thread discussing the problem: Re: connecting form 6i  to oracle database 10G express edition

  • Compatible of Oracle discover 4 with Oracle 10g Database

    Could you please let me know if Oracle Discoverer version 4 is compatible with Oracle 10g database?
    We are migrating Oracle database 8i to 10g but want to if we can still live with the Discoverer 4.

    Interesting question.
    As long as you're not talking about 4i (ie: the 'plus-type' version), then it may well work. Reason is that back in v4.x, you'd just be running a client / server version so not using any of the iAS framework so it may be just like running something like: TOAD wherein you're just accessing the database directly.
    However, as you have to have the EUL in the database, etc. - I would guess that the best thing to do is to simply try it.
    As it's just client / server, you could see if it works as a test case in probably 15 mins. or so. If you do, let us know as useful (albeit, eventually out-dated when 4.x is finally trashed by everyone) information.
    Russ

  • Regarding  working with oracle spatial database connections

    sir/madem,
    i am an engg student, my final year project on inserting data into oracle spatial database through java /jsp , i am working with oracle spatial database 10g/11g,
    i want know how to insert/retrive/ manuplute the spatial data into oracle spatial databse for 10g/11g, through java programing,
    the syntax for connection of oracle spatial database 10g/11g, needed,
    i have less time to finish my project
    i hope u  help me
    thank u
    kasim
    ([[email protected]|mailto:[email protected]])

    For database access from Java, you will use JDBC.
    For the specifics of the oracle spatial database, you'll have to check the documentation/forum of Oracle.
    * [How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html]
    * [JDBC Tutorial|http://java.sun.com/docs/books/tutorial/jdbc/index.html]

  • Help with Oracle 10g Client Connectivity from Linux to IBM SAN storage

    Hello Oracle Experts,
    This is my first post. My client is having oracle 10g database up and running in IBM SAN storage.
    We have some NMS tools running in Red Hat Linux version 5. So, these tools require connectivity to Oracle database which is residing in SAN storage connected with the Fibre cables.
    How do I establish the connectivity from Linux to SAN storage. If would be glad if you can explain me the steps and also if there is any pre-installation/post-installation, patches and procedures involved.
    If it is IP based network we normally give the IP address of the host running the database server. I have no idea about SAN storage connected with Fibre cable.
    Please guide me to establish the connectivity from linux 5 to SAN.
    Thanks.
    Regards,
    RaviShankar.

    user13153556 wrote:
    Hi Rajesh,
    Actually I will not be touching the Oracle instance SAN box directly. I will only access the database from another machine. I my case it is Linux box.
    So, my question is how do you make the Oracle Client in Linux box to connect to Oracle instance running in another non ip based machine SAN storage.Install Oracle client on this Linux machine ..
    Make sure you have network connectivity from linux machine to database server. You need to connect to server where db instance is running and you need not to bother about SAN storage.
    make tns entry into client $ORACLE_HOME/network/admin/tnsnames.ora file.
    Use sqlplus to connect to database using client.
    Regards
    Rajesh

  • Java Connection Pooling issue with Oracle 10g Express Edition

    Hello
    I have a Java based web application that uses the Oracle 10g Express Edition database. I am using a connection pool to get connections to the database.
    I use the NetBeans IDE and run my web application on the bundled Tomcat server(5.5.7) that comes with the IDE. Though when I initially run the application from the IDE, the connection pool is set up fine, when I recompile my java code and try to run the application again, I get the following error each time:
    Listener refused the connection with the following error:
    ORA-12516, TNS:listener could not find available handler with the
    matching protocol stack.
    The logs before the error shows up, indicate that the connection pool object is fine and gives me the number of available connections and the number of active connections and so on, which I have printed from the constructor of the Connection Pool class:
    For e.g.:
    Cache size = 17
    Available Connections = 17
    Cache Limit = 1000
    Active size = 0
    However, if I kill my Tomcat server process and run the application again, it works fine with no error.
    I looked around for possible causes and solutions and all I could find
    was increasing the processes parameter value in the init.ora file. I have increased the parameter value to from 100 to 20000 now, in increments of 500/1000 each time but it hasnt worked so far.
    Someone else suggested that I increase the size of my connection pool; I initially had it set to a minimum limit of 5, an initial limit of 10 and a maximum limit of 1000. However if I set the Initial Limit to anything above 17 connections, I see the following log on the Bundled Tomcat log and my application doesn't run at all:
    Log: Loading JDBC Driver : class=oracle.jdbc.driver.OracleDriver ...
    Log: Loaded JDBC Driver
    Log: Connection with URL=jdbc:oracle:thin:@localhost:1521:xe as username/password
    Error code not handled : 0
    Exception Message :java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12519, TNS: no appropriate service handler found
    The Connection descriptor used by the client was:
    localhost:1521:xe
    // End of log
    And the Bundled Tomcat server automatically shuts down.
    Again the System.out statements from the Connection Pool class constructor show that the cache has been initialized and that currently there are free connections available in the pool.
    E.g.
    Cache size = 18
    Available Connections = 18
    Cache Limit = 1000
    Active size = 0
    Has anyone faced anything similar? Could someone please suggest what I'm doing wrong here and what I should do to set right this problem?
    Swetha

    hello, please pardon me, my english is basic. i do of my best. i had the same problem until reading the pdf documentation 2 days for java devvelloper.it is simple, follow this way.
    try {OracleDataSource ds;
         Connection conn;
      ds = new OracleDataSource();
      ds.setURL("jdbc:oracle:thin:@localhost");
      conn = ds.getConnection("userid","password");
    Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
    don't forget to Dowload the user client of oracle Express Edition. do the rest of your program and it will work. take a look to the documentation pdf for java develloper. all it is explained.  good look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Server Issue with Oracle and ASP Connection

    We got a new server and are trying to set it up with Oracle Client to allow our web application to connect to the database server. We are getting connection errors, but on the old server, it works fine. We have Windows 2003 and IIS 6.0 on the new server and Win2K and IIS 5.0 on the old server and it's Oracle 8i. Here is the error...
    Err.description=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. Provider is unable to function until these components are installed.
    Err.number=-2147467259
    ... We have the client installed, so not sure what to do from this point on. Can it be some type of a sharing issue, or network firewall issue?

    Have you granted the IIS user read & execute access to the %ORACLE_HOME% directory and subdirectories?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Jdeveloper 10g with oracle 10g database

    i am evaluating jdeveloper 10g with the oracle database 10g. i am trying to invoke the oracle databse results in the applet. the applet code has been compiled successfully.but when i am trying to execute the applet the error found is 'no suitable driver'.
    how do i can resolve this problem.

    This is not a sales forum. As I already said you should contact an Oracle sales person which can answer your question. There are possible migration paths which will save you some money (against buying all new licences).
    I don't say that you have to upgrade to 12c. You can develop applications using the older technology using jdev 10g together with OAS 10g and Oracle DB 10g.
    If you want to use newer technology (jsf2.0...) you have to update as these are not available in 10g. The question if you need to update to 11g or 12c (jdev) you have to answer yourself and may ask the salesperson too. 12c is the latest technology and the question is if you need the latest. 11g if the jdev version which is used internally by Oracle and is on the marked quite some time.
    Timo

  • Oracle forms 10g 32bit with Oracle 10g database on windows itanium for x64

    Hi.....
    Currently we are planning to have this configuration
    1. Oracle10g RAC on HP rx6600 with windows itanium for x64 architecture
    2. Oracle Application Server (32-bit) on windows 2003 (forms & reports services)
    3. Application migrated from 6i to 10g
    I have to things to ask about?
    1.Will it be ok to connect from an application compiled with _(32-bit)_ 10g forms to a x64_ platform without problems ?
    2. Can we connect forms and reports of developer 6i +(32-bit)+ to 10g RAC on x64_ platform if the character set is not UTF8 ?

    1.Will it be ok to connect from an application compiled with (32-bit) 10g forms to a x64 platform without problems ?I did this also. A 32bit Oracle Form(10gR2) on Linux and a 64 bit (10gR2) database. And this works without a problem. Since you didn't mentioned your versions I would suggest you look for your combination if it is certified combination.
    2. Can we connect forms and reports of developer 6i (32-bit) to 10g RAC on x64 platform if the character set is not UTF8 ?I don't know if the combination is certified. But regarding your character set, you have a character set setting (NLS_LANG, DEVELOPER_LANG, etc.. ) for your developer 6i, your database has it's own character set. Depending on those setting a conversion of the character set will take place between your developer 6i and the database, when you get and put data to the database. But like I said I don't know if developer 6i and 10g is still a supported combination.

  • Using Reports 3.0.5 with Oracle 10G database

    We are in the process of upgrading from Oracle 8.0.5 to 10g running under Windows 2000..
    Everything has been done using Developer Forms(5.0.6.8.0) and Reports(3.0.5.8.0).
    In testing the Forms seem to be OK.
    Some of our reports work and some don't.
    When I load them in the reports developer, and try to recompile, I either get a Windows error (R30DES32.exe) or it keeps telling me 'Report contains uncompiled PL/SQL' and if I open a PL/SQL block from a function it displays:
    Error 0, at line 0, column 0
    ORA-00600: internal error code, arguments: [17069], [52974580], [], [], [], [], []
    I know this is an older version of Reports, and Oracle states that it is desupported and has not been tested with version 9 or 10.
    Do I HAVE to upgrade my version or Developer or is there any other work arounds or things I am missing?
    I've been trying to get upgrades for a while but the person in charge has been having other ideas.

    Hi Hanse,
    Thanks for your suggestions, in fact this is my third upgrade to 6.0 and want to apologize for not writing this before but this is my first one with such a large database, the other upgrades I have done were with 150Gb and 210 Gb but they did not took much during the downtime. I found this info https://websmp109.sap-ag.de/upgradedb where we can see the SAP Upgrade Database and the media time for a 1300 Gb with the downtime minimized is 86 Hours! that is more than 3 days and this company is 7x24x365 and is one of the biggest enterprise in this country so more than 3 days is  a big money lost, in fact the test run they did took 7 days! so you can imagine the scenario.
    Right now I agree the only option is to do Archiving first but the people here told me it is not possible.
    The upgrade will be done in a new server so I don´t know if exists some way to use this (Parallel server) to rush things out like doing upgrade on the new server and then move the changes from the old server to the new one, I know it sounds crazy because we are talking of two different versions but in this cases I have to look for all kind of solutions.
    What do you think?
    Thanks,

  • User on Mac, Server with Oracle 10g Database on Windows

    What can we do to help a user with a Mac access the database??
    And, as a second question, would that user be able to later install/use Developer Suite tools?

    You need to install 10g client on his MAC
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10204macsoft.html
    I am not very updated about the Developer suite but based on this link
    http://www.oracle.com/technology/software/products/ids/index.html
    There is no Dev suite available for MAC; only JDeveloper is there.

  • Oracle 11g ODAC with Oracle 10g Database

    Hi,
    I am trying to work with SDO_GEOMETRY from .Net.
    When selecting * to a DataSet exception is thrown - Unknown column type.
    So, i saw that Oracle Data Provider for .NET 2.0 11.1.0.6.20 supports User Defined Types. My question is this:
    If i will install only ODP 11.1.0.6.20, will my system still work with everything else from 10g version?
    (It's very hard to convince bosses to transfer all DB to 11g just because of UDT, so it's not an option).
    Thanks in advance,
    Max

    I also just discovered this thread:
    Which version of ODT should I use?
    That does it for me.

  • Installation issue with Oracle 10G Express Edition

    I have installed both this product and the Enterprise Manager in the past (on the same laptop that I am using now), however when I try to download the file for my current class I get a dialog box that tells me that the file type is unknown and Windows does not recognize it. I am 3 weeks into the class have not been able to simulate any of the exercises because I cannot download the product. I am working on Windows Vista (ughh! same OS I used in the past), any help would be greatly appreciated.

    Did you try downloading from the below link?
    http://www.oracle.com/technetwork/database/express-edition/downloads/102xewinsoft-090667.html

  • Discoverer 4i with Oracle 10g database

    Hello,
    Can we use Discoverer 4i to create EUL on database 10g version 2. Thank you.

    Yes, it works fine, I've tried it. The only thing is that it didn't recognized the tnsname so i had to imput (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ipadress)(PORT=port)))(CONNECT_DATA=(SERVICE_NAME=sid)))

Maybe you are looking for