DBA_CONSTRAINTS
- DBA_CONSTRAINTS视图提供所有用户的表上的约束信息。
列名 | 类型 | 描述 |
owner | text | 约束的所有者 |
schema_name | text | 约束所在模式的名称 |
constraint_name | text | 约束名称 |
constraint_type | text | 约束类型 |
table_name | text | 约束所属表名称 |
search_condition | text | 检查约束的条件文本 |
r_owner | text | 引用约束表的所有者 |
r_constraint_name | text | 引用表的唯一约束名称 |
delete_rule | text | 删除规则 |
deferrable | boolean | 是否可以延迟检查 |
deferred | boolean | 约束是否延迟检查 |
index_owner | text | 索引的所有者 |
index_name | text | 索引的名称 |
constraint_def | text | 约束延迟定义 |