Just want to share my Oracle DAC 10g startserver.sh.
startserver.sh is already provides as part of the DAC 10g install. I have added a couple of extra java parameters to allow a larger heap size and garbage collection method
. ./config.sh $JAVA -server -Xms2048m -Xmx2048m -XX:+UseParNewGC -XX:ErrorFile='./hs_err_pid.log' -cp $DACCLASSPATH com.siebel.etl.net.QServer
-Xms and -Xmx give the dac server application 2GB of heap size to play with.
-XX:+UseParNewGC forces JVM to use parallel young generation GC with the concurrent GC.
-XX:ErrorFile should your dac server crash with a JVM error the stacktrace/dump will be stored in the specified file.
Until I feel like posting again ;)
