Oracle 视图 USER_SR_OBJ_STATUS 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图USER_SR_OBJ_STATUS是一个DataDictionary视图,它显示了每个运行Schema Registry (SR)服务的对象的状态。它包括以下列:

• OBJECT_NAME:对象名称。
• SERVICE_NAME:服务名称。
• OBJECT_TYPE:对象类型。
• VALIDATION_MESSAGE:有关此类型的通用验证消息,如果验证失败则该值不为空。
• VALID_FLAG:一个字符 ‘Y’ 或 ‘N’ ,表示对象是否有效。
• INCOMPATIBLE_FLAG:一个字符 ‘Y’ 或 ‘N’ ,表示对象是否与Schema Registry兼容。

可以使用此视图来识别运行SR服务中的非兼容对象,以及识别可能导致SR服务失效的有效性消息。

要使用这个视图,可以使用以下常见SELECT语句:

SELECT *
FROM user_sr_obj_status
WHERE valid_flag=’N’
OR incompatible_flag=’Y’;

官方英文解释

USER_SR_OBJ_STATUS provides information on the status of objects registered for synchronous refresh for the current refresh operations for the current synchronous refresh groups in the database which are owned by the current user. Its columns are the same as those in DBA_SR_OBJ_STATUS.

See Also:

“DBA_SR_OBJ_STATUS”


数据运维技术 » Oracle 视图 USER_SR_OBJ_STATUS 官方解释,作用,如何使用详细说明