http://www.dba-oracle.com/t_find_size_schema.htm Question: How do I find the size of a schema in my database? Answer: It depends on how you define "size". If you want the total disk space consumed by the schema (including indexes, tablespace f…
參考原文: Users Accounts Getting Locked. (Doc ID 791037.1) 事实上这个文章是为oracle 别的软件产品写的,只是涉及到user 锁定问题.那还是跟db有关系. 该文章我就不所有翻译了,仅仅翻译最实用的一点: ---lcount列是记录oracle用户用错误的password登陆db的登陆的次数. Select lcount from SYS.USER$ where name ='<USERNAME>'…
与 Oracle DB 交互 以下的演示样例从最主要的层面描写叙述 Oracle DB 操作.该演示样例说明了一种 Oracle DB 配置,在该配置中,用户和关联server进程执行于通过网络连接的不同计算机上. 1. 在安装了 Oracle DB 的节点(通常称为"主机"或"数据库server")上启动了一个实例. 2. 用户启动一个应用程序,该应用程序衍生了一个用户进程.该应用程序尝试建立一个与server的连接(此连接可能是本地连接.客户机/server连接…
改变数据库用户sysman(该用户是DB Control Repository 的schema)password的方法 參考原文: How To Change the Password of the Database User Sysman (DB Control Repository Schema) (Doc ID 259379.1) 适用于: Enterprise Manager for Oracle Database - Version 10.1.0.2 to 11.2.0.3 [Rele…
使用 sys 或者 system 用户登录 Oracle DB Control 是没有问题的. 但是,如果是普通的用户需要登录Oracle DB Control,建表或者视图之类的, 则需要授权 SELECT_CATALOG_ROLE 角色给该用户,语法如下: GRANT SELECT_CATALOG_ROLE TO XXX; 上面语法示例中的 XXX 代表需要授权的用户名.…