IIS 在安装 Oracle Client 后,需要命令行执行: iisreset
1、ORA-00257
参考自:https://jingyan.baidu.com/article/f71d6037ccf1301ab641d1f0.html
查询 select * from V$FLASH_RECOVERY_AREA_USAGE -- WHERE percent_space_used > 98
如果有查询结果,表示需清理归档日志:
进 Oracle 所在服务器,执行 CMD
rman target /
crosscheck archivelog all;
delete archivelog until time 'sysdate-7'; -- 删除七天前的备份
遇到 00604 错误,可以使用以下 SQL 语句查询:
select b.MACHINE, b.PROGRAM , count(*) from v$process a, v$session b where a.ADDR = b.PADDR and b.USERNAME is not null group by b.MACHINE , b.PROGRAM order by count(*) desc;