• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

ORacle 11gXE 32 bit installation issue with Windows 7 x64?

 
Ranch Hand
Posts: 86
jQuery Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I installed Oracle 11g Express Edition 32 bit on my 64 bit machine running Windows 7 Home Premium. I went to Control Panel - Administrative Tools-ODBC-USER DSN- ADD.

When i click on ADD i cant see oracle XE in the drivers list.

Please can you tell me how to move ahead and resolve this issue?


Also i heard that Windows 7 home editions do not support the ORacle 9i/10g and 11g fully.

I need to use eclipse with oracle to work on my project. Please help me!
 
Sheriff
Posts: 3837
66
Netbeans IDE Oracle Firefox Browser
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you have successfully installed Oracle, and can connect to the database from SqlPlus, that's all you need.

Don't use ODBC to connect to Oracle. Oracle provides JDBC thin drivers, which are far better than ODBC and don't require additional setup beyond the connection string. Our Oracle FAQ contains links to JDBC drivers and also some info on the format of the connect string.
 
Bartender
Posts: 2407
36
Scala Python Oracle Postgres Database Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There have been a lot of problems with Oracle 11g XE on Windows 7, as the 32-bit version doesn't always install or work properly and there is (still!) no 64-bit version. Check in your Windows services to see if the database (OracleServiceXE) and TNS listener services are running (OracleXETNSListener). Then use JDBC to connect to the database using the Oracle thin drivers.

If you can't get XE working, you can still try installing the Windows 64-bit version of the standard Oracle 11g database instead, which runs fine on Windows 7 (you'll need lots of RAM for this, especially as you want to use Eclipse as well!). The download site is here, and there are some introductory tutorials here.

Incidentally, for your database work I strongly recommend you download the free SQLDeveloper tool from Oracle, which gives you lots of Oracle functionality independently of your Eclipse DB plugins etc.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic