ODP 2.0 and 10g Express

Does the ODP 2.0 with Tools for .net 2.0 work with the 10g Express edition ?

Dupe Thread.
Oracle Express 10g Edition and ODT for VS.NET Release 10.2.0.2.20

Similar Messages

  • Confliction between 10g and 10g express edition

    hello friends......i had oracle 10g enterprise edition in my system and then i installed oracle 10g express edition...and the problem is that if m trying to login through the sys account then it gets login in the 10g express edition and m not able to gain acess to my 10g enterprise edition database....so
    my question is how i should get login in my 10g enterprise edition using the sys account......so please help me out
    thanx in advance

    How are you trying to login, from the command prompt? I don't use XE but if you are trying from command prompt, what happens when you issue,
    c:\set oracle_sid=<your EE db name here>After this , try to do the login and post feedback.
    HTH
    Aman....

  • Can I use ODT 10.2 with Visual Studio 2005 and 10g Express?

    If so could anyone provide a pointer to some installation instructions? The one time I tried to install it I didn't seem to be able to connect to the database from within VS. I had to resort back to the previous version of ODT running under VS 2003.
    Thanks in advance,
    Stewart

    The special version of ODT for Express only works with VS 2003 and it is an older version of the software that does not include the PL/SQL debugger.
    That being said, you can install the latest ODAC and use it with Express with no problem.
    Go here:
    http://www.oracle.com/technology/software/tech/windows/odpnet/index.html
    ..and download the first link you see. Install it in the default Oracle home it chooses. Then you'll need to configure the tnsnames.ora file in the \NETWORK\ADMIN directory such that there is an alias for your Express database... you could probably just copy the tnsnames.ora file from the Express home to the new oracle home to achieve this.

  • Install problems using VISTA, Oracle 10g Express edition and VS2005

    Hi,
    Has anybody got this to work yet?
    I'm on Vista Release Candidate 1, VS2005 and 10g Express.
    When I try to install the tools (ODTwithODAC10202) the install crashes VS2005.
    I can see the tools on the Visual studio menus, but any attempt to use them gives me a "Oracle Developer Tools for Visual Studio failed to load" error message.
    Any ideas?

    Have you got the VS 2005 addin to work on Vista? I installed on XP then upgraded to Vista (RTM) and the add-in no longer works. Am wondering whether to uninstall/reinstall or wait for Oracle to certify use with Vista.

  • Query from OCI-11.2.0.3 library to 10g Express DB not returning results

    Hi,
    I am trying to fetch column data using the following query run on 10g Express DB running on Windows 7.
    select a.column_name, a.data_type, a.data_length, a.NULLABLE, nvl(c.CONSTRAINT_TYPE, 0), nvl(e.index_type, 0) from
    dba_tab_cols a left join dba_cons_columns b on ( a.OWNER=b.owner and a.TABLE_NAME=b.TABLE_NAME and a.column_name=b.column_name)
    left join dba_constraints c on (b.CONSTRAINT_NAME=c.CONSTRAINT_NAME and b.OWNER=c.owner and b.TABLE_NAME=c.TABLE_NAME)
    left join dba_ind_columns d on ( a.OWNER=d.table_owner and a.TABLE_NAME=d.TABLE_NAME and a.column_name=d.column_name)
    left join dba_indexes e on (d.index_name=e.index_name and a.OWNER=e.owner and a.TABLE_NAME=e.TABLE_NAME)
    where a.table_name=:TBLNAME
    My VC++ application is linked against "instantclient-sdk-nt-11-2-0-3-0\lib\msvc\oci.lib".
    Calls to OCIStmtPrepare2 and following OCIBindByName are succeeding.
    text inputval[32] = {'\0'};
    ub2 inputvallen = 32;
    OCIBind *pbnd = 0;
    ret = OCIBindByName(stmthp, &pbnd, errhp, (text*)":TBLNAME",
    strlen(":TBLNAME"), (dvoid*)inputval,
    (sword)inputvallen, SQLT_STR, (dvoid*)0,
    (ub2*)0,(ub2*)0, (ub4)0, (ub4*)0, OCI_DEFAULT);
    I am setting the TBLNAME in single quotes in inputval variable before the call to OCIStmtExecute, which is also passing.
    But, OCIStmtFetch2 always returns 0 rows (OCI_NO_DATA).
    If I change this query to use the tablename explicitly in the above select statement, it works fine and I get rows > 0.
    What could be wrong in this call to OCIBindByName? Or is there a compatibility issue between OCI-11.2.0.3 library and 10g Express database?
    Please guide.
    Thanks and Regards,
    - ganesh

    What could be wrongDunno, if you can get the SQL working outside the OCI setup must be something else where the code isn't handling the :TBLNAME as expected.
    This forum {forum:id=168} may get better help there or one of the other programming forums.

  • Accessing 10g express on Ubuntu server 9.10 ?

    I installed ora 10g express on ubuntu server 9.10. I did required things such as increasing swap space, setting defaults for xe (port 8080/1521/boot at startup). Now, my questions are regarding accessing the database from command line on local machine and/or sql developer from remote.
    1- I restart computer many times, but do not see a message saying oracle started at boot time ( like for others such as mysql/postfix). How do I know if oracle started? 'ps aux | grep oracle' shows nothing. So I manually start xe using 'sudo /etc/init.d/oracle-xe start' and get a message saying 'starting listener and 10g express'. ps still shows nothing.
    2- I suspect oracle may not have started. If it hasn't, where do I check to see why?
    The system (virtual machine) has enough memory (1gb) and swap (1.4 gb), so memory is probably not a problem. I also have set up ORACLE_SID and ORACLE_HOME properly in my .profile.
    3- I do sqlplus, and enter 'system' and password. I get a message 'ora-01034: oracle not available' and 'ora-27101: shared memory realm does not exist. Linux error : 2: no such file or directory.
    Can someone please help me with this?
    PS: As an aside: I did carry out exactly same steps on ubuntu desktop, and can connect with no problem

    >
    1- I restart computer many times, but do not see a message saying oracle started at boot time ( like for others such as mysql/postfix). How do I know if oracle started? 'ps aux | grep oracle' shows nothing. So I manually start xe using 'sudo /etc/init.d/oracle-xe start' and get a message saying 'starting listener and 10g express'. ps still shows nothing.
    >
    Check your alertlog.
    tail -500 $ORACLE_BASE/admin/XE/bdump/alert_SID2- I suspect oracle may not have started. If it hasn't, where do I check to see why?
    The system (virtual machine) has enough memory (1gb) and swap (1.4 gb), so memory is probably not a problem. I also have set up ORACLE_SID and ORACLE_HOME properly in my .profile.
    >
    alertlog ->>> see above
    >
    3- I do sqlplus, and enter 'system' and password. I get a message 'ora-01034: oracle not available' and 'ora-27101: shared memory realm does not exist. Linux error : 2: no such file or directory.
    Can someone please help me with this?
    PS: As an aside: I did carry out exactly same steps on ubuntu desktop, and can connect with no problem
    >
    Try the following.
    $ sqlplus /nolog
    SQL>startupShow us output of the above.
    Regards,
    Phiri

  • What are the major differences between oracle 10g and oracle express 10g

    Hi
    Can anyone tell, What are the major differences between[b] oracle 10g and oracle express 10g.
    Or if you know any URL, then please do let me know.
    Advance Thanks
    JC

    Dear sir,
    here it is.
    http://www.oracle.com/database/product_editions.html

  • Installing and Running Oracle 10g Express Edition on Microsoft Vista

    My computer is running on Microsoft Vista.
    I downloaded Oracle 10g Express Edition for Vista.
    I ran the setup.exe. Everything went well there.
    But, when I open the SQLPlus program, a window prompts me to enter my username, password and host string.
    Can someone please tell me what it is expecting for these fields? I am using the same username and password I used to create my Oracle account.
    But what is the host string?
    Appreciate it.
    Thanks.

    This may help
    http://sites.google.com/site/delphibasics/home/delphibasicsarticles/installingoracledatabase10gexpresseditiononwindowsvista
    Check out the section "Access demonstration data"
    Also this is not the best place to post a question of this nature. This might be better :
    Database Installation
    Best Regards
    mseberg

  • Active ODP when both 9 and 10g are installed...

    I have both ODP 9i and ODP 10g (along with the Oracle 10g client) installed on my workstation. How does one set up one or the other to be the 'active' ODP client? For instance, I have an application that I developed under ODP 9i... because I developed this under ODP 9, I want it to run under ODP 9 on my or anyone else's workstation. However, when I view it in the Visual Studio 2003 IDE, it shows ODP 10 as the 'active' client. Even when I run it, I find it is using ODP 10 (I know this because I have a Help...About screen in my runtime that displays the loaded assemblies) Even if I install it on a plain workstation (i.e. no Visual Studio 2003) with both 9i and 10g installed, and even though it was fully compiled using 9i, it still shows up as using the 10g ODP client. I don't want that at this time - if I compile it under 9i I want it to use Oracle 9i... Otherwise, what is the sense of having both clients on the machine?
    So.... bottom line... is there a way to set one of the ODP clients to be 'active' even though both clients are installed?
    Thanks in advance.
    Tom

    Hi,
    By default, ODP installs publisher policy files to redirect to the latest version of ODP, which would make an app compiled with 92x odp use the 10x odp instead. If you dont want that to happen, delete the oracle.dataaccess publisher policy files from the GAC, but then you'll get no redirection at all. IE, you'll have to have the exact version the app was compiled with on that box to run the app.
    Or, as msolnit pointed you to above, there's an article on the MS site that explains more about it, and other ways to prevent it on a per-application basis (see the Bypassing Publisher Policy section of that article)
    Cheers, hope it helps.
    Greg

  • How to handle multiple spatial operators and\or-ed in 10g express(locator)?

    I've noticed that I cannot run certain queries in 10g express, which run perfectly in 10g enterprise.
    The following query is an example:
    SELECT S_ID, SDO_NN_DISTANCE(1) from MAP.BYGG_POLY
    where
    SDO_WITHIN_DISTANCE(GEOM, mdsys.sdo_geometry(2001, NULL, sdo_point_type(441702.780259307,6445401.66207384,NULL), NULL, NULL), 'distance=17.4620649504359') = 'TRUE'
    AND
    SDO_NN(GEOM, mdsys.sdo_geometry(2001, NULL, sdo_point_type(441702.780259307,6445401.66207384,NULL), NULL, NULL), 'sdo_num_res=10', 1) = 'TRUE';
    In the express edition the query results in an error message:
    ORA-13249: SDO_NN cannot be evaluated without using index
    But if I split the select into two seperate selects, I get no error:
    SELECT S_ID from MAP.BYGG_POLY
    where
    SDO_WITHIN_DISTANCE(GEOM, mdsys.sdo_geometry(2001, NULL, sdo_point_type(441702.780259307,6445401.66207384,NULL), NULL, NULL), 'distance=17.4620649504359') = 'TRUE';
    SELECT S_ID, SDO_NN_DISTANCE(1)  from MAP.BYGG_POLY
    where
    SDO_NN(GEOM, mdsys.sdo_geometry(2001, NULL, sdo_point_type(441702.780259307,6445401.66207384,NULL), NULL, NULL), 'sdo_num_res=10', 1) = 'TRUE';
    Moreover I've found that inner select also seems to work as a workaround.
    So the following query is valid in the express edition:
    SELECT S_ID, SDO_NN_DISTANCE(1)  from MAP.BYGG_POLY
    where
    SDO_NN(GEOM, mdsys.sdo_geometry(2001, NULL, sdo_point_type(441702.780259307,6445401.66207384,NULL), NULL, NULL), 'sdo_num_res=10', 1) = 'TRUE'
    AND
    S_ID in (
    SELECT S_ID from MAP.BYGG_POLY
    where
    SDO_WITHIN_DISTANCE(GEOM, mdsys.sdo_geometry(2001, NULL, sdo_point_type(441702.780259307,6445401.66207384,NULL), NULL, NULL), 'distance=17.4620649504359') = 'TRUE');
    Could someone please explain to me why the first query is invalid in the express edition?
    ...or am I doing something wrong?

    SDO_RELATE returns some strange results though.
    If I use mask=inside for a given query I get 69 rows, and for mask=overlapbdyintersect I get 15 rows.
    But if I use mask=inside+overlapbdyintersect, I only get 50 rows.
    Then again if i use UNION ALL, for speed as the manual hints about, I get 84 rows as result if I combine the two.
    Isn't this a bit odd?
    Any explanation for this kind of behavior?
    examples:
    INSIDE(69) + OVERLAPBDYINTERSECT(15) = 50 (Strange)
    SELECT count(S_ID) from MAP.BYGG_POLY
    where
    SDO_RELATE(GEOM, SDO_UTIL.FROM_WKTGEOMETRY
    *('Polygon((441029.298070891 6445795.42259877, 441320.756519155 6445767.05053744, 441318.177240852 6445527.17765524, 441029.298070891 6445795.42259877))'),*
    *'mask=INSIDE+OVERLAPBDYINTERSECT') = 'TRUE'*
    INSIDE(69) + OVERLAPBDYINTERSECT(15) = 84 (Correct)
    SELECT S_ID from MAP.BYGG_POLY
    where
    SDO_RELATE(GEOM, SDO_UTIL.FROM_WKTGEOMETRY
    *('Polygon((441029.298070891 6445795.42259877, 441320.756519155 6445767.05053744, 441318.177240852 6445527.17765524, 441029.298070891 6445795.42259877))'),*
    *'mask=INSIDE') = 'TRUE'*
    UNION ALL
    SELECT S_ID from MAP.BYGG_POLY
    where
    SDO_RELATE(GEOM, SDO_UTIL.FROM_WKTGEOMETRY
    *('Polygon((441029.298070891 6445795.42259877, 441320.756519155 6445767.05053744, 441318.177240852 6445527.17765524, 441029.298070891 6445795.42259877))'),*
    *'mask=OVERLAPBDYINTERSECT') = 'TRUE'*
    Edited by: Oraly on Sep 2, 2009 5:32 AM
    Edited by: Oraly on Sep 2, 2009 5:34 AM

  • Oracle 10g Express Edition and Forms 6i

    Hi,
    Need to know if Oracle 10g express edition supports forms 6i or not?
    Please advise.
    Thanks you very much.

    Thanks for the answers.
    Yes, XE universal does not work, but XE Western European does. I am having a hard time to configure Net8. The net configuration tools simply crash right away every time I try to run them. The sql*plus on form side crashes when I hit the connect button. The only thing that can run with no problem is form. I had to manually edit the tnsnames.ora file on form side, setting host=computer name and sid=XE. Tried many times until it worked.

  • (again) oracle 10g client and oracle 10g express in one computer

    hi again, sorry if this question looks like a double post to you.
    Well this is quite embarassing yet still make some headache for me. I have my office PC installed with Oracle 10g client using admin component option, for connecting some application with database on remote server. Now, after I have developed some basic map using Oracle 10g Express on my home PC, I want to test it in my office network. But everytime I tried to install Oracle Express, it web interface will working normally while all other aplication can no longer connected with remote server from the client. If I remove Oracle Express, all client connection will working again as if nothing happened. I already created Microsoft LoopBack connection using IP 10.10.10.10, edit TNSNAMES.ORA, etc that could possibly helpful but nothing fixed. Strangely, if I install Oracle 10g Database version, all connection to remote server working again, and map application also working. But this kind of installation takes up all my PC resources (grrrr!). Any more suggestion?
    best regards
    net2surfin

    I'm sorry if the information not accurate, but the client connection made by application which try to connect is simply "not resolved" and show no error code/number at all. I'll try to connect from sqlplus though, maybe the error number will be known from this way.
    About 10.10.10.10 tcp loopback, I got this work around from here: http://download.oracle.com/docs/cd/B19306_01/install.102/b14316/reqs.htm#BABGCEAI
    in the Ora Database Preinstallation requirement, where it states like this:
    +16.In the Properties dialog box, click Use the following IP address and do the following:+
    a.IP Address: Enter a non-routable IP for the loopback adapter. Oracle recommends the following non-routable addresses:
    +■192.168.x.x (x is any value between 0 and 255)+
    +■10.10.10.10+ <---- this is the value suggested that I've been used in my home PC
    b.Subnet mask: Enter 255.255.255.0.
    c.Record the values you entered, which you will need later in this procedure.
    d.Leave all other fields empty.
    e.Click OK.
    I'll try to remove the loopback later and see the ORA environment, to see the result. In the mean time, all suggestions is highly appreciated.
    thank you n best regards
    net2surfin

  • Issues during reinstallation Oracle 10g express edition and Forms 6i

    I've been racking my head over this issue for the past two three days. Exasperated, I tried searching in the forums but could not find a specific scenario like this.
    I am facing issues while trying to get forms 6i to work with oracle 10g Express edition
    i have windows XP home edition (installed service pack 2) and installed oracle 10g express edition as well as the oracle 10g express client and SQL developer on the same machine. The database started fine and I was able to use Enterprise manager.
    After that I tried installing Forms 6i and whatever i try i am not able to connect to the database from Forms though I was able to connect easily from SQL developer. I used to get the error 12154 "TNS:could not resolve service name"
    I dont know if Forms 6i expects the database connector string in some particular format. I searched on the net and found some people solved the issue by reinstalling the database software.
    My machine name was complex so I changed it as well and reinstalled the software. Again the DB was fine and connections were fine but no way I could get forms to connect to the DB. All the time
    I tried installing Forms to the same folder that Oracle express edition home in the hope that it might fix the problem. That only caused my database to crash. The oracle xe service shows as started but the Enterprise manager link does not work and it seems the database is down. I tried uninstalling and reinstalling client and server to no avail.
    Has anyone gone through such a situation and solved this ? Appreciate your help.

    The statement about XP Home is correct, but in this case I would say the initial problem (Forms and ORA-12154) is independent of that, it also happens in a supported environment. I think it's the old problem, a second Oracle home was installed, but tnsnames.ora containing the connect informations is located in the first home.
    Either tnsnames.ora is copied from to <Second_ORACLE_HOME>\network\admin or the environment variable TNS_ADMIN is set system-wide to <First_ORACLE_HOME>\network\admin.
    I think now it's necessary to create a clean machine (remove all Oracle components as explained in the database installation guide for Windows). Then repeat the installation , but XE and Forms 6i in different ORACLE_HOMEs.
    Werner

  • Backing up all data and objects of Oracle 10g Express Edition...

    Hi,
    I have tables, packages, views, procedures, etc. in Oracle 10g Express Edition, running on Windows XP. I would like to create a backup of the complete database (objects, relationships, all data, etc) into a file that I can restore in case the database crashes.
    What do I do?
    Thanks.

    markk2 wrote:
    I am actually using it for Production. Yes, I would need objects and data.I would suggest to look at the Standard Edition as well if you are using it for production.
    Is there a way to backup everything without data and then backup everything with data? Also, is there a way to restore everything without data and then restore everything with data?What's the meaning of "backup everything withiut data" and "then backup everything with data" ? The data is in the tables alone. The rest of the objects are not containing data but are using it, be it views, procedures etc. There is no such restore like without data. Without data, all what you would be getting would be structures of the tables which is going to be of no use. The export/import tool, is a simple tool which can put the tables (and other objects as well) along with their data in your dumpfile . In the situation of loss of a table, you can do an import from that dump file and you can restore the table back(with or without data, depends on the choice of yours while running Import command) . But this is just going to be a logical recovery of the object(s). For a complete database, it's better to use RMAN which would copy the datafiles and keep it with itself. Later, when you have a crash, you can restore those files to get teh database recovered. But if you want complete security, its better to put your db in the archive log and then do the backup along with the archive log files.
    HTH
    Aman....
    How to do this exactly? Thanks!

  • Connection of java and oracle 10g express edition

    hello!!!!!
    I'm new to databases as well as JDBC. I want to know how to connect to oracle 10g express edition with java to create a desktop application.
    Let me know step by step procedure if possible.....
    Also tell me which softwares or drivers other than oracle 10g and jdk1.6 will be required......
    Do i need to keep all the required softwares and drivers in the same folder???
    please give any other information which is required for the connection
    thank you!!!

    hello!!!!!
    I'm new to databases as well as JDBC. I want to know how to connect to oracle 10g express edition with java to create a desktop application.
    Let me know step by step procedure if possible.....
    Also tell me which softwares or drivers other than oracle 10g and jdk1.6 will be required......
    Do i need to keep all the required softwares and drivers in the same folder???
    please give any other information which is required for the connection
    thank you!!!

Maybe you are looking for