Hello,
In the Oracle 9 docs for Stand By Database it mentions the database must be shutdown to copy the data files (system.dbf,users01.dbf etc.). I am in a 24\7 environment where this is not possible.
Can I simply do the following for each data file?
I have never used this "hot" backup technique. Will this disrupt the user\application access to tables in the tablespace being "hot" backed up? Seems silly to ask but I need to make sure.
Thanks,
Michael42
In the Oracle 9 docs for Stand By Database it mentions the database must be shutdown to copy the data files (system.dbf,users01.dbf etc.). I am in a 24\7 environment where this is not possible.
Can I simply do the following for each data file?
Code:
1. ALTER TABLESPACE <tablepsace_name> BEGIN BACKUP;
2. cp <tablespace>.dbf /oracle/standby_db_files
3. ALTER TABLESPACE <tablepsace_name> END BACKUP;
Thanks,
Michael42