Oracle 视图 ALL_LOB_TEMPLATES 官方解释,作用,如何使用详细说明
本站中文解释
表
ALL_LOB_TEMPLATES表是一张用于定义LOB类型视图的Oracle数据字典表,其中的每一行代表了一个LOB类型的属性。表中的信息包括LOB类型的名称、存储表、存储列以及LOB字段的长度等等。
使用ALL_LOB_TEMPLATES表可以创建LOB类型的视图,从而显示存储在LOB字段中的信息。下面的语句可以用来创建LOB视图:
CREATE OR REPLACE VIEW AS
SELECT
FROM ALL_LOB_TEMPLATES
WHERE = ;
这种视图可以用来访问特定类型的LOB字段,或者可以在定义数据库中不同类型的LOB字段时使用这些视图进行参考。
官方英文解释
ALL_LOB_TEMPLATES
describes the LOB subpartition templates accessible to the current user.
Related Views
-
DBA_LOB_TEMPLATES
describes all LOB subpartition templates in the database. -
USER_LOB_TEMPLATES
describes the LOB subpartition templates owned by the current user. This view does not display theUSER_NAME
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the table |
|
|
|
Name of the table |
|
|
Name of the LOB column |
|
|
|
|
Name of the subpartition |
|
|
|
Name of the LOB segment |
|
|
Tablespace name of the subpartition |
See Also:
-
“DBA_LOB_TEMPLATES”
-
“USER_LOB_TEMPLATES”