052-126&127

Identify the two situations in which the alert log file is updated with details. (Choose two.)
A. Running a query on a table returns "ORA-600: Internal Error"
B. Inserting a value in a table returns "ORA-01722: Invalid Number"
C. Creating a table returns "ORA-00955: name is already used by an existing object'
D. Inserting a value in a table returns "ORA-00001: unique constraint (SYS.PK_TECHP) violated."
E. Rebuilding an index using ALTER INDEX ... REBUILD fails with an error "ORA-01578: ORACLE data block corrupted (file # 14, block @ 50)."
F.Inserting a row in a table returns "ORA-00060: deadlock detected while waiting for resource."


  每个数据库都有一个 alert_<sid >.log 文件。此文件位于数据库所在的服务器中,如果设置了$ORACLE_BASE,则此文件默认存储$ORACLE_BASE/diag/rdbms/<db_name>/<SID>/trace 中。
数据库预警文件是按时间顺序列出消息的日志文件,例如:
• 启动时使用的任何非默认初始化参数
• 已发生的所有内部错误( ORA-600) 、块损坏错误( ORA-1578 ) 和死锁错误( ORA-60 )
• 管理操作,如 SQL 语句 CREATE 、 ALTER、 DROP DATABASE 和 TABLESPACE,以及 Enterprise Manager或 SQL*Plus 语句 STARTUP、 SHUTDOWN 、 ARCHIVE LOG 和 RECOVER
• 与共享服务器和分派程序进程的功能相关的多个消息和错误
• 自动刷新实体化视图时发生的错误


原文地址:https://www.cnblogs.com/Babylon/p/8028990.html