`
oolala
  • 浏览: 103225 次
  • 性别: Icon_minigender_1
  • 来自: 北京
博客专栏
09c341db-7f05-3f2b-a572-9ee69a5d8a77
unix环境高级编程
浏览量:22699
社区版块
存档分类
最新评论

ORACLE9i使用autotrace

阅读更多

ORACLE9i在使用autotrace之前,需要作一些初始的设置,
 
1.用sys用户运行脚本ultxplan.sql
建立这个表的脚本是:(UNIX:$ORACLE_HOME/rdbms/admin, Windows:%ORACLE_HOME%\rdbms\admin)ultxplan.sql。
SQL> connect sys/sys@colm2 as sysdba;
SQL> @C:\oracle\ora92\rdbms\admin\utlxplan.sql;
SQL> create public synonym plan_table for plan_table; --建立同义词
SQL> grant all on plan_table to public;--授权所有用户
 
2.要在数据库中建立一个角色plustrace,用sys用户运行脚本plustrce.sql来创建这个角色,这个脚本在目录(UNIX:$ORACLE_HOME/sqlplus/admin, Windows:%ORACLE_HOME%\sqlplus\admin)中;
SQL> @C:\oracle\ora92\sqlplus\admin\plustrce.sql;
3.然后将角色plustrace授予需要autotrace的用户;
SQL>grant plustrace to public;
 
* plustrace角色只是具有以下权限:
grant select on v_$sesstat to plustrace;
grant select on v_$statname to plustrace;
grant select on v_$mystat to plustrace;
grant plustrace to dba with admin option;
 
plustrce.sql脚本如下
create role plustrace;
grant select on v_$sesstat to plustrace;
grant select on v_$statname to plustrace;
grant select on v_$mystat to plustrace;
grant select on v_$session to plustrace;
grant plustrace to dba with admin option;
 
4.经过以上步骤的设置,就可以在sql*plus中使用autotrace了,使用非常简单,只要在执行语句之前,执行这样一条命令:
SQL>set autotrace on
即可。
 
*autotrace功能只能在SQL*PLUS里使用
 
补充:
1.ORA-01039: 视图基本对象的权限不足的解决方法
ORA-01039: 视图基本对象的权限不足
Current SQL statement for this session:
EXPLAIN PLAN SET STATEMENT_ID='PLUS561' FOR select table_name from user_tables

I think this is because the user doesn't have access to base tables for USER_TABLES view which belongs to SYS user.

DBA role will do it, "SELECT ANY TABLE" (in 8i & 9i) , and "SELECT ANY DICTIONARY"(in 9i & 10g) system privileges should also do it. Try one of the following 3 ways and run your autotrace again:-

1. 8i & 9i:-
grant select any table to USER123;

2. 9i and 10g:-
grant select any dictionary to USER123;

3. in 8i and 9i, you can also grant accees to the base tables explicitly ( or create a role to hold the grants ) :
grant select on OBJ$ to USER123;
grant select on USER$ to USER123;
grant select on SEG$ to USER123;
grant select on TS$ to USER123;
grant select on TAB$ to USER123;
 
2.在SQPPLUS中得到更新成功或者插入成功的记录数
SQL>set feedback 1;
 
3.在SQPPLUS中得到语句总执行的时间
SQL> set timing on;


4.使用sys进行autotrace的话统计信息statistic都会为0
SQL> select count(*) from dba_objects;
 COUNT(*)
----------
     31820
 
Execution Plan
----------------------------------------------------------
   0      SELECT STATEMENT Optimizer=CHOOSE
   1    0   SORT (AGGREGATE)
   2    1     VIEW OF 'DBA_OBJECTS'
   3    2       UNION-ALL
   4    3         FILTER
   5    4           TABLE ACCESS (BY INDEX ROWID) OF 'OBJ$'
   6    5             NESTED LOOPS
   7    6               TABLE ACCESS (FULL) OF 'USER$'
   8    6               INDEX (RANGE SCAN) OF 'I_OBJ2' (UNIQUE)
   9    4           TABLE ACCESS (BY INDEX ROWID) OF 'IND$'
 10    9             INDEX (UNIQUE SCAN) OF 'I_IND1' (UNIQUE)
 11    3         NESTED LOOPS
 12   11           TABLE ACCESS (FULL) OF 'USER$'
 13   11           INDEX (RANGE SCAN) OF 'I_LINK1' (NON-UNIQUE)
 
Statistics
----------------------------------------------------------
          0 recursive calls
          0 db block gets
          0 consistent gets
          0 physical reads
          0 redo size
          0 bytes sent via SQL*Net to client
          0 bytes received via SQL*Net from client
          0 SQL*Net roundtrips to/from client
          0 sorts (memory)
          0 sorts (disk)
          1 rows processed
 
5.AUTOTRACE的几个常用选项
(1). set autotrace on explain; --只显示执行计划
SQL> set autotrace on explain;
SQL> select count(*) from dba_objects;
 
 COUNT(*)
----------
     31820
 
Execution Plan
----------------------------------------------------------
   0      SELECT STATEMENT Optimizer=CHOOSE
   1    0   SORT (AGGREGATE)
   2    1     VIEW OF 'DBA_OBJECTS'
   3    2       UNION-ALL
   4    3         FILTER
   5    4           TABLE ACCESS (BY INDEX ROWID) OF 'OBJ$'
   6    5             NESTED LOOPS
   7    6               TABLE ACCESS (FULL) OF 'USER$'
   8    6               INDEX (RANGE SCAN) OF 'I_OBJ2' (UNIQUE)
   9    4           TABLE ACCESS (BY INDEX ROWID) OF 'IND$'
 10    9             INDEX (UNIQUE SCAN) OF 'I_IND1' (UNIQUE)
 11    3         NESTED LOOPS
 12   11           TABLE ACCESS (FULL) OF 'USER$'
 13   11           INDEX (RANGE SCAN) OF 'I_LINK1' (NON-UNIQUE)
 
(2). set autotrace on statistics;--只显示统计信息
SQL> set autotrace on statistics;
SQL> select count(*) from dba_objects;
 
 COUNT(*)
----------
     31820
 
Statistics
----------------------------------------------------------
          0 recursive calls
          0 db block gets
      25754 consistent gets
          0 physical reads
          0 redo size
        383 bytes sent via SQL*Net to client
        503 bytes received via SQL*Net from client
          2 SQL*Net roundtrips to/from client
          0 sorts (memory)
          0 sorts (disk)
          1 rows processed
 
(3). set autotrace traceonly;--同set autotrace on 只是不显示查询输出
SQL> set autotrace traceonly;
SQL> select count(*) from dba_objects;
 
Execution Plan
----------------------------------------------------------
   0      SELECT STATEMENT Optimizer=CHOOSE
   1    0   SORT (AGGREGATE)
   2    1     VIEW OF 'DBA_OBJECTS'
   3    2       UNION-ALL
   4    3         FILTER
   5    4           TABLE ACCESS (BY INDEX ROWID) OF 'OBJ$'
   6    5             NESTED LOOPS
   7    6               TABLE ACCESS (FULL) OF 'USER$'
  8    6               INDEX (RANGE SCAN) OF 'I_OBJ2' (UNIQUE)
   9    4           TABLE ACCESS (BY INDEX ROWID) OF 'IND$'
 10    9             INDEX (UNIQUE SCAN) OF 'I_IND1' (UNIQUE)
 11    3         NESTED LOOPS
 12   11           TABLE ACCESS (FULL) OF 'USER$'
 13   11           INDEX (RANGE SCAN) OF 'I_LINK1' (NON-UNIQUE)
 
Statistics
----------------------------------------------------------
          0 recursive calls
          0 db block gets
      25754 consistent gets
          0 physical reads
          0 redo size
        383 bytes sent via SQL*Net to client
        503 bytes received via SQL*Net from client
          2 SQL*Net roundtrips to/from client
          0 sorts (memory)
          0 sorts (disk)
          1 rows processed
 
(4).set autotrace traceonly explain;--比较实用的选项,只显示执行计划,但是与set autotrace on explain;相比不会执行语句,对于仅仅查看大表的Explain Plan非常管用。
SQL> set autotrace traceonly explain;
SQL> select * from dba_objects;
已用时间: 00: 00: 00.00
 
Execution Plan
----------------------------------------------------------
   0      SELECT STATEMENT Optimizer=CHOOSE
   1    0   VIEW OF 'DBA_OBJECTS'
   2    1     UNION-ALL
   3    2       FILTER
   4    3         TABLE ACCESS (BY INDEX ROWID) OF 'OBJ$'
   5    4           NESTED LOOPS
   6    5             TABLE ACCESS (FULL) OF 'USER$'
   7    5             INDEX (RANGE SCAN) OF 'I_OBJ2' (UNIQUE)
   8    3         TABLE ACCESS (BY INDEX ROWID) OF 'IND$'
   9    8           INDEX (UNIQUE SCAN) OF 'I_IND1' (UNIQUE)
 10    2       TABLE ACCESS (BY INDEX ROWID) OF 'LINK$'
 11   10         NESTED LOOPS
 12   11           TABLE ACCESS (FULL) OF 'USER$'
 13   11           INDEX (RANGE SCAN) OF 'I_LINK1' (NON-UNIQUE)
 
6.Statistics参数的含义
recursive calls = basically sql performed on behalf of your sql.
So, if we had to PARSE the query for example, we might have
had to run some other queries to get data dictionary info.
that would be recursive calls.
db block gets = blocks gotten in "current" mode. That is,
blocks gotten as they exist right now. You'll see these
for full table scans (segment headers areread in current mode)
and modification statements (we modify the block as it
exists "right now")
consistent gets = blocks gotten in consistent read mode.
This is the mode we
read blocks in with a select for example. Also,
when you do a searched UPDATE/DELETE, we read the blocks in
consistent read mode and then get the block in current mode
to actually do the modification. A select for update will do
this as well.
physical reads = self explanatory, physical IO
redo size = self explanatory -- amount of redo generated
sorts (memory)/(disk) -- sorts done.
 

分享到:
评论

相关推荐

    oracle使用autotrace 功能

    在Oracle 9i中,启用Autotrace前需要进行一些初步配置。首先,使用`sys`用户登录到数据库,运行`utlxplan.sql`脚本。这个脚本位于`$ORACLE_HOME/rdbms/admin`目录下(在Unix系统上)或`%ORACLE_HOME%\rdbms\admin`...

    ORACLE9i_优化设计与系统调整

    §10.13.8 使用ORACLE 诊断工具 126 第三部分 ORACLE应用系统开发优化 128 第11章 诊断与调整工具- 128 §11.1 警告日志文件 128 §11.1.1 警告日志文件管理 128 §11.1.2 参考警告日志文件调整 128 §11.2 后台进程...

    Oracle 9i&10g编程艺术

    对于经验丰富的开发者,书中包含的高级主题如Statspack(一个用于性能分析的工具)的配置和使用,以及SQL*Plus的AUTOTRACE功能,可以帮助他们进行更精细化的性能诊断和优化。 此外,书中还提到了定制脚本,这表明...

    oracle 9i 10g编程艺术

    ### Oracle 9i 10g编程艺术 #### 概述 《Oracle 9i & 10g 编程艺术:深入数据库体系结构》是一本深入探讨Oracle 9i和10g版本数据库编程技术和架构的经典之作。本书旨在帮助读者全面理解Oracle数据库的核心组件、...

    Oracle9i数据库性能调整方法之研究.pdf

    Oracle9i提供的解释计划和AUTOTRACE工具可以帮助分析和优化SQL性能。 3. 内存管理: - 内存是数据库性能的关键因素之一。通过调整内存分配,如PGA(Program Global Area)和SGA,可以减少磁盘I/O,提高数据处理...

    Oracle 9i&10g编程艺术:深入数据库体系结构.doc

    《Oracle 9i&10g编程艺术:深入数据库体系结构》是一本专注于Oracle数据库编程与体系结构深度解析的专业书籍。这本书旨在帮助读者理解和掌握Oracle 9i和10g这两个版本中的核心技术和最佳实践,从而提升在数据库设计...

    oracle dba 面试题总结

    使用 set autotrace on 语句可以查看 SQL 的执行计划,并且可以使用 explain plan 语句来查看执行计划的详细信息。在优化器模式为 CHOOSE 时,如果表有统计信息,优化器将选择 Cost-Based Optimizer(CBO),否则...

    深入解析OracleDBA入门进阶与诊断案例 3/4

     10.1 使用AUTOTRACE功能辅助SQL优化   10.2 获取SQL执行计划的方法   10.3 捕获问题SQL解决过度CPU消耗问题   10.4 使用SQL_TRACE/10046事件进行数据库诊断   10.5 使用物化视图进行翻页性能调整  ...

    深入解析OracleDBA入门进阶与诊断案例 4/4

     10.1 使用AUTOTRACE功能辅助SQL优化   10.2 获取SQL执行计划的方法   10.3 捕获问题SQL解决过度CPU消耗问题   10.4 使用SQL_TRACE/10046事件进行数据库诊断   10.5 使用物化视图进行翻页性能调整  ...

    深入解析OracleDBA入门进阶与诊断案例 2/4

     10.1 使用AUTOTRACE功能辅助SQL优化   10.2 获取SQL执行计划的方法   10.3 捕获问题SQL解决过度CPU消耗问题   10.4 使用SQL_TRACE/10046事件进行数据库诊断   10.5 使用物化视图进行翻页性能调整  ...

    oracle索引介绍

    - 在Oracle 9i之前的版本中,当使用成本基础优化器时,只有在WHERE子句中出现的前导列才会被考虑用于索引扫描。 - 自Oracle 9i起,引入了一种新的索引扫描模式——索引跳跃扫描(Index Skip Scan),即使在WHERE...

    oracle笔记二--plsql 编程.txt

    - **Oracle 9i外部表**:对于Oracle 9i的外部表,不能使用Analyze收集统计信息,而应使用DBMS_STATS。 ### 7. 重建索引 - **重建索引**:重建索引是一种优化索引的方法,它可以改善索引的性能。重建索引时不会删除...

    oracle dba 笔试题

    - 在SQL Plus中使用`SET AUTOTRACE ON`命令。 - 使用`UTLXPLAN.SQL`脚本创建`PLAN_TABLE`表,然后执行SQL语句,其执行计划将被存储在该表中供后续分析。 3. **使用CBO与RULE的区别** CBO(Cost-Based Optimizer...

Global site tag (gtag.js) - Google Analytics