摘要:
(一)什么叫用户(user):A user is a name defined in the database that can connect to and access objects.用户是用连接数据库和访问数据库对象的。(用户是用来连接数据库访问数据库)。(二)什么叫模式(schema):A schema is a collection of database objects (used by a user.).Schema objects are the logical structures that directly refer to the database’s data.模式是 阅读全文
摘要:
--数据高速缓存区命中率 --计算公式:1-(physical reads / (db block gets + consistent gets)) --命中率应大于0.90最好 select name,value from v$sysstat where name in ('physical reads','db block gets','consistent gets') / ... 阅读全文