Oracle体系结构

1.用户进程(User process)
  比如sql plus
2.服务进程(Server process)-PGA
   1.排序区
   2.会话信息
   3.游标状态
   4.堆栈空间
3.实例(Instance)-SGA(system global area)
   1.Shared pool
      a.shared_pool_size 共享池尺寸
      b.library cache 库高速缓存 :存放SQL语句文本,解析代码,执行计划
      c.data dict cache 数据字典高速缓存   :包括表定义和权限信息
   2.database buffer cache  数据高速缓冲区
   3.redo log buffer cache   重做日志缓冲区 
4.数据库(Database)
   1.数据文件  data file
   2.控制文件  control file  用来连接instance和database
   3.重做日志文件  redo log file
   4.参数文件   parameter file
   5.口令文件   password file
   6.归档日志文件  archived log file

你可能感兴趣的:(Oracle体系结构)