Monday 17 September 2012

Whats the back end processes when we type "Select * from Table"?




First it will look into the System Global Area (SGA) weather the query is been exectued earlier.
If it exist, it would retrive the same output present in memory.
If not the query we typed is complied and the resulting parse tree and excution plan is been stored in SGA.  Then query gets executed and output is given to the application.

No comments:

Post a Comment