>  기사  >  데이터 베이스  >  在Oracle中启用AutoTrace查看SQL执行计划

在Oracle中启用AutoTrace查看SQL执行计划

WBOY
WBOY원래의
2016-06-07 16:22:14872검색

通过以下方法可以把Autotrace的权限授予Everyone, 如果你需要限制Autotrace权限,可以把对public的授权改为对特定user的授权。 D:oracleora92sqlplus /nolog SQL*Plus: Release 9.2.0.1.0 - Production on 星期二 6月 3 15:16:03 2003 Copyright (c) 1982,

   通过以下方法可以把Autotrace的权限授予Everyone,

  如果你需要限制Autotrace权限,可以把对public的授权改为对特定user的授权。

  D:oracleora92>sqlplus /nolog

  SQL*Plus: Release 9.2.0.1.0 - Production on 星期二 6月 3 15:16:03 2003

  Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

  SQL> connect sys as sysdba

  请输入口令:

  已连接。

  SQL> [b]@?rdbmsadminutlxplan[/b]

  表已创建。

  SQL> create public synonym plan_table for plan_table;

  同义词已创建。

  SQL> grant all on plan_table to public ;

  授权成功。

  SQL>[b] @?sqlplusadminplustrce[/b]

  SQL>

  SQL> drop role plustrace;

  drop role plustrace

  *

  ERROR 位于第 1 行:

  ORA-01919: 角色'PLUSTRACE'不存在

  SQL> create role plustrace;

  角色已创建

  SQL>

  SQL> grant select on v_$sesstat to plustrace;

  授权成功。

  SQL> grant select on v_$statname to plustrace;

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.