This topic explains how to increase the amount of memory that is used by Data Transformation.
For the dts.bat, dts.sh, and dts_service.sh files, the code should look similar to this before you make the memory change:
"%JCLPATH%\java" -Xmx64M -Xms64M -jar org.eclipse.osgi_3.3.0.v20070530.jar -console
And then it should look similar to this after you have made the change:
"%JCLPATH%\java" -Xmx256M -Xms256M -jar org.eclipse.osgi_3.3.0.v20070530.jar -console
For the DTSWin32Service.bat file, the code should look similar to this before you make the memory change:
"%JCLPATH%\javaw" -Xrs -Xmx64M -Xms64M -Xgcpolicy:optavgpause -Xlp -Dcom.ibm.rfid.win32service.sessionkey=%1 %VMOPTIONS% -jar org.eclipse.osgi_3.3.0.v20070530.jar >>..\logs\DTSRuntime.log 2>&1
And then it should look similar to this after you have made the change:
"%JCLPATH%\javaw" -Xrs -Xmx256M -Xms256M -Xgcpolicy:optavgpause -Xlp -Dcom.ibm.rfid.win32service.sessionkey=%1 %VMOPTIONS% -jar org.eclipse.osgi_3.3.0.v20070530.jar >>..\logs\DTSRuntime.log 2>&1