Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Installation of Oracle 9i on Windows 7

ZahidMay 17 2011 — edited Feb 10 2012
Requested to all

it is requested to all kindly guide me if it is possible to install Oracle 9i on Windows 7.
if it is possible tell me how?

your quick and kind response is required

thanks in advance

Comments

Drako13
I fixed this by going into the ant-sca-compile.xml and changing the <jvmarg value="-Xmx512m"/>below.

Before
<target name="scac" description="Compile and validate a composite">
<scac input="${scac.input}" outXml="${scac.output}" error="${scac.error}" appHome="${scac.application.home}" failonerror="true" displayLevel="${scac.displayLevel}">
<jvmarg value="-Xms128m"/>
<jvmarg value="-Xmx1024m"/>
<jvmarg value="-XX:PermSize=32m"/>
<jvmarg value="-XX:MaxPermSize=512m"/>
<!-- jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/ -->
</scac>

After

<target name="scac" description="Compile and validate a composite">
<scac input="${scac.input}" outXml="${scac.output}" error="${scac.error}" appHome="${scac.application.home}" failonerror="true" displayLevel="${scac.displayLevel}">
<jvmarg value="-Xms128m"/>
<jvmarg value="-Xmx512m"/>
<jvmarg value="-XX:PermSize=32m"/>
<jvmarg value="-XX:MaxPermSize=512m"/>
<!-- jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/ -->
</scac>
User_TQR7L

THANKS ALOT!!!!!!!

It worked for me.

user13145115

THANKS A TON !!!! You saved me lot of time thanks again.

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Mar 9 2012
Added on May 17 2011
7 comments
52,233 views