<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AnySQL.net &#187; RMAN</title>
	<atom:link href="http://www.anysql.net/tag/rman/feed" rel="self" type="application/rss+xml" />
	<link>http://www.anysql.net</link>
	<description>SQLULDR2, DataCopy, DataSync, WebChart, OraMon, AUL/MyDUL, 性能优化及容量分析</description>
	<lastBuildDate>Sun, 29 Aug 2010 00:14:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>RMAN Copy加上Rsync, 在Oracle 11g中实现了吗?</title>
		<link>http://www.anysql.net/oracle/rman_rsync_oracle11g.html</link>
		<comments>http://www.anysql.net/oracle/rman_rsync_oracle11g.html#comments</comments>
		<pubDate>Tue, 06 Feb 2007 00:32:09 +0000</pubDate>
		<dc:creator>anysql</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Copy]]></category>
		<category><![CDATA[Oracle11g]]></category>
		<category><![CDATA[RMAN]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[Standby]]></category>

		<guid isPermaLink="false">http://www.anysql.net/wordpress/uncategorized/rman-copy%e5%8a%a0%e4%b8%8arsync-%e5%9c%a8oracle-11g%e4%b8%ad%e5%ae%9e%e7%8e%b0%e4%ba%86%e5%90%97.html</guid>
		<description><![CDATA[&#160; &#160; 去年有一段时间经常要为很忙的系统重建Standby, 因为归档生成量很多, 而存放归档日志的卷空间却不是很多, 给重建Standby带来很大的难处. 将表空间置为Begin Backup状态后, 生成的归档日志量更是加倍, 因此我们不得不用RMAN的Copy功能来进行数据文件拷贝, 但是没有办法直接拷贝到远程的机器上, 而用RMAN的Copy功能来拷贝文件的话则日志量不会增大, 但必须先拷到本地, 然后拷贝过去. 为什么不用NFS, 在不同的Data Center之间, 做NFS不是很简单的事, 在我们这儿, DBA只做DBA的事情. &#160; &#160; Rsync是很好的在Linux/Unix主机间拷贝文件的好工具, 还具有压缩功能, 可以适应网络条件不是很好的情况, 而不同的数据中心之间, 就是一个很合适的场合. 如何将两者结合起来, 这样的话将是一个完美的组合. 不少的刚入门的DBA, 拷出来的文件总是Online Fuzzy的, 说明RMAN Copy和Hot Backup还是比较难的. &#160; &#160; 于是我就想到了一个osync的程序, 将这两个结合起来, 直接&#8221;osync file_id 主机:目标文件&#8221;这样就可以了. 为此在Google的论坛上发过一个贴子, 被笑了一把. 后来给Oracle发了个Tar(号码不记得了), Oracle的开发人员说可能在11g中加入RMAN将数据文件直接拷贝到远程机器的功能. &#160; &#160; 现在Oracle宣称11g Beta出来已经有不少天数了, 不知道有没有朋友得到Beta版本的, 有的话能帮我确认一下吗? 我最想知道的就是这个功能有没有被实现. 谢谢! Relative [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp; &nbsp; 去年有一段时间经常要为很忙的系统重建Standby, 因为归档生成量很多, 而存放归档日志的卷空间却不是很多, 给重建Standby带来很大的难处. 将表空间置为Begin Backup状态后, 生成的归档日志量更是加倍, 因此我们不得不用RMAN的Copy功能来进行数据文件拷贝, 但是没有办法直接拷贝到远程的机器上, 而用RMAN的Copy功能来拷贝文件的话则日志量不会增大, 但必须先拷到本地, 然后拷贝过去. 为什么不用NFS, 在不同的Data Center之间, 做NFS不是很简单的事, 在我们这儿, DBA只做DBA的事情.</p>
<p>&nbsp; &nbsp; Rsync是很好的在Linux/Unix主机间拷贝文件的好工具, 还具有压缩功能, 可以适应网络条件不是很好的情况, 而不同的数据中心之间, 就是一个很合适的场合. 如何将两者结合起来, 这样的话将是一个完美的组合. 不少的刚入门的DBA, 拷出来的文件总是Online Fuzzy的, 说明RMAN Copy和Hot Backup还是比较难的.</p>
<p>&nbsp; &nbsp; 于是我就想到了一个<strong>osync</strong>的程序, 将这两个结合起来, 直接&#8221;osync file_id 主机:目标文件&#8221;这样就可以了. 为此在Google的论坛上发过一个贴子, 被笑了一把. 后来给Oracle发了个Tar(号码不记得了), Oracle的开发人员说可能在11g中加入RMAN将数据文件直接拷贝到远程机器的功能. </p>
<p>&nbsp; &nbsp; 现在Oracle宣称11g Beta出来已经有不少天数了, 不知道有没有朋友得到Beta版本的, 有的话能帮我确认一下吗? 我最想知道的就是这个功能有没有被实现. 谢谢!</p>
<h3  class="related_post_title">Relative Posts:</h3><ul class="related_post"><li>2008/10/15 -- <a href="http://www.anysql.net/dba/huge_standby_with_rawsync.html" title="用rawsync来做Standby">用rawsync来做Standby</a> (0)</li><li>2008/10/14 -- <a href="http://www.anysql.net/dba/rawsync_ready_for_test.html" title="rawsync初步搞定">rawsync初步搞定</a> (1)</li><li>2008/09/27 -- <a href="http://www.anysql.net/dba/remote_raw_sync.html" title="Remote DD或Raw-rsync">Remote DD或Raw-rsync</a> (3)</li><li>2007/12/26 -- <a href="http://www.anysql.net/life/oracle_before_marry.html" title="结婚前的Oracle">结婚前的Oracle</a> (7)</li><li>2007/11/16 -- <a href="http://www.anysql.net/dba/oracle_11g_oltp_compress.html" title="Oracle 11G OLTP Compress支持的含义">Oracle 11G OLTP Compress支持的含义</a> (4)</li><li>2007/09/04 -- <a href="http://www.anysql.net/oracle/oracle11g_compres_log_transfer.html" title="Oracle 11g新特性 &#8212; DG压缩传送日志">Oracle 11g新特性 &#8212; DG压缩传送日志</a> (0)</li><li>2007/09/04 -- <a href="http://www.anysql.net/research/oracle_11g_mylog_test.html" title="Oracle 11g系列测试 &#8212; MyLOG">Oracle 11g系列测试 &#8212; MyLOG</a> (2)</li><li>2007/09/04 -- <a href="http://www.anysql.net/aulmydul/aul_asm_miss_rows.html" title="修正AUL恢复ASSM表空间数据时的一个问题">修正AUL恢复ASSM表空间数据时的一个问题</a> (0)</li><li>2007/08/22 -- <a href="http://www.anysql.net/oracle/lock_name_space.html" title="ORA-01102: 不能加载数据库到EXCLUSIVE模式">ORA-01102: 不能加载数据库到EXCLUSIVE模式</a> (3)</li><li>2007/07/13 -- <a href="http://www.anysql.net/aulmydul/aul5_compress_table.html" title="计划AUL 5, 需要解决压缩表的支持问题">计划AUL 5, 需要解决压缩表的支持问题</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.anysql.net/oracle/rman_rsync_oracle11g.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>使用HotCopy来移动数据文件</title>
		<link>http://www.anysql.net/tools/oracle_tool_hotcopy_02.html</link>
		<comments>http://www.anysql.net/tools/oracle_tool_hotcopy_02.html#comments</comments>
		<pubDate>Fri, 13 Oct 2006 19:35:28 +0000</pubDate>
		<dc:creator>anysql</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[HotCopy]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://www.anysql.net/wordpress/uncategorized/%e4%bd%bf%e7%94%a8hotcopy%e6%9d%a5%e7%a7%bb%e5%8a%a8%e6%95%b0%e6%8d%ae%e6%96%87%e4%bb%b6.html</guid>
		<description><![CDATA[&#160; &#160; 在HotCopy中增加了一个&#8221;-M&#8221;参数, 用来方便地进行数据文件移动操作: HotCopy for Oracle, version 2.0.0 (C) Copyright Lou Fangxin 2006, all rights reserved. Usage: &#160;&#160;hotcopy [-a] -G -T tablespace -F file_id -D destfile Notes: &#160;&#160;-A&#160;&#160; Add a date tag as the copied data file name &#160;&#160;-G&#160;&#160; Copy all database files &#160;&#160;-T&#160;&#160; The tablespace name to be copied &#160;&#160;-N&#160;&#160; File name pattern, [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp; &nbsp; 在HotCopy中增加了一个&#8221;-M&#8221;参数, 用来方便地进行数据文件移动操作: </p>
<blockquote class="prefont"><p>
HotCopy for Oracle, version 2.0.0<br />
(C) Copyright Lou Fangxin 2006, all rights reserved.</p>
<p>Usage:<br />
&nbsp;&nbsp;hotcopy [-a] -G -T tablespace -F file_id -D destfile</p>
<p>Notes:<br />
&nbsp;&nbsp;-A&nbsp;&nbsp; Add a date tag as the copied data file name<br />
&nbsp;&nbsp;-G&nbsp;&nbsp; Copy all database files<br />
&nbsp;&nbsp;-T&nbsp;&nbsp; The tablespace name to be copied<br />
&nbsp;&nbsp;-N&nbsp;&nbsp; File name pattern, &#8216;%&#8217; any string, &#8216;_&#8217; any char<br />
&nbsp;&nbsp;-F&nbsp;&nbsp; A valid file number, FILE# column in V$DATAFILE<br />
&nbsp;&nbsp;-M&nbsp;&nbsp; Move datafile in (NONE,PRINT,STANDBY, PRIMARY) mode<br />
&nbsp;&nbsp;-D&nbsp;&nbsp; Destination file or directory name
</p></blockquote>
<p>&nbsp; &nbsp; 在MOUNT方式下将数据文件4拷贝到C:\TEMP\DATA目录下, 指定了&#8221;-M STANDBY&#8221;表示只需要做RENAME操作. </p>
<blockquote class="prefont"><p>
C:\TEMP&gt;hotcopy -F 4 -D C:\TEMP\DATA -M STANDBY<br />
HotCopy for Oracle, version 2.0.0<br />
(C) Copyright Lou Fangxin 2006, all rights reserved.</p>
<p>From: C:\ORACLE\PRODUCT\ORADATA\USERS01.DBF<br />
To&nbsp;&nbsp;: C:\TEMP\DATA\USERS01.DBF<br />
RUN: ALTER DATABASE RENAME<br />
RUN:&nbsp;&nbsp;&nbsp;&nbsp;FILE &#8216;C:\ORACLE\PRODUCT\ORADATA\USERS01.DBF&#8217;<br />
RUN:&nbsp;&nbsp;&nbsp;&nbsp;TO &#8216;C:\TEMP\DATA\USERS01.DBF&#8217;;<br />
Copy Succeed.
</p></blockquote>
<p>&nbsp; &nbsp; 打开数据库, 在OPEN状态下将文件4, 拷贝回去到原来的目录, 指定了&#8221;-M PRIMARY&#8221;表示要运行在线移文件的4个SQL操作. </p>
<p><span id="more-80"></span></p>
<blockquote class="prefont"><p>
C:\TEMP&gt;hotcopy -F 4 -D C:\ORACLE\PRODUCT\ORADATA -M PRIMARY<br />
HotCopy for Oracle, version 2.0.0<br />
(C) Copyright Lou Fangxin 2006, all rights reserved.</p>
<p>From: C:\TEMP\DATA\USERS01.DBF<br />
To&nbsp;&nbsp;: C:\ORACLE\PRODUCT\ORADATA\USERS01.DBF<br />
RUN: ALTER DATABASE DATAFILE &#8216;C:\ORACLE\PRODUCT\ORADATA\USERS01.DBF&#8217; OFFLINE;<br />
RUN: ALTER DATABASE RENAME<br />
RUN:&nbsp;&nbsp;&nbsp;&nbsp;FILE &#8216;C:\TEMP\DATA\USERS01.DBF&#8217;<br />
RUN:&nbsp;&nbsp;&nbsp;&nbsp;TO &#8216;C:\ORACLE\PRODUCT\ORADATA\USERS01.DBF&#8217;;<br />
RUN: ALTER DATABASE RECOVER DATAFILE &#8216;C:\ORACLE\PRODUCT\ORADATA\USERS01.DBF&#8217;;<br />
RUN: ALTER DATABASE DATAFILE &#8216;C:\ORACLE\PRODUCT\ORADATA\USERS01.DBF&#8217; ONLINE;<br />
Copy Succeed.
</p></blockquote>
<p>&nbsp; &nbsp; 在OPEN的状态下使用&#8221;-M&#8221;选项有一定的危险性, 如果将回滚段的表空间文件OFFLINE掉, 会引起数据库的意外停止.</p>
<h3  class="related_post_title">Relative Posts:</h3><ul class="related_post"><li>2006/10/12 -- <a href="http://www.anysql.net/tools/oracle_tool_hotcopy_01.html" title="热备份文件的小工具 &#8212; HotCopy">热备份文件的小工具 &#8212; HotCopy</a> (2)</li><li>2007/02/05 -- <a href="http://www.anysql.net/oracle/rman_rsync_oracle11g.html" title="RMAN Copy加上Rsync, 在Oracle 11g中实现了吗?">RMAN Copy加上Rsync, 在Oracle 11g中实现了吗?</a> (4)</li><li>2010/06/19 -- <a href="http://www.anysql.net/tools/sqluldr2-non-free-features.html" title="2011年起SQLULDR2中的收费功能">2011年起SQLULDR2中的收费功能</a> (3)</li><li>2010/05/28 -- <a href="http://www.anysql.net/dba/unsafe-exp-internet-backup.html" title="不可靠的EXP远程备份">不可靠的EXP远程备份</a> (2)</li><li>2009/11/07 -- <a href="http://www.anysql.net/tools/sqluldr2-mysql-data-migration-test.html" title="MySQL数据迁移测试">MySQL数据迁移测试</a> (8)</li><li>2009/06/25 -- <a href="http://www.anysql.net/tools/oramon-system-event.html" title="oramon如何收集V$SYSTEM_EVENT数据?">oramon如何收集V$SYSTEM_EVENT数据?</a> (3)</li><li>2009/06/25 -- <a href="http://www.anysql.net/tools/oramon-session-history.html" title="oramon如何从V$SESSION收集性能数据?">oramon如何从V$SESSION收集性能数据?</a> (0)</li><li>2009/06/24 -- <a href="http://www.anysql.net/oracle/oramon-system-statistics.html" title="oramon如何从V$SYSSTAT收集性能数据?">oramon如何从V$SYSSTAT收集性能数据?</a> (1)</li><li>2009/05/26 -- <a href="http://www.anysql.net/dba/hard-choose-mysql-or-oracle.html" title="MySQL或Oracle, 是个问题?">MySQL或Oracle, 是个问题?</a> (7)</li><li>2009/05/21 -- <a href="http://www.anysql.net/dba/oramon-database-perf-alert.html" title="用oramon的数据进行报警">用oramon的数据进行报警</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.anysql.net/tools/oracle_tool_hotcopy_02.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>热备份文件的小工具 &#8212; HotCopy</title>
		<link>http://www.anysql.net/tools/oracle_tool_hotcopy_01.html</link>
		<comments>http://www.anysql.net/tools/oracle_tool_hotcopy_01.html#comments</comments>
		<pubDate>Fri, 13 Oct 2006 04:18:23 +0000</pubDate>
		<dc:creator>anysql</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[HotCopy]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://www.anysql.net/wordpress/uncategorized/%e7%83%ad%e5%a4%87%e4%bb%bd%e6%96%87%e4%bb%b6%e7%9a%84%e5%b0%8f%e5%b7%a5%e5%85%b7-hotcopy.html</guid>
		<description><![CDATA[&#160; &#160; RMAN的数据文件拷贝功能很不错, 不过不易于脚本化, 因此我通过调用DBMS_BACKUP_RESTORE包来实现了自已的文件热拷贝功能, 这个工具命名为&#8221;HotCopy&#8221;. &#160; &#160; 命令行参数: HotCopy for Oracle, version 2.0.0 (C) Copyright Lou Fangxin 2006, all rights reserved. Usage: &#160;&#160;hotcopy [-a] -G -T tablespace -F file_id -D destfile Notes: &#160;&#160;-A&#160;&#160; Add a date tag as the copied data file name &#160;&#160;-G&#160;&#160; Copy all database files &#160;&#160;-T&#160;&#160; The tablespace name to be [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp; &nbsp; RMAN的数据文件拷贝功能很不错, 不过不易于脚本化, 因此我通过调用DBMS_BACKUP_RESTORE包来实现了自已的文件热拷贝功能, 这个工具命名为&#8221;HotCopy&#8221;. </p>
<p>&nbsp; &nbsp; 命令行参数: </p>
<blockquote class="prefont"><p>
HotCopy for Oracle, version 2.0.0<br />
(C) Copyright Lou Fangxin 2006, all rights reserved.</p>
<p>Usage:<br />
&nbsp;&nbsp;hotcopy [-a] -G -T tablespace -F file_id -D destfile</p>
<p>Notes:<br />
&nbsp;&nbsp;-A&nbsp;&nbsp; Add a date tag as the copied data file name<br />
&nbsp;&nbsp;-G&nbsp;&nbsp; Copy all database files<br />
&nbsp;&nbsp;-T&nbsp;&nbsp; The tablespace name to be copied<br />
&nbsp;&nbsp;-N&nbsp;&nbsp; File name pattern, &#8216;%&#8217; any string, &#8216;_&#8217; any char<br />
&nbsp;&nbsp;-F&nbsp;&nbsp; A valid file number, FILE# column in V$DATAFILE<br />
&nbsp;&nbsp;-D&nbsp;&nbsp; Destination file or directory name
</p></blockquote>
<p>&nbsp; &nbsp; 拷贝一个数据文件的例子:</p>
<blockquote class="prefont"><p>
C:\TEMP&gt;hotcopy -F 1 -d data -a<br />
HotCopy for Oracle, version 2.0.0<br />
(C) Copyright Lou Fangxin 2006, all rights reserved.</p>
<p>From: C:\ORACLE\PRODUCT\ORADATA\LFXDB\SYSTEM01.DBF<br />
To&nbsp;&nbsp;: C:\TEMP\data\SYSTEM01.DBF.20061012<br />
Copy Succeed.
</p></blockquote>
<p>&nbsp; &nbsp; 拷贝一个表空间的所有数据文件的例子:</p>
<p><span id="more-79"></span></p>
<blockquote class="prefont"><p>
C:\TEMP&gt;hotcopy -T users -d data<br />
HotCopy for Oracle, version 2.0.0<br />
(C) Copyright Lou Fangxin 2006, all rights reserved.</p>
<p>From: C:\ORACLE\PRODUCT\ORADATA\LFXDB\USERS01.DBF<br />
To&nbsp;&nbsp;: C:\TEMP\data\USERS01.DBF<br />
Copy Succeed.
</p></blockquote>
<p>&nbsp; &nbsp; 根据数据文件名字来拷贝(如拷贝某个目录下的所有文件到其他目录):</p>
<blockquote class="prefont"><p>
C:\TEMP&gt;hotcopy -n %SYSTEM01.DBF -d data<br />
HotCopy for Oracle, version 2.0.0<br />
(C) Copyright Lou Fangxin 2006, all rights reserved.</p>
<p>From: C:\ORACLE\PRODUCT\ORADATA\LFXDB\SYSTEM01.DBF<br />
To&nbsp;&nbsp;: C:\TEMP\data\SYSTEM01.DBF<br />
Copy Succeed.
</p></blockquote>
<p>&nbsp; &nbsp; 拷贝整个数据库的所有文件的例子: </p>
<blockquote class="prefont"><p>
C:\TEMP&gt;hotcopy -g -d data<br />
HotCopy for Oracle, version 2.0.0<br />
(C) Copyright Lou Fangxin 2006, all rights reserved.</p>
<p>From: C:\ORACLE\PRODUCT\ORADATA\LFXDB\SYSTEM01.DBF<br />
To&nbsp;&nbsp;: C:\TEMP\data\SYSTEM01.DBF<br />
Copy Succeed.</p>
<p>From: C:\ORACLE\PRODUCT\ORADATA\LFXDB\UNDOTBS01.DBF<br />
To&nbsp;&nbsp;: C:\TEMP\data\UNDOTBS01.DBF<br />
Copy Succeed.</p>
<p>From: C:\ORACLE\PRODUCT\ORADATA\LFXDB\SYSAUX01.DBF<br />
To&nbsp;&nbsp;: C:\TEMP\data\SYSAUX01.DBF<br />
Copy Succeed.</p>
<p>From: C:\ORACLE\PRODUCT\ORADATA\LFXDB\USERS01.DBF<br />
To&nbsp;&nbsp;: C:\TEMP\data\USERS01.DBF<br />
Copy Succeed.
</p></blockquote>
<p>&nbsp; &nbsp; 目前功能还很有限, 以后慢慢增加, 正在设想要实现什么功能呢&#8230;</p>
<h3  class="related_post_title">Relative Posts:</h3><ul class="related_post"><li>2006/10/13 -- <a href="http://www.anysql.net/tools/oracle_tool_hotcopy_02.html" title="使用HotCopy来移动数据文件">使用HotCopy来移动数据文件</a> (0)</li><li>2007/02/05 -- <a href="http://www.anysql.net/oracle/rman_rsync_oracle11g.html" title="RMAN Copy加上Rsync, 在Oracle 11g中实现了吗?">RMAN Copy加上Rsync, 在Oracle 11g中实现了吗?</a> (4)</li><li>2010/06/19 -- <a href="http://www.anysql.net/tools/sqluldr2-non-free-features.html" title="2011年起SQLULDR2中的收费功能">2011年起SQLULDR2中的收费功能</a> (3)</li><li>2010/05/28 -- <a href="http://www.anysql.net/dba/unsafe-exp-internet-backup.html" title="不可靠的EXP远程备份">不可靠的EXP远程备份</a> (2)</li><li>2009/11/07 -- <a href="http://www.anysql.net/tools/sqluldr2-mysql-data-migration-test.html" title="MySQL数据迁移测试">MySQL数据迁移测试</a> (8)</li><li>2009/06/25 -- <a href="http://www.anysql.net/tools/oramon-system-event.html" title="oramon如何收集V$SYSTEM_EVENT数据?">oramon如何收集V$SYSTEM_EVENT数据?</a> (3)</li><li>2009/06/25 -- <a href="http://www.anysql.net/tools/oramon-session-history.html" title="oramon如何从V$SESSION收集性能数据?">oramon如何从V$SESSION收集性能数据?</a> (0)</li><li>2009/06/24 -- <a href="http://www.anysql.net/oracle/oramon-system-statistics.html" title="oramon如何从V$SYSSTAT收集性能数据?">oramon如何从V$SYSSTAT收集性能数据?</a> (1)</li><li>2009/05/26 -- <a href="http://www.anysql.net/dba/hard-choose-mysql-or-oracle.html" title="MySQL或Oracle, 是个问题?">MySQL或Oracle, 是个问题?</a> (7)</li><li>2009/05/21 -- <a href="http://www.anysql.net/dba/oramon-database-perf-alert.html" title="用oramon的数据进行报警">用oramon的数据进行报警</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.anysql.net/tools/oracle_tool_hotcopy_01.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>RMAN的一个Bug, 不容易拷贝数据文件.</title>
		<link>http://www.anysql.net/oracle/rman_ora_00235.html</link>
		<comments>http://www.anysql.net/oracle/rman_ora_00235.html#comments</comments>
		<pubDate>Thu, 07 Sep 2006 20:48:27 +0000</pubDate>
		<dc:creator>anysql</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Bug]]></category>
		<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://www.anysql.net/wordpress/uncategorized/rman%e7%9a%84%e4%b8%80%e4%b8%aabug-%e4%b8%8d%e5%ae%b9%e6%98%93%e6%8b%b7%e8%b4%9d%e6%95%b0%e6%8d%ae%e6%96%87%e4%bb%b6.html</guid>
		<description><![CDATA[&#160; &#160; 最近在用RMAN拷贝数据文件时, 经常遇到这样的错误: RMAN&#62; copy&#160; datafile &#8216;a.dbf&#8217; to &#8216;b.dbf&#8217;; Starting copy at 06-SEP-06 allocated channel: ORA_DISK_1 channel ORA_DISK_1: sid=644 devtype=DISK RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03002: failure of copy command at 09/06/2006 19:31:09 ORA-00235: controlfile fixed table inconsistent due to concurrent update RMAN-06010: error while looking up datafile: [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp; &nbsp; 最近在用RMAN拷贝数据文件时, 经常遇到这样的错误: </p>
<blockquote class="prefont"><p>
RMAN&gt; copy&nbsp; datafile &#8216;a.dbf&#8217; to &#8216;b.dbf&#8217;;<br />
Starting copy at 06-SEP-06<br />
allocated channel: ORA_DISK_1<br />
channel ORA_DISK_1: sid=644 devtype=DISK<br />
RMAN-00571: ===========================================================<br />
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============<br />
RMAN-00571: ===========================================================<br />
RMAN-03002: failure of copy command at 09/06/2006 19:31:09<br />
ORA-00235: controlfile fixed table inconsistent due to concurrent update<br />
RMAN-06010: error while looking up datafile: a.dbf
</p></blockquote>
<p>&nbsp; &nbsp; 而且最后不成功不说, 拷贝一个文件至少得10分钟, 极大地影响了进度.<br />
最后查原因居然又是遇到Bug(2391697)了. 当你在NOCATALOG方式下用RMAN去拷贝数据文件时,<br />
在9207以下的版本会遇到此Bug. Chao_ping说他去年去Metalink找&#8221;ORA-235&#8243;时,<br />
Oracle不承认这是个Bug, 而现在却在9.2.0.7/10.1.0.3的Bug修复列表中. </p>
<p>&nbsp; &nbsp; 我用的是9205版本, 后来建了一个RMAN CATALOG就没事了.<br />
怪不得很多时侯会首先怀疑一些问题是Oracle的Bug. </p>
<h3  class="related_post_title">Relative Posts:</h3><ul class="related_post"><li>2007/02/05 -- <a href="http://www.anysql.net/oracle/rman_rsync_oracle11g.html" title="RMAN Copy加上Rsync, 在Oracle 11g中实现了吗?">RMAN Copy加上Rsync, 在Oracle 11g中实现了吗?</a> (4)</li><li>2007/01/02 -- <a href="http://www.anysql.net/oracle/ora_orphan_rowid.html" title="ORA-00600 [qertbFetchBYRowid] &#038; Orphan ROWID">ORA-00600 [qertbFetchBYRowid] &#038; Orphan ROWID</a> (0)</li><li>2006/11/08 -- <a href="http://www.anysql.net/dba/oracle_bugfix_10203.html" title="Oracle 10.2.0.3修复的一些Bug, 需要看看&#8230;">Oracle 10.2.0.3修复的一些Bug, 需要看看&#8230;</a> (2)</li><li>2006/10/13 -- <a href="http://www.anysql.net/tools/oracle_tool_hotcopy_02.html" title="使用HotCopy来移动数据文件">使用HotCopy来移动数据文件</a> (0)</li><li>2006/10/12 -- <a href="http://www.anysql.net/tools/oracle_tool_hotcopy_01.html" title="热备份文件的小工具 &#8212; HotCopy">热备份文件的小工具 &#8212; HotCopy</a> (2)</li><li>2006/08/23 -- <a href="http://www.anysql.net/oracle/oracle9i_lob_temp.html" title="Oracle 9i临时LOB对象过多使用临时表空间的一个错误设计">Oracle 9i临时LOB对象过多使用临时表空间的一个错误设计</a> (0)</li><li>2006/08/23 -- <a href="http://www.anysql.net/oracle/oracle_bug_exp00003.html" title="Oracle Bug EXP-00003 : 找不到段的存贮定义&#8230;">Oracle Bug EXP-00003 : 找不到段的存贮定义&#8230;</a> (0)</li><li>2006/08/22 -- <a href="http://www.anysql.net/dba/oracle_bugfix_patch.html" title="Oracle 9i/10g的Bug和修复列表及升级指南">Oracle 9i/10g的Bug和修复列表及升级指南</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.anysql.net/oracle/rman_ora_00235.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
