备份恢复Lesson 16. Transporting Data

it2023-05-09  70

备份恢复Lesson 16. Transporting Data

1. 如何确定平台的 endian 格式? 16-62. 给出使用备份集进行跨平台移动数据库的步骤? 16-9

1. 如何确定平台的 endian 格式? 16-6

字符集

列出支持平台和它们的endian_format select * from v$transportable_platfrom; 源、目标平台 SQL>select tp.endian_format from v$transportable_platform tp, v$database sp where tp.platform_name= sp.platform_name;

2. 给出使用备份集进行跨平台移动数据库的步骤? 16-9

1)先决条件 兼容性12.0或以上 read only 模式对于创建跨平台备份数据库 数据库在read write 模式对于创建平台表空间备份 2)源数据库 to plateform 在源数据库上转换endian格式 for transport 在目标数据库上转换endian格式 3)to plateform 在源数据库上转换endian格式 4)把备份的数据移动到目标数据库 5)备份数据和元数据以及表空间在目标数据库中传输
最新回复(0)