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.

How to change/increase the severity of a SR

IamHariKrishnaAug 14 2012 — edited Aug 15 2012
Team,

I just created a SR with Severity-3 instead of Severity-2. How to change/increase the Severity ?

Thanks,
Hari
This post has been answered by Helios-GunesEROL on Aug 15 2012
Jump to Answer

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 Sep 12 2012
Added on Aug 14 2012
6 comments
21,970 views