Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2322410
  • 博文数量: 310
  • 博客积分: 6853
  • 博客等级: 准将
  • 技术积分: 2833
  • 用 户 组: 普通用户
  • 注册时间: 2005-08-04 16:41
文章分类

全部博文(310)

文章存档

2013年(17)

2012年(42)

2011年(76)

2010年(71)

2009年(99)

2007年(2)

2006年(1)

2005年(2)

分类: Oracle

2010-06-08 17:01:17

今天有朋友问到MGMT_VIEW用户是做什么用的,我们来看一下数据库中的这个用户:
SQL> select * from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
PL/SQL Release 10.2.0.4.0 - Production
CORE    10.2.0.4.0      Production
TNS for Linux: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - Production

SQL> col username for a15
SQL> select username,password,account_status from dba_users where USERNAME='MGMT_VIEW';

USERNAME        PASSWORD                      ACCOUNT_STATUS
--------------- ------------------------------ --------------------------------
MGMT_VIEW      A2C9C472AEB0438C              OPEN

这个用户不拥有对象:
SQL> select object_name,object_type from dba_objects where owner='MGMT_VIEW';

no rows selected

实际上 MGMT_VIEW 用户数DB Control Repository的一部分,和SYSMAN用户一起构成DB Control Repository的组成部分。

MGMT_VIEW 不拥有任何对象,仅用于查询 SYSMAN 用户对象。
阅读(5527) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~