我有一个Oracle 10g服务器,它每晚运行一个bash脚本,它提取每个数据文件并创建一个rman脚本,这个脚本是从bash脚本本身启动并进行备份的。
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/opt/oracle/archivelogs/autobackup_control_file%F';
CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 2 DAYS;
CROS
好的,我在我的项目中使用flutter_secure_storage包,在文档中写着
Note By default Android backups data on Google Drive. It can cause exception
java.security.InvalidKeyException:Failed to unwrap key. You need to
disable autobackup, details
exclude sharedprefs FlutterSecureStorage used by the plugin, details
但是我没有做这个步骤,我的
我已经配置了控制文件自动备份:
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/u02/backup/%F';
然后将一个测试表添加到数据库中:
create tablespace test datafile '+DATA01' size 10m;
并且没有控制文件自动备份,警报日志文件中也没有关于备份它的条目。
为什么?