Re: [MEMORY]Free memory

2006-06-02 Thread yves pielusenet
Le jeudi 01 juin 2006 à 10:15 +0200, John Embretsen a écrit : yves pielusenet wrote: Here is two screenshoots of jmp (Java Memory Profiler). My application create 10 derby database (2 by 2). So before when I didn't shutdown database (look at the Heap size = 63.5MB) :

Re: [MEMORY]Free memory

2006-06-01 Thread John Embretsen
yves pielusenet wrote: Here is two screenshoots of jmp (Java Memory Profiler). My application create 10 derby database (2 by 2). So before when I didn't shutdown database (look at the Heap size = 63.5MB) : http://narma.free.fr/depot/sansShutdown.png And now when I shutdown databases (I draw

[MEMORY]Free memory

2006-05-31 Thread yves pielusenet
Hello, I developpe an application which create several derby databases. It may be 2 ddatabase or 100. In my application, I have a class which create those databases and connexions. Here the constructor method : ---

Re: [MEMORY]Free memory

2006-05-31 Thread Bryan Pendleton
Is there something to do closing a database to free all memory use by this database ? In addition to committing and closing your connections, you can also shut down the database: http://db.apache.org/derby/docs/10.1/devguide/tdevdvlp40464.html thanks, bryan

RE: [MEMORY]Free memory

2006-05-31 Thread derby
: Bryan Pendleton [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 31, 2006 9:07 AM To: Derby Discussion Subject: Re: [MEMORY]Free memory Is there something to do closing a database to free all memory use by this database ? In addition to committing and closing your connections, you can

Re: [MEMORY]Free memory

2006-05-31 Thread yves pielusenet
Yes :) that was it ! thank you very much bryan :) Le mercredi 31 mai 2006 à 07:07 -0700, Bryan Pendleton a écrit : Is there something to do closing a database to free all memory use by this database ? In addition to committing and closing your connections, you can also shut down the

RE: [MEMORY]Free memory

2006-05-31 Thread Zithulele Basil Shange
' Subject: RE: [MEMORY]Free memory Silly question... If the database is being opened as an embedded database, that would imply that you can only have one user or is it one connection to the database? Assuming that there can only be one connection, when its closed, shouldn't derby stop running

Re: [MEMORY]Free memory

2006-05-31 Thread Kristian Waagan
Message- From: Bryan Pendleton [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 31, 2006 9:07 AM To: Derby Discussion Subject: Re: [MEMORY]Free memory Is there something to do closing a database to free all memory use by this database ? In addition to committing and closing your

Re: [MEMORY]Free memory

2006-05-31 Thread yves pielusenet
Here is two screenshoots of jmp (Java Memory Profiler). My application create 10 derby database (2 by 2). So before when I didn't shutdown database (look at the Heap size = 63.5MB) : http://narma.free.fr/depot/sansShutdown.png And now when I shutdown databases (I draw red arrow each times 2