Better Memory (Heap) management on Solaris 10
问题 I have c code with embedded SQL for Oracle through Pro*C. Whenever I do an insert or update (below given an update example), update TBL1 set COL1 = :v, . . . where rowid = :v To manage bulk insertions and updates, I have allocated several memory chunks to insert as bulk and commit once. There are other memory allocations too going on as and when necessary. How do I better manage the memory (heap) for dynamic memory allocations? One option is to have the heap size configurable during the GNU