Re: [PERFORM] Memory Leakage Problem

2005-12-06 Thread Scott Marlowe
On Tue, 2005-12-06 at 03:22, Kathy Lo wrote: > Hi, > > In this program, it will access this database server using simple and > complex (joining tables) SQL Select statement and retrieve the matched > rows. For each access, it will connect the database and disconnect it. > > I found that the memo

Re: [PERFORM] Memory Leakage Problem

2005-12-06 Thread Tom Lane
Kathy Lo <[EMAIL PROTECTED]> writes: > I found that the memory of the databaser server nearly used up (total 2G RAM). > After I stop the program, the used memory did not free. I see no particular reason to believe that you are describing an actual memory leak. More likely, you are just seeing the

[PERFORM] Memory Leakage Problem

2005-12-06 Thread Kathy Lo
Hi, I setup a database server using the following configuration. Redhat 9.0 Postgresql 8.0.3 Then, I setup a client workstation to access this database server with the following configuration. Redhat 9.0 unixODBC 2.2.11 psqlodbc-08.01.0101 and write a C++ program to run database query. In thi