**********************************************************
* Description: Knowledge of how process running in memory
* Compatiablity: RDBMS 11g, 12c
* Date: 02:45 PM EST, 04/30/2017
**********************************************************



<1> How process stored in memory:


                 max
                  __________________
                 |                  |
                 |      Stack       |        <======= Temopray database (function parameters, return addresses, and local variables))
                 |__________________|
                 |                  |
                 |                  |
                 |                  |
                 |                  |
                 |                  |
                 |                  |
                 |                  |
                 |                  |
                 |__________________|
                 |                  |
                 |       heap       |         <====== Memory that is dynamically allocated during process run time
                 |__________________|
                 |                  |
                 |       Text       |         <====== Code of program
                 |__________________|
                 |                  |
                 |       Data       |         <====== Containing global variables
                 |__________________|
				 
                 0
				 
	
	

Your Comments