Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

33
11/12/12 10g onward database, developer on Windows 7 « Duh! Microsoft did it again 1/33 windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/ D uh! Microsoft did it again Whatever possible about Windows 7 Install Oracle 10g onward database, developer on Windows 7 *Update* 11.Dec.2011 P ART I (Install Oracle 10g on Windows 7) Almost after more than year time, We still receive requests asking for assistance with installing Oracle 10g database while Oracle has 11g release 2 (http://www.oracle.com/technetwork/database/enterprise- edition/overview/index.html) in place. We do understand why many need Oracle 10g against the latest released database and we confirm our claim once again YOU CAN INSTALL Oracle 10g on Windows 7 (Home Basic, Home Premium, Professional etc) Though I believe the maximum number Oracle applications are accessed through Microsoft Windows clients, when the cooperation comes in, Oracle and Microsoft behave like sisters in a fight and the end users suffer! As a Oracle developer it is my primary requirement to have a local database running from my laptop/desktop, having the oracle development tools properly installed and once I started with Windows 7, apparently failed miserably to get the Oracle stuff installed properly on Windows 7. It took me almost 6 or more months to come against another wordpress blog where a user has posted a fix and frankly it WORKS Before checking the workaround check what Chris F has to say “Thanks. This was helpful. I noticed when installing the 10.2.0.4 server that even after changing the refhost.xml file, I was still getting the same version check errors. I then had to go into the “install/oraparam.ini” file and change the certified version comma-delimited list there. After that, the installer was happier.” here is the work around. Example, go to this folder “E:\Installers\Oracle_10g_1023\Disk1\stage\prereq\db” locate the file “refhost.xml”, open it with notepad

Transcript of Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

Page 1: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

1/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

Duh! Microsoft did it again

Whatever possible about Windows 7

Install Oracle 10g onward database, developer on

Windows 7

*Update* 11.Dec.2011

PART I (Install Oracle 10g on Windows 7)

Almost after more than year time, We still receive requests asking for assistance with installing Oracle10g database while Oracle has 11g release 2 (http://www.oracle.com/technetwork/database/enterprise-edition/overview/index.html) in place. We do understand why many need Oracle 10g against the latest

released database and we confirm our claim once again YOU CAN INSTALL Oracle 10g on Windows 7(Home Basic, Home Premium, Professional etc)

Though I believe the maximum number Oracle applications are accessed through Microsoft Windowsclients, when the cooperation comes in, Oracle and Microsoft behave like sisters in a fight and the endusers suffer!

As a Oracle developer it is my primary requirement to have a local database running from mylaptop/desktop, having the oracle development tools properly installed and once I started with Windows7, apparently failed miserably to get the Oracle stuff installed properly on Windows 7.

It took me almost 6 or more months to come against another wordpress blog where a user has posted a

fix and frankly it WORKS

Before checking the workaround check what Chris F has to say

“Thanks. This was helpful. I noticed when installing the 10.2.0.4 server that even after changing therefhost.xml file, I was still getting the same version check errors. I then had to go into the

“install/oraparam.ini” file and change the certified version comma-delimited list there. After that, the

installer was happier.”

here is the work around.

Example, go to this folder “E:\Installers\Oracle_10g_1023\Disk1\stage\prereq\db”

locate the file “refhost.xml”, open it with notepad

Page 2: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

2/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

you must see something like this

<CERTIFIED_SYSTEMS>

<OPERATING_SYSTEM>

<VERSION VALUE=”5.0″/><SERVICE_PACK VALUE=”1″/>

</OPERATING_SYSTEM>

<OPERATING_SYSTEM><VERSION VALUE=”5.1″/>

<SERVICE_PACK VALUE=”1″/>

</OPERATING_SYSTEM>

<OPERATING_SYSTEM><VERSION VALUE=”5.2″/>

</OPERATING_SYSTEM>

<!–Microsoft Windows Vista–><OPERATING_SYSTEM>

<VERSION VALUE=”6.0″/>

</OPERATING_SYSTEM></OPERATING_SYSTEM>

</CERTIFIED_SYSTEMS>

now add the following:

<!–Microsoft Windows 7–>

<OPERATING_SYSTEM><VERSION VALUE=”6.1″/>

</OPERATING_SYSTEM>

within <CERTIFIED_SYSTEMS> </CERTIFIED_SYSTEMS> tags, and the final entries should look likethis

<CERTIFIED_SYSTEMS>

<OPERATING_SYSTEM><VERSION VALUE=”5.0″/>

<SERVICE_PACK VALUE=”1″/>

</OPERATING_SYSTEM>

<OPERATING_SYSTEM>

<VERSION VALUE=”5.1″/>

<SERVICE_PACK VALUE=”1″/></OPERATING_SYSTEM>

<OPERATING_SYSTEM>

<VERSION VALUE=”5.2″/>

</OPERATING_SYSTEM>

<!–Microsoft Windows Vista–>

<OPERATING_SYSTEM>

<VERSION VALUE=”6.0″/></OPERATING_SYSTEM>

<!–Microsoft Windows 7–>

Page 3: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

3/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

<OPERATING_SYSTEM>

<VERSION VALUE=”6.1″/>

</OPERATING_SYSTEM></CERTIFIED_SYSTEMS>

Now run the Oracle installer and you would see the installation completes without giving any errors.

PART II (Install Developer Suite 10g on Windows 7)

Step 1 Setup Virtual Memory

Depending upon actual memory available with your computer, setup virtual memory. You can go upto

double the size of actual memory while setting up your virtual memory. Please refer to the image(s)below

(http://windows7bugs.files.wordpress.com/2010/02/1.jpg)

(http://windows7bugs.files.wordpress.com/2010/02/2.jpg)(http://windows7bugs.files.wordpress.com/2010/02/3.jpg)

Page 4: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

4/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

You would be asked to restart thecomputer and please restart.

Step 2 Setting up the DeveloperSuite 10g installer

(http://windows7bugs.files.wordpress.com/2010/02/folders.png)

Page 5: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

5/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

Open the Disk 1 folder and locate “Setup.exe’

Right click “Setup.exe” and change the compatibility to Windows XP Service Pack 2 or 3

(http://windows7bugs.files.wordpress.com/2010/02/comp.png)Step 3 Install Developer Suite 10g

Double click and start the installation, if you already have Sp1 installed and running latest Java runtime,

Page 6: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

6/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

you may come across PSAPI.DLL errors a number of times, caused by a function call missinginformation. You can safely ignore the warning messages and complete the installation.

(http://windows7bugs.files.wordpress.com/2010/02/dev10g-error1.png)

This entry was posted on Thursday, February 18th, 2010 at 10:05 am and is filed under Windows 7. You

can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback

from your own site.

127 Responses to Install Oracle 10g onward database, developer

on Windows 7

1. Chris F. says:

March 6, 2010 at 2:51 amThanks. This was helpful. I noticed when installing the 10.2.0.4 server that even after changing the

refhost.xml file, I was still getting the same version check errors. I then had to go into the

“install/oraparam.ini” file and change the certified version comma-delimited list there. After that, the

installer was happier.

Reply2. Sanjeev says:

March 8, 2010 at 5:32 pm

Hi i have installed Oracle11g successfully on my laptop Windows 7 Home edition.After installation not able to certify it.

About these ads (http://en.wordpress.com/about-

these-ads/)

Page 7: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

What should i do now..

Reply

windows7bugs says:

March 8, 2010 at 9:06 pmWhat you mean by cannot certify?

ReplyBurrak says:

October 28, 2011 at 4:22 pm

Hi Dear sir. Plz Help me. I have windows 7 professional edition 32bit and i have tried to runoracle form 10g on chrome and mozilla browsers they require plugin but don’t install,

windows ie8 crashes. i searched through internet about this problem some suggested to use

jinitiator, i installed it manually and auto both and also paste the “jvm.dll” but the problem isyet to be solved.

i will be waiting for your response, and will be grateful if you help me bcoz i have to do myassignments and it is late already.

Gnanavel says:

June 29, 2010 at 5:56 pm

Hi sanjeev . pls tel how to install oracle nu

Reply

windows7bugs says:July 1, 2010 at 9:05 am

Follow the post and you should able to complete the installation.

GOPIKRISHNA JAYARAMAN says:

February 14, 2011 at 8:12 pm

Hi sanjeev ,

Can you please help me installing the oracle products in the windows 7 ?

Regards,gopikrishna.

Reply

3. Gnanavel says:

June 29, 2010 at 5:39 pm

i tried to install oracele 10g i couldn’t install am getting following errrors.Abnormal program termination.An internal error has occured. Please provide the following files to

oracle support.

“Unknown” “Unknown” “Unknown”

Reply

Ram says:

August 10, 2010 at 5:59 pm

Page 8: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

8/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

HI Iam also getting the same error please provide the solution if u got

Reply

windows7bugs says:

October 28, 2010 at 9:07 amright click the setup.exe->properties->compatibility tab->Select Windows XP Service pack 2->

OK and try again.

Pls make sure to mention which product you are trying to install always (eg, 10g database,10g dev suite etc)

SoHo says:February 2, 2011 at 8:37 pm

Hi im also getting this error but when I want to change the compatibality it only gives me the

options to run in vista and server 2008 any help pls. Im trying to install Oracle database 10GEnterprise on Windows 7 Enterprise 64 bit.

Thanks

4. Faisal says:

October 7, 2010 at 8:31 pm

Thanks to Writer and Chris…

ReplyMrugesh says:

March 3, 2011 at 11:57 am

Thanks!…….Bro…..

It really works…….

Reply5. Abdul baseer says:

October 19, 2010 at 10:27 am

i am trying to install ORACLE 10g in windows 7 it is not working producing error or vertualmemory would anybody help me out how to install both in windows 7

thanks

Replyanuswiya says:

October 21, 2010 at 10:50 pm

I’ve been trying all the steps and still cannot install Oracle Enterprise in my Windows7.The error message pops up as “Actaul6.1″ failled!!!

Replywindows7bugs says:

October 28, 2010 at 9:01 am

What product you were trying to install?

windows7bugs says:October 28, 2010 at 9:01 am

What product you were trying to install?

Page 9: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

9/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

windows7bugs says:October 28, 2010 at 9:03 am

Hi there, you need to configure your W7 virtual memory with manual entries. Pls read the post

again, the same is explained with screen shots.

Reply6. farhan says:

October 27, 2010 at 12:59 pm

I have followed ur steps mentioned as to change the refhost file but still the error i am getting is same

as before this change.

When i run the setup.exe the error after few seconds is“OUI.exe has stopped working”

Do u have suggestions hw to get it fixed

Reply

7. farhan says:

October 28, 2010 at 5:22 pmfinnally i got it installed and it is working

wht i did that chnged that refhost file but still it wasnt working later on i changed the folder name of

the oracle setup.. there were spaces in the folder name.. i removed the spaces and placed that folder

on the root of directory.. and then executed setup.exe and it worked

thanks for the blog

Reply

amit kumar says:September 26, 2012 at 8:59 pm

Thanks Farhan. Removing the space from the folder solved the problem. Now I don’t get the

error “OUI.exe has stopped working”!!

Reply

8. csk says:November 9, 2010 at 8:48 am

Hi,

I started installing Oracle 10g R2 (10.2.0.4.0) on Windows 7(64-Bit). I changed the oraparam.ini to

include 6.1 and setup got started but getting the following error:

Abnormal Program termination,an internal error has occured please provide

the following file to oracle support:”UNKNOWN”

When I click OK button, it closes everything.

I am using the installation files download from http://www.oracle.com/technetwork/database/10204-

winx64-vista-win2k8-082253.html

Please help.

Page 10: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

Thanks.

Reply

9. Shahbaz Khan says:November 13, 2010 at 11:57 am

I have sucessfully installed oracle database 10g and developer suit 10 on ma machine(windows 7 64

bit)but when i compiles my forms and runs it (I have installed jinititer) the web browser crashes Please

hepl……….

Please send me if any solution is available….

my email id is

[email protected]

Thanking you in anticipation

Reply

windows7bugs says:

November 13, 2010 at 12:33 pmHave you started the OC4J instance started? Is it possible for you grab a screen shot and upload

to a free upload server and forward link through a reply?

Reply

Shahbaz Khan says:

November 14, 2010 at 10:35 amYes I have started the OC4J instance

windows7bugs says:

November 13, 2010 at 6:47 pm

Try this link

If it works, please come back and confirm.

ReplyShahbaz Khan says:

November 14, 2010 at 10:37 am

thanks for the information let me check if it works or not I will confirm it tomorrow.

windows7bugs says:

November 14, 2010 at 11:39 amHello

the file mentioned with the OTN is not anymore available for download. You may install the

latest java run time (32bit) and copy the jvm.dll from the client folder to the said location ofjinitiator. I tried it couple of years back and it was working properly. Anyway please do

confirm after you try it out. All the best.

Shahbaz Khan says:

November 16, 2010 at 11:55 am

I have downloaded the latest java run time and installed it on my lappy (windows 7 64 bit)

Page 11: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

and copy and replaced the jvm.dll file into the said folder. i have also disable the securitysetting from internet explorer option and restart my lappy but still when i tries to run the

form, the internet explorer 8 crashes (I am facing the same problem with mozilla forefox )

Please help……….!!!!

windows7bugs says:

November 18, 2010 at 9:01 amOkay. Let me give it a try. I will post a possible workaround (if any) soon.

windows7bugs says:

November 18, 2010 at 11:26 am

Replace the file with one downloaded from following link

http://www.4shared.com/file/tijdUhx1/jvm.html

Try again and let us know. HTH

Shahbaz Khan says:

November 22, 2010 at 9:53 am

After replacing jvm.dll by your given file. Form builder is showing an error that “fail toinvoke web browser” on running the form

10. Shahbaz Khan says:

November 16, 2010 at 7:57 am

I have downloaded the latest java run time and installed it on my lappy (windows 7 64 bit) and copyand replaced the jvm.dll file into the said folder. i have also disable the security setting from internet

explorer option and restart my lappy but still when i tries to run the form, the internet explorer 8

crashes (I am facing the same problem with mozilla forefox ) Please help……….!!!!

Reply

11. Shahbaz Khan says:November 22, 2010 at 10:21 am

I am using Toad for Oracle 9.6 to connect to oracle 10g in a windows 7 64 bit environment. But while

connecting it shows an error.

Please helpAny advice will be appreciated………!!

Reply

windows7bugs says:

November 27, 2010 at 8:24 pmUninstall toad, then re-install toad on a local folder, say C:\toad

This should solve your issues with Toad.

Reply

12. suyash says:

November 24, 2010 at 1:18 pmhi,

i am a student and learning java using NETBEAN 6.9 and want to create a database using oracle XE

Page 12: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

12/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

plz can any one help me in insataling oracleXE,am using windows 7 home primium 64bit

plz its an request plz help me i dont want to instal win xp

plz help memy id is [email protected]

Reply

Shahbaz Khan says:November 24, 2010 at 2:47 pm

hey this is Shahbaz Khan

all you have to do is

1>right click the setup

2>click troubleshoot for compatibility3>A new window will open

4>click next which will configure recommended settings

5>click on start program

This will work

Reply……..

Reply

jamal says:March 16, 2011 at 7:32 pm

hi bro i did as u said but sql*plus was not running then i went to services their i found that no

oracleconsole or oracle10g was present

so what to do now

windows7bugs says:March 27, 2011 at 11:52 am

Hi Jamal

It looks like the installation was not done properly. Specifically, we cannot provide solutions

to such situations. This article is for the users who already have certain level of experience with

OS, Oracle database and related products. We are sorry to hear that you couldn’t get it

working.

regards,

13. 2010 in review « Duh! Microsoft did it again says:

January 4, 2011 at 12:29 pm

[...] The busiest day of the year was July 7th with 146 views. The most popular post that day wasInstall Oracle 10g onward database, developer on Windows 7. [...]

Reply

14. Gopikrishna says:

February 14, 2011 at 1:30 pmHi all ,

Page 13: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

13/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

I have bought a new laptop with windows 7 ( 32 bit operating system ).

Can any one please suggest me any link for downloading the ORACLE software that will work in

my laptop ?

And also please suggest me which version can we install as i am new to ORACLE software ?

Regards,

Gopikrishna

Reply

15. sud_dhiman says:

March 31, 2011 at 11:44 pm

hi 7 bugs!!

thanks for idea of editing refhost file,installer was happy to move but this time i got DCA error ofORA:12560 TNS protocal adapter error. pls suggest way out

Reply

windows7bugs says:

April 2, 2011 at 9:50 am

Hello sud_dhimanNormally the error “ORA:12560 TNS protocal adapter error” happens when the Oracle database

service under Windows/Linux fail to start.

Now please answer the following:

Does your PC/laptop has a dedicated IP address? (Static IP address or Microsoft loopback

adaptor)

Make sure your antivirus & firewall are disabled during the installation of Oracle databaseTry to re-install the product and post us the results

Regards,

Replysud_dhiman says:

April 11, 2011 at 10:03 pm

hi 7,

i tried reinstalling 10g on win7, and kept firewall disbaled. still getting TNS 12560 error

during DCA database creation first time while installation about to finish. I even tried to set

ORACLE_SID but not getting SID as database yet not be created.

Now installation finished by ignoring error but while connecting sysdba its showing TNS

12560 error. Any way out plss

16. sud_dhiman says:

March 31, 2011 at 11:46 pmi am trying to install oracle 10g in win7 home premium.

thanks in advance

Reply

Page 14: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

14/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

17. windows7bugs says:

May 7, 2011 at 9:21 pm

You haven’t answered any of our previous queries. Without the details provided we will not be in a

position to provide you any kind of leads. Sorry

Reply

18. josechu39 says:

May 26, 2011 at 1:56 am

Bajo los archivos y no los mantiene guardados el equipo,no mola nada.

Reply

19. ORACLE_windows7 says:

August 8, 2011 at 6:23 am

I followed the steps above. installed successfully. I installed using decated IP. still geting ORA-12560:

TNS:protocol adapter error. There is no orcale service started. I am trying install software onlyoption.

Reply

20. ORACLE_windows7 says:

August 8, 2011 at 6:24 am

there is no orcale service or lineter to start in widows service windows

Reply

21. john says:

August 10, 2011 at 5:40 am

I did the suggested changes for compatibility in windows 7 but starting setup in command prompt it

showed “CreateFile error 32 when trying set file time” and oracle installation window opened but itsoon disappeared resulting no installation.please help!!

Reply

22. windows7bugs says:

August 10, 2011 at 10:10 am

Hello JohnWould you please be more specific about your OS (32/64bit), Home/Professional/Ultimate etc?

What product you are trying to install? Database/Developer suite

Without having such details with posts, we will not able to provide you further assistance.

As mentioned with the post, the work arounds were successful under

Windows 7 Professional 64bit boxes

Oracle database 10g (any release)

Oracle developer suite 10gOracle developer 6i (with and without patch 18)

Regards,

Admin

Reply

Page 15: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12

15/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

john says:

August 10, 2011 at 6:04 pm

I’m using Windows 7 (x64 architecture) ultimate version OS. The product is Oracle 10g

Database. I have downloaded from http://www.oracle.com/technetwork/database/enterprise-

edition/downloads/index.html

whenever I start setup, in the command prompt it shows “CreateFile error 32 when trying set file

time” and oracle installation window opens but selecting advance installation and on clickingnext button the installation window frame closes…..

Reply

23. windows7bugs says:

August 11, 2011 at 9:47 am

Hi JohnPlease try to download the installation package once again and try to install Oracle. 90% of the time

this particular error happens when the installation package is corrupt.

Please try to install from a fresh downloaded installation source and kindly let us know whether you

were able to.

Regards,

Admin

Replyjohn says:

August 11, 2011 at 2:55 pm

Alright!!

Reply

windows7bugs says:August 12, 2011 at 10:09 am

Hello John

Did you manage to install Oracle database?

Regards,Admin

24. john says:

August 19, 2011 at 4:28 am

I downloaded new setup package of the same and did recommended changes, and on installation

the command prompt showed: “Checking operating system version: must be 5.0,5.1,5.2,or 6.0 actual6.1 Failed<<<"

then i changed the compatibility of setup file to vista. Now the setup starts but selecting advance

installation and clicking next button,the setup window closes….. totally confused, can't understand

what to do now

Replywindows7bugs says:

August 20, 2011 at 12:50 pm

Further, if you find installing 10g database too much trouble, try installing Oracle database 11g

Page 16: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12

16/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

R2.Read few places that it installs perfectly on Windows 7 without hacks.

Regards,

Admin

Reply

25. windows7bugs says:

August 20, 2011 at 12:48 pm

Hi John

Did we say changing the compatibility for installing the database anywhere with our post? I hope

we didn’t.Please go through the entire post

http://windows7bugs.wordpress.com/2010/02/18/install-oracle-10g-onward-database-developer-on-

windows-7/

read carefully and try to install the database. All the best.

Admin

Reply

john says:

August 20, 2011 at 6:04 pmthanks to windows7bugs the installation was successful…. the only other changes that i had to do

was in the file “oraparam” in install folder.

the changes were: [Certified Versions]

#You can customise error message shown for failure, provide value for

CERTIFIED_VERSION_FAILURE_MESSAGE

Windows=5.0,5.1,5.2,6.0

I changed it to: [Certified Versions]#You can customise error message shown for failure, provide value for

CERTIFIED_VERSION_FAILURE_MESSAGE

Windows=5.0,5.1,5.2,6.0,6.1

and also added:

[Windows-6.1-required]

#Minimum display colours for OUI to run

MIN_DISPLAY_COLORS=256#Minimum CPU speed required for OUI

#CPU=300.

Reply

windows7bugs says:August 22, 2011 at 12:51 pm

Hi John

Glad to hear that you managed to install the db finally. Thanks for keeping us updated.

Regards,

Admin

Page 17: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

17/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

26. nagaraj says:

August 27, 2011 at 1:09 pm

thanks to windows7bugs and Jhon, this solves my problem also.

Reply27. ABC says:

September 26, 2011 at 10:53 am

thanks for the solution “windows7bugs”

Reply

28. Burrak says:October 28, 2011 at 4:59 pm

Admin Plz help me Plz….

I have windows 7 professional edition 32bit and i have tried to run oracle form 10g on chrome and

mozilla browsers they require plugin but don’t install, windows ie8 crashes. i searched through

internet about this problem some suggested to use jinitiator, i installed it manually and auto both

and also paste the “jvm.dll” but the problem is yet to be solved.

Reply

29. windows7bugs says:

November 20, 2011 at 9:21 am

!!!

Finally got hold of a machine running Windows 7 home basic 64bit OS and was able to installDeveloper 10g without any troubles, all we had to do was

Virtual memory settings to manually managed.

Compatibility mode set to “Windows XP Service Pack 2″

Does it sound niceeeeee?

Admin

Reply

30. Suhail says:

November 28, 2011 at 10:41 am

i hav just installed oracle 10 g in my windows 7 home premium with service pack 1 32 bit os.but i

cant configure the database on that.could u pls help me for this?

Reply

windows7bugs says:

December 11, 2011 at 8:52 am

Hi Suhail

Did you mean you cannot create additional databases or during the installation configuringdatabase fails?

Please comment.

Regards,

Page 18: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

18/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

Admin

Reply

31. Anu says:

November 30, 2011 at 11:37 pm

I tried all options to install oracle 10.1.2.0.2 . But the installer says” The Windows System Files Install has not been run on this machine.One or more operating system

files currently in use need to be updated.You must exit this installation and use Disk1 to run a

Secondary Windows system Files installation to update the operating system files and then restart

the current installation process.”

I changed the virtual memory to custom size as said and that did not help.How can I proceed?

Reply

windows7bugs says:

December 11, 2011 at 8:31 amHello Anu

Sorry for the delayed reply. Would you please post us the following details?

Operating system

from the version mentioned, we believe you were trying to install developer 10g, Please confirm

the same

Is there any possibility for you to obtain another copy of installer files?

Regards,

Admin

Reply

32. Install Oracle 10g pada Windows 7 64bit « indo-oracle says:December 21, 2011 at 10:34 am

[...] http://windows7bugs.wordpress.com/2010/02/18/install-oracle-10g-onward-database-developer-

on-window… Like this:LikeBe the first to like this [...]

Reply

33. Eleash says:February 11, 2012 at 8:20 am

Hello,

I am using windows 7 32bit. I want to install Oracle 10 Developer Suit on my pc but I could not find

%\Oracle_10g_1023\Disk1\stage\prereq\db\refhost.xml file when I extract

ds_windows_x86_101202_disk1.zip.

Please help me how can I install Oracle 10g on my pc

Help…

Reply

34. windows7bugs says:

February 13, 2012 at 8:45 am

Hello EleashYou will not find refhost.xml for Developer Suit, refhost.xml file is available with database

Page 19: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

19/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

installation packages. To install Developer suite, just follow the section explains the same.

For a quick reference, unzip your sources to a new folder. Right click on the install.exe/setup.exe and

select compatibility as Windows XP SP2 after setting up virtual memory parameters manually.

Please read our post carefully once again, and we are sure you will able to finish the installation

without much troubles.

All the best

Regards,

Admin

Reply

35. Amal K Abraham says:

March 7, 2012 at 6:26 pm• Run the application with the switch ignoresysprereqs

• Removed the jar file which is checking the prereqs during the runtime.

this will solve ur issue….

Reply

36. Muhammad Ibrar says:

March 28, 2012 at 1:16 pm

Is there any way to install Oracle 9i database with developer 6i on window7

Reply

windows7bugs says:

March 29, 2012 at 9:53 am

Hello Ibrar

Unfortunately we don’t have access to 9i database installation sources. Let us see whether wecould get some from the archives. If we can, we will be more than glad to let you know whether it

could be done or not. Meanwhile try the following

Extract your 9i database installation files to a folder in C:

eg: c:\9idbsrouces

now go to command prompt

and change the working directory

cd C:\9idbsrouces

now type setup -ignoreSysPrereqs

monitor the installation process and let us know whether you managed to install the database

We were able to install 8i client this way (a crash about java was reported during install however

Page 20: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

20/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

we were able to connect to 10.x.x.x database using 8i client on Windows 7 64bit)

Please note, you shouldn’t use these kind of workarounds for production environments, these are

meant for learning and testing ONLY.

Regards,

Admin

Reply

windows7bugs says:April 5, 2012 at 8:16 am

Muhammad, it looks like you are certainly not allowed to install oracle 9i database on Windows

7. There are no known workarounds for jrew.exe crash.

Regards,

Reply

37. suj says:

April 14, 2012 at 1:23 pm

Hi I am not able to find refhost.xml under stage directory pls advise

Reply

38. windows7bugs says:

April 15, 2012 at 6:59 am

Hi Suj

Are you trying to install developer suite?

Regards,

Admin

Reply

39. mallina says:

April 16, 2012 at 7:30 pm

HelloI have installed Oracle 10g on Windows 7 -64 bit Home premium.

After installation, while connecting to the database (SQL Plus),

I am receiving ORA 12154 ERROR- TNS COULD NOT RESOLVE THE CONNECT IDENTIFIER

SPECIFIED.

SPENT SEVERAL HOURS ON IT..

CAN ANYONE HELP ME ON THIS PLEASE?

Reply

windows7bugs says:

April 23, 2012 at 8:56 am

Hello mallina

We tried to contact you through email, please confirm whether you received our mails.

Page 21: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

21/33

Regards,

Admin

Reply

40. Manpreet says:

May 14, 2012 at 11:21 am

I am getting the same error related to the DLL File. As mentioned above I have tried to ignore this

error, but now my installation halts with the error message “Error in determining OS”.

Please Advise.

Regards,

Manpreet

Reply

41. Manpreet says:

May 14, 2012 at 11:23 am

Just to highlight, I am installing Oracle 10g on Windows 7 32 bit OS

It was installed perfectly well earlier, untill I uninstalled it as Reports Designer was crashing on each

run.

ThanksManpreet

Reply

42. ramya says:

May 21, 2012 at 1:55 am

hi,

I have installed oracle 10g database in one windows xp system and developer suite 9i in windows 7

premium. there is no problem in the installation . All reports are working fine in IE 8 . certain forms

when tried to open IE crashes. this problem do not happen to all the forms,but only to a certain

forms. i tried to install 9i oracle ds in windows xp . all forms including the one which does not open inwindows 7 opens without any hitches. I followed the same compatibility procedure mentioned above

to install 9i oracle developer suite.

could anyone pl let me know any work around for this.

Reply

windows7bugs says:

May 21, 2012 at 8:57 am

Hello Ramya

Please try the following

Upgrade your IE to IE 9

Once IE is upgraded, please uninstall and replace JRE with the latest available

If you are using jinitiator for local testing, you must change jiniator with JRE, follow the thread

Page 22: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

22/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

http://windows7bugs.wordpress.com/2012/02/27/how-to-test-developer-suite-10g-forms-locally-

using-jre-instead-of-jinitiator/

Connect to database from developer suite, try to recompile the form modules which are

failing/crashing and test the module again.

Reply

43. sweety says:

July 12, 2012 at 10:12 pm

how to install oracle 10g express edition in windows 7 ultimate(32bit)

i need original website to free download it without any error

Reply

windows7bugs says:

July 13, 2012 at 12:06 am

Hello sweety

We think you are bit late… 10g express edition may not be available to download from Oracle

repositories anymore. Why don’t you just go ahead with 11gR2 express edition?

Reply

44. rebeen says:

July 15, 2012 at 12:19 am

Thank that is new Idea for installing oracle 10 g enterprise

Reply

45. jo says:

July 25, 2012 at 12:53 pm

hi iam using window 7 with 64 bit os

ma problem is, when i try to do jdbc connectivity i get the following error………. plz help me

sql exception: [Microsoft][ODBC driver for Oracle][Oracle]ORA-06413: Connection not open.

java.sql.SQLException: [Microsoft][ODBC driver for Oracle][Oracle]ORA-06413: Connection not

open.

at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)

at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:3073)

at sun.jdbc.odbc.JdbcOdbcConnection.initialize(JdbcOdbcConnection.java:323)

at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:174)

at java.sql.DriverManager.getConnection(DriverManager.java:582)

at java.sql.DriverManager.getConnection(DriverManager.java:185)

at com.bros.test.TestDb.main(TestDb.java:25)

Reply

windows7bugs says:

August 2, 2012 at 12:04 pm

Hello jo

We are not familiar with what you have mentioned with the error log. However, please tell us

what kind of scripting you are doing which generates the above error log

Page 23: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

23/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

regards,admin

Reply

jo says:

August 3, 2012 at 8:22 am

I’m using Windows 7 (x64 architecture) ultimate version OS

hi this below is the coding part…………………

package com.bros.test;

import java.sql.Connection;

import java.sql.DriverManager;import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

public class TestDb

{public static void main(String[] args) throws ClassNotFoundException, SQLException

{

try

{

Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”);}catch(ClassNotFoundException e)

{

System.out.println(“unable to load driver class”);

return;

}

try

{

Connection dbcon=DriverManager.getConnection(“Jdbc:Odbc:cust”,”system”,”manager”);

Statement smnt=dbcon.createStatement();ResultSet res=smnt.executeQuery(“select * from user_b”);

while(res.next())

{

System.out.println(“”+res.getString(1));

System.out.println(“”+res.getString(2));

}

}

catch(SQLException se)

Page 24: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

24/33

{System.out.println(“sql exception: ” + se.getMessage());

se.printStackTrace(System.out);

}

}

}

when i try to run this code. t get the following error

sql exception: [Microsoft][ODBC driver for Oracle][Oracle]ORA-06413: Connection not open.

java.sql.SQLException: [Microsoft][ODBC driver for Oracle][Oracle]ORA-06413: Connection

not open.

at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)

at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)

at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:3073)

at sun.jdbc.odbc.JdbcOdbcConnection.initialize(JdbcOdbcConnection.java:323)

at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:174)

at java.sql.DriverManager.getConnection(DriverManager.java:582)

at java.sql.DriverManager.getConnection(DriverManager.java:185)

at com.bros.test.TestDb.main(TestDb.java:25)

i have made odbc connection in control panel and even oracle db is open.

is there is oracle 10 g for 64 bit os?

iam just stuck up with this issue. plz help me

jo says:

August 3, 2012 at 8:32 am

i saw i blog i tried to install oracle 10g for 64 bit os.but again i failed to install due to the bello

message

Sorry!

In order to download products from Oracle Technology Network you must agree to the OTN

license terms.

Be sure that…

Your browser has “cookies” and JavaScript enabled.

You clicked on “Accept License” for the product you wish to download.

You attempt the download within 30 minutes of accepting the license.

From here you can go…

Back to Previous Page

Site Map

OTN Homepage…………………..

so plz plz help me to get rid of this issue

jo says:

August 3, 2012 at 8:55 am

Page 25: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

i have installed Oracle 10g express edition in ma pc

windows7bugs says:August 4, 2012 at 10:34 am

Hello Jo

You are getting the listed exception while trying to install the database or while you are

trying to connect to the installed database while doing some sort of scripting programming?

like jsp pages?

Regards,

Admin

jo says:

August 4, 2012 at 11:48 am

yes iam getting the above exception when i try to connect to the installed

database…………….. i want to do mini projects using core java not jsp

windows7bugs says:

August 4, 2012 at 12:16 pm

Hello Jo

“sql exception: [Microsoft][ODBC driver for Oracle][Oracle]ORA-06413: Connection not

open.

java.sql.SQLException: [Microsoft][ODBC driver for Oracle][Oracle]ORA-06413: Connection

not open.”

From the errors, we could read that you are creating ODBC connection using DSN right?

With 64bit Windows operating system, you will not able straightaway hookup your DSN, as

the drivers get installed under native 64bit repos. Last year we had the same problems and

were able to resolve by switching to 10g 64bit client.

Have a look at following threads

https://forums.oracle.com/forums/thread.jspa?messageID=10114148

http://social.msdn.microsoft.com/Forums/en-US/sqlgetstarted/thread/120d506f-d067-45cd-

b547-5b1bb95fd16a/

We hope one of those threads will help you to resolve the difficulties.

Regards,

Admin

jo says:

August 5, 2012 at 2:36 pm

thanks for the info……………… i ll try to do it

jo says:

Page 26: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

26/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

August 9, 2012 at 9:22 am

hi,

atlast i tried to install oracle 11g(11.2.0.1.0) express edition in my laptop and some how with

lot of hurdles i installed it.

secondly, i created a listener and a database

thirdly, i wrote the bello coding in elipse.

import java.sql.Connection;

import java.sql.Date;

import java.sql.DriverManager;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

public class Test{

public static final String DBURL = “jdbc:oracle:thin:@localhost:1524:Demo”;

public static final String DBUSER = “system”;

public static final String DBPASS = “manager”;

public static void main(String[] args) throws SQLException{

DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());

Connection con = DriverManager.getConnection(DBURL, DBUSER, DBPASS);

Statement statement = con.createStatement();

ResultSet rs = statement.executeQuery(“SELECT * FROM emp”);

if(rs.next())

{

System.out.println(“”+rs.getString(1));

System.out.println(“”+rs.getString(2));

}

rs.close();

statement.close();

con.close();

Page 27: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

}

}

again i created DSN in control panel->administrative tool->add

soo, there i checked for the connection too and even that was sucessful. nw i returned to

eclipse Ide and tried to run the code

getting the below errors

Exception in thread “main” java.sql.SQLException: The Network Adapter could not establish

the connectionat oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)

at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)

at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:199)

at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:480)

at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:413)

at oracle.jdbc.driver.PhysicalConnection.(PhysicalConnection.java:508)

at oracle.jdbc.driver.T4CConnection.(T4CConnection.java:203)

at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:33)

at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:510)

at java.sql.DriverManager.getConnection(DriverManager.java:582)

at java.sql.DriverManager.getConnection(DriverManager.java:185)

at com.bros.test.Test.main(Test.java:33)

Caused by: oracle.net.ns.NetException: The Network Adapter could not establish the

connectionat oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:328)

at oracle.net.resolver.AddrResolution.resolveAndExecute(AddrResolution.java:421)

at oracle.net.ns.NSProtocol.establishConnection(NSProtocol.java:630)

at oracle.net.ns.NSProtocol.connect(NSProtocol.java:206)

at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:966)

at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:292)

… 7 more

Caused by: java.net.ConnectException: Connection refused: connect

at java.net.PlainSocketImpl.socketConnect(Native Method)

at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)

at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)

at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)

at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)

at java.net.Socket.connect(Socket.java:529)at java.net.Socket.connect(Socket.java:478)

at java.net.Socket.(Socket.java:375)

at java.net.Socket.(Socket.java:189)

at oracle.net.nt.TcpNTAdapter.connect(TcpNTAdapter.java:127)

at oracle.net.nt.ConnOption.connect(ConnOption.java:126)

at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:306)

… 12 more

I tried reading many blogs but it is of no use

Page 28: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

28/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

plz plz help me and i thank in advance

jo says:

August 10, 2012 at 1:00 pm

hiiii agian i sort out the above issue now finally when i run the codeiam getting the below error………….. plz help me

Exception in thread “main” java.sql.SQLSyntaxErrorException: ORA-00942: table or view

does not exist

at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:91)

at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)

at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)

at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)

at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)

at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1034)

at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:183)at oracle.jdbc.driver.T4CStatement.executeForDescribe(T4CStatement.java:780)

at oracle.jdbc.driver.T4CStatement.executeMaybeDescribe(T4CStatement.java:855)

at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1186)

at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1377)

at

oracle.jdbc.driver.OracleStatementWrapper.executeQuery(OracleStatementWrapper.java:387)

at com.bros.test.Test.main(Test.java:35)

but iam sure that i created a table in sql+ and everything ok withe back end as wel as control

panel

the prob is its throwing out the above error.

none of th blogs helped me out

windows7bugs says:

August 11, 2012 at 9:51 am

Hello Jo

Did you mean eclipse? We think, we read “elipse” somewhere with your reply and hoping that

you were referring to “eclipse”

Please check the following threads

http://www.coderanch.com/t/569263/vc/connect-jdk-oracle-express-edition

http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html

If it doesn’t help your situation, accept our apologies as we don’t deal with eclipse or jdeveloper.

We are purely based on Oracle developer forms and reports and Oracle+ASP solutions.

regards,

Admin

Page 29: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

29/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

Reply

46. Yosif says:

August 2, 2012 at 11:34 am

I am facing this error while running Oracle 9i database configuration on widows 7 as the following

“jrew.exe has stopped working” please let me where is the problem. Thanks

Reply

windows7bugs says:

August 2, 2012 at 12:03 pm

Hi Yosif

You cannot install Oracle Database 9i over Windows 7. Solution is that simple as on date.

Haven’t had any success with our mutliple attempts earlier. If we come across (utmost

impossible) workarounds, we will post it with the blog

regards,

admin

Reply

47. mk says:

August 20, 2012 at 3:27 pm

i cant find how to change the and location of file 10.2.0.4 server in oracle?

Reply

windows7bugs says:

August 22, 2012 at 9:26 am

Hello mk

The problem description is too short. Please elaborate

regards,

admin

Reply

48. Windows 8 Oracle Developer Suite 10g « Duh! Microsoft did it again says:

August 25, 2012 at 12:33 pm

[...] yes. You can use the same trick once again to install Oracle Developer Suite 10g on Windows [...]

Reply

49. oracleuser says:

August 25, 2012 at 1:12 pm

I get the following error while installing oracle 10g. ORA-12154:TNS:could not resolve the connect

identifier specified

Reply

windows7bugs says:

August 25, 2012 at 2:41 pm

Disable your firewall and try again.

regards, adm

Page 30: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

30/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

Reply

50. Marat says:

September 2, 2012 at 10:36 am

I have installed oracle11gR2_client, toad for Oracle. It works.

Now I set virtual memory and changed the compatibility to Windows XP Service Pack 2 as it said in

this article.

I started installation of Oracle developer suite10g, but in a step “Analyzing dependencies” I have an

error:

” The Windows System Files Install has not been run on this machine.One or more operating system

files currently in use need to be updated.You must exit this installation and use Disk1 to run a

Secondary Windows system Files installation to update the operating system files and then restart

the current installation process.”

OS: Windows 7 Corporate

Reply

51. oracle dba says:September 4, 2012 at 1:08 pm

In Version 32-bit or 64-bit We have to add 6.0,6.1,7.0. In install oraparam. Otherwise it’s should give

error.. In advance version we don’t need to edit this?

Reply

windows7bugs says:September 4, 2012 at 6:12 pm

Hello Oracle DBA

We didn’t quite understand your question. Are you asking whether you need to change the

oraparam file for 11g and later versions to install on Windows 7? If yes, no, there is no need to

change any parameters for 11g installations. We always tested the oracle databases against 64bit

of Windows only.

Please elaborate your question, so that we may able to answer your more satisfactorily

Reply

52. ora_dba says:

September 19, 2012 at 1:18 pmI am also facing the sane problem. But I didn’t find out as you mention the path. So i change in

raparam ;to add 7. So it is OK or it’s not working problem n getting me error?

Reply

windows7bugs says:September 20, 2012 at 9:48 am

Hello ora_dba

You should provide us the complete details, so that we can try to recommend you a proper

solution.

Unfortunately your description about the problems with installation is not adequate enough for

Page 31: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12

31/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

us.

regards,

admin

Reply

53. ora_dba says:

September 21, 2012 at 1:22 pm

As you mention on top. With example. I didn’t find “refhost.xml”

in Installer… I should add in “refhost.xml”? What you need to understand my problem? Which

detail you want?

Reply

windows7bugs says:

September 22, 2012 at 8:31 am

Hi ora_dba

list the following details

Oracle database version you are trying to install

Windows 7 (Basic/Professional)

Windows 32bit or 64bit

Once you provide us the above details, we will try to provide you a solution.

regards,

admin

Reply

ora_dba says:

September 27, 2012 at 12:35 pm

10201

Window 7 ultimate

windows 32-bit

windows7bugs says:

September 29, 2012 at 8:30 am

What kind of media you are using to install database? is it on dvd/cd?

regards,

admin

Reply

ora_dba says:

October 8, 2012 at 5:52 pm

I took in pen drive from my friends. N i Install in my PC.

windows7bugs says:

October 9, 2012 at 8:43 am

Page 32: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

32/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

We sent you a email message, please reply to it.

regards, admin

54. ora_dba says:

September 27, 2012 at 12:42 pm

Can you please help me out form this problems. It is create a lot of errors n i can’t go further. Where

should i fine above script? Where i add 7.

Reply

55. ora_dba says:

October 8, 2012 at 1:51 pm

R u there? I need your Help?

Reply

56. dba says:

October 11, 2012 at 1:44 pm

Hi Windows 7 32-bit or 64-bit. In both the version for installing oracle we have to add?

Reply

windows7bugs says:

October 13, 2012 at 8:32 am

Hello dba Depends upon the database version. This post deals with 10g Rx, if you are using

Oracle database 11g, the installation parameter doesn’t require the hacking explained with the

post.

regards,

adm

Reply

dba says:

October 15, 2012 at 12:40 pm

I c… N what about Vista?

windows7bugs says:October 15, 2012 at 6:32 pm

Dear ora dba, this particular post deals with installing oracle 10g database on Windows 7 OS.

We are totally failing to understand what kind of issues you are facing installing the specified

product on said OS. We were trying to provide you some kind of assistance, provided you

provide us all possible details. If you cannot, we will not your queries in future.

Thanks and remember this blog is a personal interest and we are not bound to solve case by

case issues.

Regards,

Admin

57. satish says:

Page 33: Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

11/12/12Install Oracle 10g onward database, developer on Windows 7 « Duh! Microsoft did it again

33/33windows7bugs.wordpress.com/2010/…/install-oracle-10g-onward-database-developer-on-windows-7/

October 21, 2012 at 6:54 am

sir i’m getting error while installing oracle 10g on windows x86.

Reply

58. satish says:

October 21, 2012 at 6:56 am

it window7

when i chaged

[Windows-6.0-optional]

#Windows 7 use winver.exe to find version

[Windows-6.1-required]

like this i getting schema error

Reply

windows7bugs says:October 21, 2012 at 1:22 pm

Hello Satish

Read the thread again, hope it would help

regards,

Admin

Reply

59. dba says:

November 9, 2012 at 12:58 pm

Could you reply me on windows 8? thanks.

Replywindows7bugs says:

November 10, 2012 at 1:38 pm

Check our post towards your query here

http://windows7bugs.wordpress.com/2012/08/24/install-oracle-10g-on-windows-8-p/

Reply

Theme: Contempt by Vault9.

Blog at WordPress.com.