Hello, try to increase the maximum heap space memory limit of the java process in which the database runs. This can be done using the - Xmx512m switch, where the 512m means 512 megabytes (http:// www.caucho.com/resin-3.0/performance/jvm-tuning.xtp). When starting the database, use sth like
java -Xmx512m h2.jar instead of java h2.jar Best regards, David Stefka On 15 čvn, 11:43, Christoph Steiner <[email protected]> wrote: > hi, > > we are working with really big H2 Database >2-3 gb. Every time I want > to update my db using "SCRIPT TO ...." with compression > and AES encryption i run into java.heapspace Exception. There is no > difference if i try from java or from database tools (RazorSql, > Squirrel). Is there a way to alter the heap space size of the > database. > > thx in advance > Christoph -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
