Click here to Skip to main content
15,905,323 members
Home / Discussions / Database
   

Database

 
GeneralRe: DataBinding to a datagrid Pin
betengan4-Aug-03 5:35
betengan4-Aug-03 5:35 
Generalretrieved record Pin
dabuskol3-Aug-03 2:11
dabuskol3-Aug-03 2:11 
GeneralRe: retrieved record Pin
Rampas Tomas4-Aug-03 0:02
Rampas Tomas4-Aug-03 0:02 
GeneralRe: retrieved record Pin
dabuskol4-Aug-03 0:33
dabuskol4-Aug-03 0:33 
GeneralOLE DB Povider Dialog Pin
FAADI1-Aug-03 21:16
FAADI1-Aug-03 21:16 
GeneralRe: OLE DB Povider Dialog Pin
dabuskol4-Aug-03 0:41
dabuskol4-Aug-03 0:41 
GeneralDataSet doesn't deallocate used memory Pin
Rampas Tomas31-Jul-03 1:18
Rampas Tomas31-Jul-03 1:18 
GeneralRe: DataSet doesn't deallocate used memory Pin
Mike Dimmick31-Jul-03 1:35
Mike Dimmick31-Jul-03 1:35 
The free operation is performed basically by setting all the row references of all the tables to null (or Nothing, depending on favourite language Wink | ;) ).

The actual freeing of memory is done by the garbage collector whenever it next decides to run.

The size you see in the Task Manager is (by default) the process's working set size - the set of all memory pages currently in physical memory for this process. Note that shared pages are counted once for each process, so the sum of this column can exceed the size of your physical memory.

If memory demands get tight, Windows will swap out pages that haven't been referenced recently. If there's an area of the managed heap that is all garbage waiting to be collected, which is one or more pages in size, this might get swapped out. Because the memory is writable, it will be written to the page file rather than just discarded.

The garbage collector won't reduce the virtual memory size of the managed heap unless it opts to compact the heap (moving objects down in memory). It does this periodically, IIRC.

I wouldn't worry about it.
GeneralRe: DataSet doesn't deallocate used memory Pin
Rampas Tomas31-Jul-03 1:48
Rampas Tomas31-Jul-03 1:48 
GeneralQuestion about the increment Pin
Exceter30-Jul-03 18:09
Exceter30-Jul-03 18:09 
GeneralRe: Question about the increment Pin
Hesham Amin30-Jul-03 19:32
Hesham Amin30-Jul-03 19:32 
GeneralRe: Question about the increment Pin
Exceter30-Jul-03 23:46
Exceter30-Jul-03 23:46 
GeneralRe: Question about the increment Pin
Arjan Einbu31-Jul-03 1:13
Arjan Einbu31-Jul-03 1:13 
Generalproblem in adding records after deleting some records Pin
Wormhole523030-Jul-03 4:38
Wormhole523030-Jul-03 4:38 
GeneralRe: problem in adding records after deleting some records Pin
Hesham Amin30-Jul-03 9:00
Hesham Amin30-Jul-03 9:00 
QuestionDoes access work on network? Pin
Anonymous30-Jul-03 3:03
Anonymous30-Jul-03 3:03 
AnswerRe: Does access work on network? Pin
Mike Dimmick30-Jul-03 3:11
Mike Dimmick30-Jul-03 3:11 
GeneralRe: Does access work on network? Pin
Member 9630-Jul-03 4:25
Member 9630-Jul-03 4:25 
GeneralRe: Does access work on network? Pin
Mike Dimmick30-Jul-03 4:49
Mike Dimmick30-Jul-03 4:49 
GeneralRe: Does access work on network? Pin
Member 9630-Jul-03 5:28
Member 9630-Jul-03 5:28 
AnswerRe: Does access work on network? Pin
Member 9630-Jul-03 4:23
Member 9630-Jul-03 4:23 
GeneralADO Performance Pin
RChin29-Jul-03 22:40
RChin29-Jul-03 22:40 
GeneralRe: ADO Performance Pin
Mike Dimmick30-Jul-03 3:36
Mike Dimmick30-Jul-03 3:36 
GeneralRe: ADO Performance Pin
RChin30-Jul-03 22:34
RChin30-Jul-03 22:34 
QuestionHow to get the columns except one Pin
Exceter29-Jul-03 18:45
Exceter29-Jul-03 18:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.