Oracle 视图 ALL_SUMDELTA 官方解释,作用,如何使用详细说明
本站中文解释
ALL_SUMDELTA视图显示一个数据库中各类对象(表或视图)的总记录数及表达式(增量)的变化。它能让用户查看每个表/视图及其包含表达式的变化。
用途:
ALL_SUMDELTA视图有助于检测数据库中的变化,从而警告用户可能及时拉回或修复破坏的数据库结构。例如,如果在表/视图的总记录数发生变化时,ALL_SUMDELTA可以显示新的表达式。
使用方式:
使用ALL_SUMDELTA视图需要在select语句中提供表/视图名称,如下所示:
SELECT obj_name, sumdelta_change FROM all_sumdelta WHERE obj_name=’SAMPLETABLE’;
该select语句可以查看SAMPLETABLE表/视图的总记录数及表达式变化。
官方英文解释
ALL_SUMDELTA
lists direct path load entries accessible to the current user.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Object number of the table |
|
|
|
Object number of table partitions (if the table is partitioned) |
|
|
Type of DML operation applied to the table |
|
|
|
|
SCN when the bulk DML occurred |
|
|
|
Timestamp of the log entry |
|
|
|
Start ROWID in the loaded rowid range |
|
|
|
End ROWID in the loaded rowid range |
|
|
Sequence number of the direct load |
|
|
|
Transaction ID |