Oracle 视图 V$EQ_INACTIVE_PARTITIONS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$EQ_INACTIVE_PARTITIONS用于查看不可用于数据存取的表空间分区及段。它返回有关被定义但不可使用作为表空间分区或与其相关联段的信息。
使用方法:
1. 首先,使用下面的查询语句检索V$EQ_INACTIVE_PARTITIONS中的信息:
SELECT * FROM V$EQ_INACTIVE_PARTITIONS;
2. 查看V$EQ_INACTIVE_PARTITIONS视图中的记录,以获取被停用的表空间分区及段的具体信息。
3. 如果要修复停用的表空间分区,可以使用ALTER TABLE … DROP PARTITION语句将其彻底删除,然后使用ALTER TABLE … ADD PARTITION语句重新创建该分区。
官方英文解释
V$EQ_INACTIVE_PARTITIONS
describes all inactive Transactional Event Queue (TEQ) event stream partitions.
Column | Datatype | Description |
---|---|---|
|
|
Queue ID |
|
|
Event stream ID |
|
|
Priority of the event stream partition |
|
|
Event stream partition ID |
|
|
Current message cache optimizer state of the event stream partition. Possible values:
|
|
|
The predicted absolute time when the event stream partition could be accessed in future |
|
|
The ID of the container to which the data pertains. Possible values include:
|
Note:
This view is available starting with Oracle Database 21c.
See Also:
Oracle Database Advanced
Queuing User’s Guide for more information about Oracle Transactional Event Queues and Advanced Queuing