千家信息网

SP2-0618: Cannot find the Session Identifier.Check PLUSTRACE role is enabled

发表于:2024-11-16 作者:千家信息网编辑
千家信息网最后更新 2024年11月16日,1、今天在scott用户下执行语句跟踪时报了如下错误:SCOTT@seiang11g>set autotrace traceonly statisticeSP2-0618: Cannot find t
千家信息网最后更新 2024年11月16日SP2-0618: Cannot find the Session Identifier.Check PLUSTRACE role is enabled

1、今天在scott用户下执行语句跟踪时报了如下错误:

SCOTT@seiang11g>set autotrace traceonly statistice

SP2-0618: Cannot find the Session Identifier. Check PLUSTRACE role is enabled

SP2-0611: Error enabling STATISTICS report

2、通过上述报错信息分析,是由于scott用户没有PLUSTRACE角色,所以使用SYS用户授予scott用户PLUSTRACE角色的权限:

SYS@seiang11g>grant PLUSTRACE to scott;

grant PLUSTRACE to scott

*

ERROR at line 1:

ORA-01919: role 'PLUSTRACE' does not exist

但是报错信息提示:PLUSTRACE角色不存在,这是因为PLUSTRACE角色在数据库创建时并不会自动创建,这个角色需要手动通过运行plustrce.sql脚本来创建;

[oracle@seiang11g ~]$ cd $ORACLE_HOME/sqlplus/admin

[oracle@seiang11g admin]$ ll

total 16

-rw-r--r-- 1 oracle oinstall 466 Jul 13 13:13 glogin.sql

drwxr-xr-x 2 oracle oinstall 81 Jul 13 10:01 help

-rw-r--r-- 1 oracle oinstall 226 Jul 17 2013 libsqlplus.def

-rw-r--r-- 1 oracle oinstall 813 Mar 7 2006 plustrce.sql

-rw-r--r-- 1 oracle oinstall 2118 Feb 16 2003 pupbld.sql

plustrace.sql脚本内容如下所示:

[oracle@seiang11g admin]$ cat plustrce.sql

--

-- Copyright (c) Oracle Corporation 1995, 2002. All Rights Reserved.

--

-- NAME

-- plustrce.sql

--

-- DESCRIPTION

-- Creates a role with access to Dynamic Performance Tables

-- for the SQL*Plus SET AUTOTRACE ... STATISTICS command.

-- After this script has been run, each user requiring access to

-- the AUTOTRACE feature should be granted the PLUSTRACE role by

-- the DBA.

--

-- USAGE

-- sqlplus "sys/knl_test7 as sysdba" @plustrce

--

-- Catalog.sql must have been run before this file is run.

-- This file must be run while connected to a DBA schema.

set echo on

drop role plustrace;

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 plustrace to dba with admin option;

set echo off

SYS用户下执行该脚本:

SYS@seiang11g>@?/sqlplus/admin/plustrce.sql

SYS@seiang11g>

SYS@seiang11g>drop role plustrace;

drop role plustrace

*

ERROR at line 1:

ORA-01919: role 'PLUSTRACE' does not exist

SYS@seiang11g>create role plustrace;

Role created.

SYS@seiang11g>

SYS@seiang11g>grant select on v_$sesstat to plustrace;

Grant succeeded.

SYS@seiang11g>grant select on v_$statname to plustrace;

Grant succeeded.

SYS@seiang11g>grant select on v_$mystat to plustrace;

Grant succeeded.

SYS@seiang11g>grant plustrace to dba with admin option;

Grant succeeded.

SYS@seiang11g>

SYS@seiang11g>set echo off

脚本执行完毕!

3、最后将PLUSTRACE角色授权给scott用户:

SYS@seiang11g>grant PLUSTRACE to scott;

Grant succeeded.

SCOTT@seiang11g>set autotrace traceonly statistics

注意:在将PLUSTRACE角色授权给scott用户后,需要重新连接scott用户才可以开启会话跟踪。

SCOTT@seiang11g>insert into emp1 select * from emp1;

14 rows created.


Statistics

----------------------------------------------------------

15 recursive calls

22 db block gets

33 consistent gets

5 physical reads

1872 redo size

834 bytes sent via SQL*Net to client

791 bytes received via SQL*Net from client

3 SQL*Net roundtrips to/from client

2 sorts (memory)

0 sorts (disk)

14 rows processed



作者:SEian.G(苦练七十二变,笑对八十一难)

用户 角色 脚本 信息 跟踪 七十二变 作者 内容 手动 数据 数据库 时报 权限 语句 这是 错误 分析 提示 运行 数据库的安全要保护哪些东西 数据库安全各自的含义是什么 生产安全数据库录入 数据库的安全性及管理 数据库安全策略包含哪些 海淀数据库安全审计系统 建立农村房屋安全信息数据库 易用的数据库客户端支持安全管理 连接数据库失败ssl安全错误 数据库的锁怎样保障安全 荆门软件开发报价 广东华为服务器虚拟化价格 如何提高数据库优化 数据库事务问题如何解决 邻水租房软件开发 国家公安网络安全监测 天津特色软件开发单价 什么是三体服务器 如何根据项目选择云服务器配置 医院数据库索引 定远自动化软件开发技术采购信息 如何利用数据库线上传图片到电脑 web服务器集成及时通讯框架 济宁武夷山软件开发 如何判断是虚拟机还是服务器 杭州华信设计院网络安全会议 软件开发b端和c端 web中打开服务器的执行文件 正在登录艾尔登法环游戏服务器 网络安全攻击主要来自哪里 杭州网络技术服务公司 家政软件开发定制 软件开发工程培训 惠普dl380服务器改装 简单的网络安全主题绘画 定远自动化软件开发技术采购信息 二道区网络技术咨询诚信合作 关于网络安全在身边的心得 一个数据库只需一张er图吗 phpwind数据库结构
0