首页 > 开发 > 综合 > 正文

用户管理的备份

2024-07-21 02:40:11
字体:
来源:转载
供稿:网友
//执行表空间的热备
alter tablespace tablespacename begin backup;
$ copy c:/Oracle/oradata/testdb/system01.DBF  c:/backup/
alter tablespace tablespacename end backup; //查询是否有表空间处于备份状态
select v$tablespace.name,v$backup.status,v$datafile.name
from v$tablespace
join v$datafile
using (ts#)
join v$backup
using (file#);//使用DBVERIFY分析数据块(命令行下)
dbv file='location of file/filename'  blocksize=使用的块大小

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表