在处理一则ORA-600 [4194]案例时,参考MOS文档:Step by step to resolve ORA-600 4194 4193 4197 on database crash (文档 ID 1428786.1) 1.对于ORA 600[4194]的解释 2.创建新undo表空间最佳实践(包含段检查) 1.对于ORA 600[4194]的解释: The following error is occurring in the alert.log right before the da
一.概述 1.数据库实际管理中,不同业务系统需要使用'不同的用户'进行管理维护和使用,这样做把业务数据和系统数据独立分开管理,利于数据库系统管理: 2.在数据库中创建业务系统用户时候,建议为用户创建指定的用户表空间,否则全部默认为user表空间存储,使得user表空间容易过大,不易管理.查询. 二.操作 1.create user <username> identified by <password>; 此方式使用默认user表空间,不推荐此语句. 2.create user &
--找到存放dbf文件的路径--E:\oracle\product\10.2.0\oradata\orcl--可以通过此语句进行查询select * from v$datafile; --创建表空间create tablespace cxjm logging datafile 'E:\oracle\product\10.2.0\oradata\orcl\cxjm.dbf' size 50m autoextend on extent management local; drop user cxjm
1.创建用户: create user toptea2 identified by "用户名" 2.给用户授权 grant create session to 用户名; grant create table to 用户名; grant create tablespace to 用户名; grant create view to 用户名; 3.查询表空间大小 select file_name,bytes/1024/1024||'M' "size" from dba_d