Oracle 视图 V$SESSION_FIX_CONTROL 官方解释,作用,如何使用详细说明
本站中文解释
V$SESSION_FIX_CONTROL视图用来显示当前会话的特定修复选项的状态。
Oracle的表段修复选项用于防止删除或者更新失败,大多数是可以在会话级别上定义的。
这个视图可用于查看不同的表段修复选项的启用/禁用状态,对当前会话中的表段修复操作有一定的了解和使用帮助。
使用它,可以查看会话级别上已经启用了哪些修复选项,它们是什么时候启用的,还有配置了哪些参数。
使用方法:
1.查看已经启用的修复选项:
SELECT * FROM V$SESSION_FIX_CONTROL;
2.查看某会话中已经启用的修复选项:
SELECT * FROM V$SESSION_FIX_CONTROL WHERE SID = sid;
3.查看某数据库中启用的修复选项:
SELECT * FROM V$SESSION_FIX_CONTROL WHERE INSTANCE_NUMBER = instno;
4.查看某库的特定修复选项的状态:
SELECT * FROM V$SESSION_FIX_CONTROL WHERE FIX_CONTROL_NAME = ‘fix_name’ AND INSTANCE_NUMBER = instno;
官方英文解释
V$SESSION_FIX_CONTROL
displays information about Fix Control (enabled/disabled) for the current session.
Column | Datatype | Description |
---|---|---|
|
|
Session identifier (can be used to join this view with |
|
|
Bug number (as fix control identifier) |
|
|
Current value set for the fix control |
|
|
Feature control ID |
|
|
Description of the fix control |
|
|
Version on (and after) which the fix is enabled by default |
|
|
Event formerly used to control the fix |
|
|
Indicates whether the current value is the same as the default ( |
|
|
The ID of the container to which the data pertains. Possible values include:
|