DB存储层次结构
(画了个草图,将就看一下...XD)
管理表空间
-system 存放数据字典信息,必须的,创建数据库时第一个创建
-sysaux 10g新,必须的,辅助分担system的负荷,系统管理如oem等三方工具等
-undo 存储回滚段信息,提供事务回滚功能
-temp 存放用户排序的临时数据
-index 存放用户表上的索引信息
-other 不同用户表数据
获取表空间和数据文件信息
表空间信息:DBA_TABLESPACES V$TABLESPACE
数据文件信息:DBA_DATA_FILES V$DATAFILE
临时数据文件信息: DBA_TEMP_FILE V$TEMPFILE
创建表空间
create [smallfile|bigfile] tablespace <identName> datafile '<path&name>' [extent management local uniform] size <n>k|m|g|t
通常不需要
确定使用bigfile还是smallfile,T级别以上的一般使用bigfile
smallfile|bigfile 不加使用默认值,
select property_name,property_value from database_properties where property_name like '%TBS%';
可以更改默认值,alter database set default bigfile tablespace.'
需要有dba_role,sysdba或者sysoper的相关权限
extent management local uniform本地管理表空间(LMT),使用bitmap描述空间分布情况,减少数据字典中的竞争,不需要为每个段单独设置存储参数。同版本下字典管理表空间(DMT)转为LMT:
DBMS_SPACE_ADMIN.TABLESPACE_MIGRATE_TO_LOCAL('SYSTEM');
不同版本下DMT转为LMT,在源机上exp导出表空间,在目标机上建立表结构,执行imp加ignore=y参数忽略表结构导入数据
一个tablespace下可以容纳1024个datafile
表空间状态
select tablespace_name,file#,v.status,v.enabled from dba_files d,v$datafile v where d.file_id=v.file#; alter tablespace <tablespace_name> read only|read write|offline|online;
tablespace online read only
system 必须online 必须read write
sysaux 可以offline 必须read write
undo 必须online 必须read write
只读表空间上的对象可以被删除
alter tablespace <old> rename to <new>;表空间重命名,system/sysaux/database_properties中定义的默认用户表空间/默认临时表空间/undo中undo_tablespace定义的不能重命名
表空间的大小
alter database set default smallfile|bigfile tablespace;
一个大表数据文件可以包括4G个os blocks,小表数据文件4m个os blocks
自动扩张:
alter tablespace datafile '<path & name>'|file# autoextend on|off [next <size>|maxsize <size>]; select tablespace_name, file_name, autoextensible from dba_data_files;
手动扩张:
alter tablespace datafile '<path & name>'|file# resize <size>; alter tablespace datas add datafile '<path & name>' size <size>;
(增加表空间中的数据文件)
表空间文件的重命名(归档模式)
将需要重命名数据文件的表空间离线--->操作系统级移动数据文件或改名--->执行
alter tablespace rename file '<old>' to '<new>';
--->将表空间Online
mount阶段--->操作系统级移动数据文件或改名--->执行
alter tablespace rename file '<old>' to '<new>';--->startup
删除表空间
不能删的:系统表空间/使用中的undo表空间/默认临时和永久表空间
drop tablespace <name> [including contents [and datafiles]];
system表空间
数据字典、定义信息
管理:
空间管理
system中一般放单个数据文件,设置自动扩展,或设置为bigfile
备份
必须在归档模式下open状态备份,热备(alter tablespace system begin backup;ho cp ?/system01.dbf ?/bak/;alter tablespace system end backup;),或者用rman(rman target /;backup tablespace system;)备份
还原
归档有备份情况下,日志完整,cp ?/bak/system01.dbf ?/;recover database;或者用rman:restore tablespace system;
归档有备份情况下,日志不完整,不能保证数据不丢失
不能脱机不能只读不能重命名
system auxiliary(sysaux)表空间
10g新,辅助system,存放第三方工具
可以脱机不能只读不能删除(startup migrate|downgrade时drop tablespace sysaux有时可以)不能重命名
查看
select occupant_name,schema_name from v$sysaux_occupants;
备份
在归档模式下open状态备份,热备
(alter tablespace sysaux begin backup;ho cp ?/sysaux01.dbf ?/bak/;alter tablespace sysaux end backup;)
,或者用
rman(rman target /;backup tablespace sysaux;)
备份
还原
归档有备份情况下,日志完整,cp ?/bak/sysaux01.dbf ?/;recover database;或者用rman:restore tablespace sysaux;
没有备份,offline状态下,将数据迁移走,重建库,再把数据迁移回来
UNDO表空间
作用
事务的回退
savepoint <n>; rollback to <n>;
事务的提交
DML|DDL 事务结束:人为commit DML提交,DDL自动提交
闪回数据
状态查询
v$rollstat(所有的回滚段) v$rollname(当前正在使用的回滚段) dba_Segments dba_rollback_Segs
v$transaction
查看当前使用的undo表空间
show parameter undo_tablespace;
建立
create smallfile|bigfile undo tablespace <name> datafile <path&name> size <size>;
删除
drop tablespace undo including contents and datafiles;
(不能删除当前正在使用的表空间)
更改
将默认的undo表空间重命名以后,重启数据库之后Oracle会自动将参数修改为新的名字
估算undo表空间大小:
undo space=(undo_retention*undo_blocks_per_second * db_block_size) + db_block_size show parameter undo_retention;--->undo_retention show parameter db_block_size;--->db_block_size select sum(undoblks)/sum((end_time - begin_time)*10800) from v$undostat;--->undo_blocks_per_second
查询当前undo表空间的大小:
max(block_id) * db_block_size show parameter db_block_size;--->db_block_size
(单位k)
select max(block_id) from dba_extents where file_id=2;--->block_id
备份(归档模式)
有备份:rman或者热备
无备份:系统中是否有其他的undo,如果有,把损坏的脱机,用其他的替换,然后启动,删除损坏的表空间并建立新的。如果没有,设置参数undo_management=manual,使用隐藏参数让undo脱机(alter system set "_offline_rollback_segments"=true scope=spfile),然后启动,参看dba_rollback_Segs中搞的status中,损坏的表空间的段是否有recover,如果没有,删除损坏的表空间并建立新的;如果有,使用_corrupted_rollback_segments标记该段,然后删除损坏的表空间并建立新的。最后还原上面的参数。
新闻热点
疑难解答