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

本站中文解释

Oracle视图V$TRANSPORTABLE_PLATFORM用于查看互操作目标平台,它对数据库端的可移植性提供信息。该视图提供有关目标平台的信息,如平台名称,可用组,版本,CPU类型和操作系统,帮助数据库管理员更好地进行有效的跨平台的Oracle的数据库的数据迁移。

在使用该视图之前,用户需要先把源数据库与所要迁移的数据库进行对比,对比后据此检查V$TRANSPORTABLE_PLATFORM视图中所提供的信息,确定目标数据库类型及特性是否符合预期,以确保数据迁移过程和结果的可靠性及准确性。

要使用该视图,可用SELECT命令查询其内容,例如:SELECT * FROM v$transportable_platform; 或者可以使用相关的筛选条件,比如查询某个平台可用的版本: SELECT platform_name,platform_version FROM v$transportable_platform where platform_name = ‘Oracle 11g’;

官方英文解释

V$TRANSPORTABLE_PLATFORM displays all platforms that support cross-platform tablespace transport. Specifically, it lists all platforms supported by the RMAN CONVERT TABLESPACE command, along with the endianness of each 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


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