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

本站中文解释

V$DB_TRANSPORTABLE_PLATFORM视图显示了数据库中当前支持的可移植平台定义,也就是指可以在支持的多个系统之间迁移数据的兼容性定义。

V$DB_TRANSPORTABLE_PLATFORM视图可以帮助用户了解当前数据库支持的可移植平台,以及它们的版本号等信息。

使用V$DB_TRANSPORTABLE_PLATFORM视图可以方便地查询数据库支持的可移植平台信息,从而为迁移数据找到最适合的平台。可以通过以下方法使用V$DB_TRANSPORTABLE_PLATFORM视图:

SELECT *
FROM V$DB_TRANSPORTABLE_PLATFORM;

此外,还可以使用此视图提供的信息查看和比较数据库支持的多种可移植平台之间的区别。

官方英文解释

V$DB_TRANSPORTABLE_PLATFORM displays all platforms to which the database can be transported using the RMAN CONVERT DATABASE command.

The transportable database feature only supports transports of the same endian platform. Therefore, V$DB_TRANSPORTABLE_PLATFORM displays fewer rows than V$TRANSPORTABLE_PLATFORM.

Column Datatype Description

PLATFORM_ID

NUMBER

Platform identification number

PLATFORM_NAME

VARCHAR2(101)

Platform name

ENDIAN_FORMAT

VARCHAR2(14)

Platform endian format:

  • Big

  • Little

  • UNKNOWN FORMAT

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data

See Also:

“V$TRANSPORTABLE_PLATFORM”


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