摘要:
开启STANDBY库为READ WRITE 1.取消主库传送归档 SQL> alter system set log_archive_dest_state_2=defer; 2.取消备库应用日志 SQL> alter database recover managed standby database 阅读全文
摘要:
select * from dba_sys_privs where GRANTEE='monkey'; select * from dba_role_privs where GRANTEE='monkey'; select * from DBA_TAB_PRIVS where GRANTEE='mo 阅读全文
摘要:
1.创建测试数据 2.查看cursor_sharing的值 SQL> show parameter cursor_sharing; NAME TYPE VALUE cursor_sharing string EXACT 3.打开SQL追踪 SQL> alter session set sql_tra 阅读全文
摘要:
一个不重要的数据库,备份是用expdp导出,然后上传到ftp服务器上面。上周这个主机宕机了,要在别的数据库恢复,发现报如下错误: ORA-39001: invalid argument value ORA-39000: bad dump file specification ORA-31619: i 阅读全文
摘要:
1.在要作为恢复编录的数据库创建用户 create user rman identified by oracle default tablespace system temporary TABLESPACE temp quota unlimited on system; user名字密码表空间可以自 阅读全文