请问oracle的以下信息在系统表哪些地方可以找到?View视图的两个属性(注释部分是属性说明,下同):private Boolean isReadOnly;
/**
* Indicates whether the underlying tables can be updated through an update
* to this View.
*/private Boolean checkOption;
/**
* This field is meaningful only if the view is not ReadOnly. CheckOption
* indicates that the RDBMS will validate that changes made to the data
* verify the view filtering condition and belong to the view result set.
*/
ForeignKey的updateRule属性:private String updateRule;
/**
* Same as deleteRule for updates of the primary key data record
*/
SQLIndex的以下4个属性:private Boolean isAscending;
/**
* The isAscending attribute is true if the feature is sorted in ascending
* order and false, if descending order.
*/private String filterCondition;
/**
* Which subset of the table is indexed.
*/private Boolean isNullable;
/**
* Entries in this index can be null.
*/private Boolean autoUpdate;
/**
* The index is updated automatically.
*/
我在系统视图里找过对应对象的视图,如DBA_INDEXES,DBA_VIEWS,DBA_CONSTRAINTS等,但都找不到对应对象的这些属性,请问上面对象的以上属性在哪里可以找到??谢谢!