RMAN Copy + Rsync, is it implemented in Oracle 11g?
In the last two years, I spent a lot of time to rebuild standby (for backup or data moving) for very busy databases, the archive log generated very fast, and the archive data volume have limited free space, which caused some trouble when rebuilding standby. When we put the database into begin backup mode, then archive generation speed was almost doubled, then we had to use RMAN's data file copy feature to perform data file backup without putting the whole tablespace or database into begin backup mode. But we had to copy the datafile to a local directory first with RMAN, we cannot directly copy the data to remote directory in another host. Why not NFS, in a complex environment (multiple data centers), the NFS configure was a relative complex job. In out company, DBA just do DBA's work.
Rsync is a perfect file copy utility between different hosts under Linux or UNIX, it could compress the contents when copying files to fit for the lower bandwidth between different data centers. If it could be combined with RMAN's data copy feature, it will save us a lot of time on standby rebuilding. Some junior DBAs always copy the data file directly with OS utility without using RMAN's data file copy and without putting the tablespace or database into begin backup mode.
Then I considered to build a program called osync, but it was too difficult for me and finally dumped this idea. If so we could directly backup data file to remote host by issuing "osync file_id host:path". And I posted this idea on Google oracle BBS, somebody said that it's a useless idea. Then I filed a tar (Cannot remind the tar number back), Oracle's developer said they were considering to implement this feature in RMAN 11g version, which will allow you copy data file to remote host in the RMAN's data file copy command.
Oracle have announced the 11g beta test program for quite a few days, is there anyone get the beta version? I'd like to verify whethere this feature has been implemented in Oracle 11g. Thanks!
