摘要:
1.用sys用户远程登陆 [oracle@edbjr2p2 admin]$ sqlplus system/oracle@PROD3 as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Wed Jun 12 18:19:27 2019Copyrigh 阅读全文
摘要:
SCOTT@PROD> insert /*+ append */ into b select * from a;4 rows created.SCOTT@PROD> select file#,block#,status from v$bh where objd=(select data_object 阅读全文
摘要:
1.问题:在用rman进行0级备份时,报错: ORA-19504: failed to create file "/u01/backup/db_0_20190603_1"ORA-27038: created file already exists 2.通过报错,可以看到是文件重复:created f 阅读全文
摘要:
1.生产环境Oracle中的job无法正常运行 select * from dba_jobs_running;(查看正在运行的job) 2.select * from dba_jobs(查看job历史运行情况) last_date (job上次运行时间) interval(job运行间隔) next 阅读全文
摘要:
一。打开数据库alert日志,发现有报错 ERROR: failed to establish dependency between database RACDB and diskgroup resource ora.DATA.dg 二。上mos查看(是一个BUG,无害) This error is 阅读全文
摘要:
有时候查询会遇到如下错误 SCOTT@PROD> select deptno,sum(sal) from emp; select deptno,sum(sal) from emp * ERROR at line 1: ORA-00937: not a single-group group funct 阅读全文
摘要:
一。创建测试表 SCOTT@PROD> create table taotao(id number(10));Table created. 二。插入数值1到9 SCOTT@PROD> begin 2 for i in 1..9 loop 3 insert into taotao values(i); 阅读全文