SP2-0618: Cannot find the Session Identifier. Check PLUSTRACE role is enabled
admin
2023-05-10 01:59:57
0

今天新建数据库使用hr用户练习的时候,set autotrace on时出现以下错误

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

是因为没有PLUSTRACE权限

涉及到@ORACLE_HOME/sqlplus/admin/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

1.  查找数据库中是否有该角色

SQL> select * from dba_roles where role='PLUSTRACE';  

no rows selected

 2.建立角色  (使用sys用户)

SQL> @?/sqlplus/admin/plustrce.sql
SQL> 
SQL> drop role plustrace;
drop role plustrace
          *
ERROR at line 1:
ORA-01919: role 'PLUSTRACE' does not exist


SQL> create role plustrace;

Role created.

SQL> 
SQL> grant select on v_$sesstat to plustrace;

Grant succeeded.

SQL> grant select on v_$statname to plustrace;

Grant succeeded.

SQL> grant select on v_$mystat to plustrace;

Grant succeeded.

SQL> grant plustrace to dba with admin option;

Grant succeeded.

SQL> 
SQL> set echo off

3.查询数据库

SQL> select * from dba_roles where role='PLUSTRACE';

ROLE			       PASSWORD AUTHENTICAT
------------------------------ -------- -----------
PLUSTRACE		       NO	NONE

4.授予操作用户改权限

SQL> grant plustrace to hr;

Grant succeeded.

5.使用hr用户测试是否成功

SQL> conn hr/hr
Connected.
SQL> 
SQL> set autotrace on


相关内容

热门资讯

聚焦生物医药未来产业,大湾区添... 5月12日,粤港澳大湾区生物医药未来产业创新论坛暨大湾区生物医药未来产业创新中心成立大会在中山大学附...
朱雀二号改进型遥五运载火箭发射... 5月14日午间,朱雀二号改进型遥五运载火箭在东风商业航天创新试验区发射升空,将搭载的2.8吨定制化试...
7500元旅行达人与年轻创作者... 在6000-8000元这个竞争激烈的旗舰手机市场,旅行达人和年轻创作者们往往面临着两难选择:是追求极...
中美元首会晤是否讨论对台军售问... 澎湃新闻记者 聂舒翼 谢瑞强5月14日,外交部发言人郭嘉昆主持例行记者会。有记者提问,中美元首是否在...
进一步“微缩”的进口车,还有多... 据乘联会秘书长崔东树援引相关数据,1-3月中国进口汽车10万辆,同比微增3%。其中,3月汽车进口2....
公示期届满,偷拍者顾某某还能当... 澎湃特约评论员 柯锦雄近日,南京审计大学一名在校研究生顾某某因涉嫌偷拍女生隐私,引发关注。有网友发现...
委内瑞拉政府宣布启动债务重组 委内瑞拉政府13日宣布,将启动外债及委内瑞拉石油公司债务重组程序,以减轻债务负担并稳定经济。委通信与...
燃气热水器需要多少升的 一般在选择燃气热水器的时候,按照家庭内部的使用水的人数来决定,一般如果四个人的话,可以选择40到60...
32升燃气热水器安装方法 燃气热水器是现代家庭生活中非常重要的设备,它不仅方便了我们的生活,提高了生活品质,同时也需要我们重视...
燃气热水器12升和13升的区别... 燃气热水器12升和13升的区别大吗:区别不大。12升就是热水器的额定加热能力是每分钟可以提升水温25...