ORA-38500:USING CURRENT LOGFILE option not available without stand
select * from v$standby_log;
no rows selecte;
主库查询
set linesize 1000
col member for a50
select a.group#,a.thread#,a.bytes/1024/1024/1024 GB,a.status,b.member from v$log a,v$logfile b where a.group#=b.group# ;
备库增加日志
alter database recover managed standby database cancel;
alter database add standby logfile thread 1 size 2G;