Oracle 视图 ALL_PART_LOBS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图 ALL_PART_LOBS 是用来查询当前用户拥有或可控制权限的全部基于 LOB 的分区表定义信息的一个系统视图,它不会涉及自动分区信息。它的具体字段如下:
– TABLE_OWNER:表的Ownner
– TABLE_NAME:表名
– PARTITION_POSITION:分区上的位置
– COLUMN_NAME:用于分区的LOB字段
– SEGMENT_NAME: KTF$存储段名
– RETENTION:LOB的保存期限
使用 ALL_PART_LOBS 视图的一般步骤如下:
1.通过查询ALL_PART_LOBS视图来获取全部基于 LOB 的分区定义信息。
2.根据所获取的信息来构建一个表(原表),并基于列上的LOB属性分区。
3.使用分区以增加表的存取性能。
官方英文解释
ALL_PART_LOBS
displays table-level information about the partitioned LOBs accessible to the current user, including default attributes for LOB data partitions.
Related Views
DBA_PART_LOBS
displays table-level information about all partitioned LOBs in the database.USER_PART_LOBS
displays table-level information about the partitioned LOBs owned by the current user. This view does not display theTABLE_OWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Owner of the partitioned table containing the LOBs |
|
|
| Name of the partitioned table containing the LOBs |
|
| Name of the LOB column | |
|
|
| Name of the partitioned LOB |
|
|
| Name of the partitioned LOB index |
|
|
| Default value of |
|
|
| Default value of |
|
| Indicates whether and how the LOB data is cached by default in the buffer cache:
| |
|
| Indicates whether LOB data < 4000 bytes is stored by default inline (in the row) ( | |
|
| Default tablespace for a LOB data partition to be used when adding a partition | |
|
| Default value of | |
|
| Default value of | |
|
| Default value of | |
|
| Default value of | |
|
| Default value of | |
|
| Default value of Possible values for SecureFiles:
Possible values for BasicFiles:
| |
|
| Default value of | |
|
| Default value of | |
|
| Default value of | |
|
| Default value of | |
|
| Default
| |
|
| Default buffer pool for a LOB data partition to be used when adding a partition:
| |
|
| Default Database Smart Flash Cache hint to be used when adding a partition:
Solaris and Oracle Linux functionality only. | |
|
| Default cell flash cache hint to be used when adding a partition:
See Also: Oracle Exadata Storage Server Software documentation for more information | |
|
| Default value of Possible values for SecureFiles:
Possible value for BasicFiles:
| |
|
| Default value of Possible values for SecureFiles:
Possible value for BasicFiles:
| |
|
| Default value of Possible values for SecureFiles:
Possible values for BasicFiles:
| |
|
| Indicates whether the LOB is SecureFiles ( | |
|
| Default inline LOB size (in bytes) |
See Also:
“DBA_PART_LOBS”
“USER_PART_LOBS”