« Google处理1TB数据只需68秒 1PB六个小时 | 文摘首页 | AIX 中 Paging Space 使用率过高的分析与解决 »
NLS_DATE_FORMAT-RMAN不完全修复中的时间格式
转载 by:eygle | 【恩墨学院 OCM培训传DBA成功之道】
链接:https://www.eygle.com/digest/2011/03/nls_date_format_rman.html
利用RMAN进行基于时间点的修复,有时候需要设置nls_date_format参数,才能正确执行,如:链接:https://www.eygle.com/digest/2011/03/nls_date_format_rman.html
C:>set NLS_DATE_FORMAT=YYYY-MM-DD HH24:MI:SS在RMAN中修改日期格式可以使用如下方式:
C:>rman nocatalog target /
RMAN>run {
allocate channel c1 type disk;
alloctae channel c2 type disk;
set until time='2011-04-21:11:09:01';
restore database;
recover database;
sql 'alter database open resetlogs';
release channel c1;
release channel c2;
}
RMAN>run { sql "alter session set nls_date_format=''yyyy-mm-dd hh24:mi:ss''";}
在SQL*Plus中可以使用如下方式:
SQL>alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';
SQL>select sysdate from dual;
SYSDATE
-------------------
2011-04-21 11:11:20
历史上的今天...
By eygle on 2011-03-20 18:07 | Comments (0) | Oracle摘 | 2786 |