[原创]DB12cR2_Express设置
从12c开始,DB control已经被Express替换。
EM express是一个非常简化版本Database control,仅提供最基本的数据库管理和性能监控管理。
例如如果你想做备份恢复,你只能通过cloud control(EMCC)来做,通过EM Express你可以view数据库的基本参数信息,存储信息,添加数据数据文件,表空间,用户管理等。
Express更加轻量,使用情况看下图汇总。
[原创]DB12cR2系列001_CDB/PDB操作
OCP每日一题
Examine the current value for the following parameters in your database instance:
SGA_MAX_SIZE = 1024M
SGA_TARGET = 700M
DB_8K_CACHE_SIZE = 124M
LOG_BUFFER = 200M
You issue the following command to increase the value of DB_8K_CACHE_SIZE:
SQL> ALTER SYSTEM SET DB_8K_CACHE_SIZE=140M;
Which statement is true?
A. It fails because the DB_8K_CACHE_SIZE parameter cannot be changed dynamically.
B. It succeeds only if memory is available from the autotuned components if SGA.
C. It fails because an increase in DB_8K_CACHE_SIZE cannot be accommodated within SGA_TARGET.
D. It fails because an increase in DB_8K_CACHE_SIZE cannot be accommodated within SGA_MAX_SIZE.
[原创]Exadata虚拟机测试SMART SCAN
Centos7-Python安装
Centos7-64bit安装
近期汇总下常用vi命令和技巧
看图不说
SQL在什么条件下使用索引?
创建合适的索引,可能让性能提升100倍,1000倍以上,不合理则会让新能下降100倍以上,以下汇总测试下什么情况下使用索引,什么时候不适用索引。
Linux vim 基本操作
今天同事问到,在删除某个实例时候提示/tmp文件不够,需要清理下/tmp目录,而不太清楚和确信那些文件可以删除?