Bo's Oracle Station

查看: 1529|回复: 0

课程第34次

[复制链接]

1005

主题

1469

帖子

1万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
12012
发表于 2019-12-22 20:18:55 | 显示全部楼层 |阅读模式
  1. select  * from v$transportable_platform
  2. order by 2;
复制代码

   PLATFORM_IDPLATFORM_NAMEENDIAN_FORMAT
16AIX-Based Systems (64-bit)Big
216Apple Mac OSBig
321Apple Mac OS (x86-64)Little
419HP IA Open VMSLittle
515HP Open VMSLittle
65HP Tru64 UNIXLittle
73HP-UX (64-bit)Big
84HP-UX IA (64-bit)Big
918IBM Power Based LinuxBig
109IBM zSeries Based LinuxBig
1110Linux IA (32-bit)Little
1211Linux IA (64-bit)Little
1313Linux x86 64-bitLittle
147Microsoft Windows IA (32-bit)Little
158Microsoft Windows IA (64-bit)Little
1612Microsoft Windows x86 64-bitLittle
1717Solaris Operating System (x86)Little
1820Solaris Operating System (x86-64)Little
191Solaris[tm] OE (32-bit)Big
202Solaris[tm] OE (64-bit)Big


传送表空间要大的跨平台:转换数据文件头+数据文件体。
如果要convert(不同的endian序列才要covert),源头convert语法是:convert tablespace to platform
                                                                    目的地convert语法是:convert datafile from platform

----------------------------------------------------WINORCL 原来是4K ,重新穿件控制文件和日志文件-----------------------------

  1. SQL> startup mount
  2. ORACLE 例程已经启动。

  3. Total System Global Area  617975808 bytes
  4. Fixed Size                  2283744 bytes
  5. Variable Size             234882848 bytes
  6. Database Buffers          373293056 bytes
  7. Redo Buffers                7516160 bytes
  8. 数据库装载完毕。
  9. SQL> alter database open ;
  10. alter database open
  11. *
  12. 第 1 行出现错误:
  13. ORA-03113: 通信通道的文件结尾
  14. 进程 ID: 254808
  15. 会话 ID: 191 序列号: 3
复制代码
------------------------------------------------
drop 或者clear unarchived 都过不去:
  1. SQL> conn / as sysdba
  2. 已连接。
  3. SQL> alter database drop logfile group 2;
  4. alter database drop logfile group 2
  5. *
  6. 第 1 行出现错误:
  7. ORA-01623: 日志 2 是实例 winorcl (线程 1) 的当前日志 - 无法删除
  8. ORA-00312: 联机日志 2 线程 1: 'C:\APP\APPLE\ORADATA\WINORCL\REDO02.LOG'
复制代码



  1. SQL> alter database clear unarchived logfile group 2  blocksize 4096;
  2. alter database clear unarchived logfile group 2  blocksize 4096
  3.                                                  *
  4. 第 1 行出现错误:
  5. ORA-00933: SQL 命令未正确结束
复制代码

脚本重建控制文件,编辑去掉"4096",要选择set 2:
  1. CREATE CONTROLFILE REUSE DATABASE "WINORCL" RESETLOGS  ARCHIVELOG
  2.     MAXLOGFILES 16
  3.     MAXLOGMEMBERS 3
  4.     MAXDATAFILES 100
  5.     MAXINSTANCES 8
  6.     MAXLOGHISTORY 292
  7. LOGFILE
  8.   GROUP 2 'C:\APP\APPLE\ORADATA\WINORCL\REDO02.LOG'  SIZE 50M BLOCKSIZE 512,
  9.   GROUP 4 'C:\APP\APPLE\ORADATA\WINORCL\REDO04.LOG'  SIZE 100M BLOCKSIZE 512,
  10.   GROUP 5 'C:\APP\APPLE\ORADATA\WINORCL\REDO05.LOG'  SIZE 100M BLOCKSIZE 512,
  11.   GROUP 6 'C:\APP\APPLE\ORADATA\WINORCL\REDO06.LOG'  SIZE 100M BLOCKSIZE 512
  12. -- STANDBY LOGFILE
  13. DATAFILE
  14.   'C:\APP\APPLE\ORADATA\WINORCL\SYSTEM01.DBF',
  15.   'C:\APP\APPLE\ORADATA\WINORCL\SYSAUX01.DBF',
  16.   'C:\APP\APPLE\ORADATA\WINORCL\UNDOTBS01.DBF',
  17.   'C:\APP\APPLE\ORADATA\WINORCL\USERS01.DBF',
  18.   'C:\APP\APPLE\ORADATA\WINORCL\RCAT01.DBF',
  19.   'C:\APP\APPLE\ORADATA\WINORCL\TBS05319.DBF',
  20.   'C:\APP\APPLE\ORADATA\WINORCL\TBS05319X.DBF',
  21.   'C:\APP\APPLE\ORADATA\WINORCL\TBSSOLARIS.DBF'
  22. CHARACTER SET AL32UTF8
  23. ;

  24. ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\APP\APPLE\ORADAT\WINORCL\TEMP01.DBF' REUSE;

复制代码

---------------------------------------------------------------------------------------------------------------------
源头转换:
  1. create tablespace tbstrans1 datafile size 10M  ;

  2. create tablespace tbstrans2 datafile size 10M;

  3. alter tablespace tbstrans1 read only;

  4. alter tablespace tbstrans2 read only ;

  5. begin
  6.    dbms_tts.transport_set_check('TBSTRANS1,TBSTRANS2');
  7. end;

  8. select  * from transport_set_violations;
复制代码



  1. RMAN> CONFIGURE DEVICE TYPE DISK PARALLELISM 8 BACKUP TYPE TO  BACKUPSET;

  2. old RMAN configuration parameters:
  3. CONFIGURE DEVICE TYPE DISK PARALLELISM 8 BACKUP TYPE TO COMPRESSED BACKUPSET;
  4. new RMAN configuration parameters:
  5. CONFIGURE DEVICE TYPE DISK PARALLELISM 8 BACKUP TYPE TO BACKUPSET;
  6. new RMAN configuration parameters are successfully stored
  7. released channel: ORA_DISK_1
  8. released channel: ORA_DISK_2
  9. released channel: ORA_DISK_3
  10. released channel: ORA_DISK_4
  11. released channel: ORA_DISK_5
  12. released channel: ORA_DISK_6
  13. released channel: ORA_DISK_7
  14. released channel: ORA_DISK_8

  15. RMAN>  convert tablespace tbstrans1  to platform 'Microsoft Windows IA (64-bit)' format '/home/oracle/tbstrans1.dbf';

  16. Starting conversion at source at 2019-12-22:21:29:11
  17. allocated channel: ORA_DISK_1
  18. channel ORA_DISK_1: SID=79 device type=DISK
  19. allocated channel: ORA_DISK_2
  20. channel ORA_DISK_2: SID=77 device type=DISK
  21. allocated channel: ORA_DISK_3
  22. channel ORA_DISK_3: SID=130 device type=DISK
  23. allocated channel: ORA_DISK_4
  24. channel ORA_DISK_4: SID=20 device type=DISK
  25. allocated channel: ORA_DISK_5
  26. channel ORA_DISK_5: SID=69 device type=DISK
  27. allocated channel: ORA_DISK_6
  28. channel ORA_DISK_6: SID=145 device type=DISK
  29. allocated channel: ORA_DISK_7
  30. channel ORA_DISK_7: SID=143 device type=DISK
  31. allocated channel: ORA_DISK_8
  32. channel ORA_DISK_8: SID=203 device type=DISK
  33. ignoring encryption for proxy or image copies
  34. channel ORA_DISK_1: starting datafile conversion
  35. input datafile file number=00005 name=+DATA/orcl/datafile/tbstrans1.261.1027718433
  36. converted datafile=/home/oracle/tbstrans1.dbf
  37. channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:01
  38. Finished conversion at source at 2019-12-22:21:29:13

  39. RMAN>
复制代码
  1. C:\Users\Apple>impdp system/oracle_4U  directory=dirwin dumpfile=tbstrans1.dmp  TRANSPORT_DATAFILES='C:\app\Apple\oradata\winorcl\tbstrans1.dbf'

  2. Import: Release 11.2.0.4.0 - Production on 星期日 12月 22 22:00:47 2019

  3. Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

  4. 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  5. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  6. 已成功加载/卸载了主表 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01"
  7. 源时区为 +00:00, 目标时区为 +08:00。
  8. 启动 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01":  system/******** directory=dirwin dumpfile=tbstrans1.dmp TRANSPORT_DATAFILES='C:\app\Apple\oradata\winorcl\tbstrans1.dbf'
  9. 处理对象类型 TRANSPORTABLE_EXPORT/PLUGTS_BLK
  10. 处理对象类型 TRANSPORTABLE_EXPORT/TABLE
  11. 处理对象类型 TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
  12. 作业 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" 已于 星期日 12月 22 22:00:59 2019 elapsed 0 00:00:06 成功完成


  13. C:\Users\Apple>
复制代码

-------------
目的地转换:

在源头上故意转不对的平台:
  1. RMAN>  convert tablespace tbstrans2 to platform 'IBM zSeries Based Linux' format '/home/oracle/tbstrans2.dbf' ;

  2. Starting conversion at source at 2019-12-22:22:07:10
  3. using target database control file instead of recovery catalog
  4. allocated channel: ORA_DISK_1
  5. channel ORA_DISK_1: SID=82 device type=DISK
  6. allocated channel: ORA_DISK_2
  7. channel ORA_DISK_2: SID=143 device type=DISK
  8. allocated channel: ORA_DISK_3
  9. channel ORA_DISK_3: SID=130 device type=DISK
  10. allocated channel: ORA_DISK_4
  11. channel ORA_DISK_4: SID=204 device type=DISK
  12. allocated channel: ORA_DISK_5
  13. channel ORA_DISK_5: SID=138 device type=DISK
  14. allocated channel: ORA_DISK_6
  15. channel ORA_DISK_6: SID=197 device type=DISK
  16. allocated channel: ORA_DISK_7
  17. channel ORA_DISK_7: SID=21 device type=DISK
  18. allocated channel: ORA_DISK_8
  19. channel ORA_DISK_8: SID=83 device type=DISK
  20. ignoring encryption for proxy or image copies
  21. channel ORA_DISK_1: starting datafile conversion
  22. input datafile file number=00006 name=+DATA/orcl/datafile/tbstrans2.262.1027718497
  23. converted datafile=/home/oracle/tbstrans2.dbf
  24. channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:01
  25. Finished conversion at source at 2019-12-22:22:07:28

  26. RMAN>
复制代码

expdp部分倒是一样的:
  1. [oracle@station76 ~]$ expdp system/oracle_4U directory=dir1 dumpfile=tbstrans2.dmp  TRANSPORT_TABLESPACES=tbstrans2

  2. Export: Release 11.2.0.4.0 - Production on Sun Dec 22 22:05:38 2019

  3. Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

  4. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  5. With the Partitioning, Automatic Storage Management, OLAP, Data Mining
  6. and Real Application Testing options
  7. Starting "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01":  system/******** directory=dir1 dumpfile=tbstrans2.dmp TRANSPORT_TABLESPACES=tbstrans2
  8. Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
  9. Processing object type TRANSPORTABLE_EXPORT/TABLE
  10. Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
  11. Master table "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01" successfully loaded/unloaded
  12. ******************************************************************************
  13. Dump file set for SYSTEM.SYS_EXPORT_TRANSPORTABLE_01 is:
  14.   /home/oracle/dir1/tbstrans2.dmp
  15. ******************************************************************************
  16. Datafiles required for transportable tablespace TBSTRANS2:
  17.   +DATA/orcl/datafile/tbstrans2.262.1027718497
  18. Job "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_01" successfully completed at Sun Dec 22 22:07:40 2019 elapsed 0 00:02:00
复制代码
如果传送的数据文件endian序列不是目的地的,就会报“文件头”出错:
  1. C:\Users\Apple>impdp system/oracle_4U  directory=dirwin dumpfile=tbstrans2.dmp  TRANSPORT_DATAFILES='C:\app\Apple\oradata\winorcl\tbstrans2.dbf'

  2. Import: Release 11.2.0.4.0 - Production on 星期日 12月 22 22:10:51 2019

  3. Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

  4. 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  5. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  6. 已成功加载/卸载了主表 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01"
  7. 源时区为 +00:00, 目标时区为 +08:00。
  8. 启动 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01":  system/******** directory=dirwin dumpfile=tbstrans2.dmp TRANSPORT_DATAFILES='C:\app\Apple\oradata\winorcl\tbstrans2.dbf'
  9. 处理对象类型 TRANSPORTABLE_EXPORT/PLUGTS_BLK
  10. ORA-39123: 数据泵可传输的表空间作业中止
  11. ORA-01565: 标识文件 'C:\app\Apple\oradata\winorcl\tbstrans2.dbf' 时出错
  12. ORA-27048: skgfifi: 文件标头信息无效
  13. OSD-04001: ?????С?Ч (OS 2097152)

  14. 作业 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" 因致命错误于 星期日 12月 22 22:10:57 2019 elapsed 0 00:00:04 停止
复制代码

解决办法就是在目的地上再转换:

  1. C:\Users\Apple>rman target  /

  2. 恢复管理器: Release 11.2.0.4.0 - Production on 星期日 12月 22 22:14:05 2019

  3. Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

  4. 已连接到目标数据库: WINORCL (DBID=2162311502)

  5. RMAN> convert datafile 'C:\app\Apple\oradata\winorcl\tbstrans2.dbf' from platform 'IBM zSeries Based Linux'  format 'C:\app\Apple\oradata\winorcl\tbstrans2b.dbf' ;

  6. 启动 conversion at target 于 22-12月-19
  7. 使用目标数据库控制文件替代恢复目录
  8. 分配的通道: ORA_DISK_1
  9. 通道 ORA_DISK_1: SID=10 设备类型=DISK
  10. 通道 ORA_DISK_1: 启动数据文件转换
  11. 输入文件名=C:\APP\APPLE\ORADATA\WINORCL\TBSTRANS2.DBF
  12. 已转换的数据文件 = C:\APP\APPLE\ORADATA\WINORCL\TBSTRANS2B.DBF
  13. 通道 ORA_DISK_1: 数据文件转换完毕, 经过时间: 00:00:01
  14. 完成 conversion at target 于 22-12月-19
复制代码
再次导入(与tbstrans1一样):

  1. C:\Users\Apple>impdp system/oracle_4U  directory=dirwin dumpfile=tbstrans2.dmp  TRANSPORT_DATAFILES='C:\app\Apple\oradata\winorcl\tbstrans2b.dbf'

  2. Import: Release 11.2.0.4.0 - Production on 星期日 12月 22 22:19:52 2019

  3. Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

  4. 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  5. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  6. 已成功加载/卸载了主表 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01"
  7. 源时区为 +00:00, 目标时区为 +08:00。
  8. 启动 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01":  system/******** directory=dirwin dumpfile=tbstrans2.dmp TRANSPORT_DATAFILES='C:\app\Apple\oradata\winorcl\tbstrans2b.dbf'
  9. 处理对象类型 TRANSPORTABLE_EXPORT/PLUGTS_BLK
  10. 处理对象类型 TRANSPORTABLE_EXPORT/TABLE
  11. 处理对象类型 TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
  12. 作业 "SYSTEM"."SYS_IMPORT_TRANSPORTABLE_01" 已于 星期日 12月 22 22:20:00 2019 elapsed 0 00:00:05 成功完成
复制代码

-----------传送数据库:
先把源头库只读,然后:
  1. [oracle@station76 ~]$ rman target /

  2. Recovery Manager: Release 11.2.0.4.0 - Production on Sun Dec 22 22:31:33 2019

  3. Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

  4. connected to target database: ORCL (DBID=1554722616)

  5. RMAN> convert database to platform  'Microsoft Windows IA (64-bit)' format '/home/oracle/dbtrans/%U';

  6. Starting conversion at source at 2019-12-22:22:32:25
  7. using target database control file instead of recovery catalog
  8. allocated channel: ORA_DISK_1
  9. channel ORA_DISK_1: SID=194 device type=DISK
  10. allocated channel: ORA_DISK_2
  11. channel ORA_DISK_2: SID=8 device type=DISK
  12. allocated channel: ORA_DISK_3
  13. channel ORA_DISK_3: SID=72 device type=DISK
  14. allocated channel: ORA_DISK_4
  15. channel ORA_DISK_4: SID=134 device type=DISK
  16. allocated channel: ORA_DISK_5
  17. channel ORA_DISK_5: SID=197 device type=DISK
  18. allocated channel: ORA_DISK_6
  19. channel ORA_DISK_6: SID=7 device type=DISK
  20. allocated channel: ORA_DISK_7
  21. channel ORA_DISK_7: SID=71 device type=DISK
  22. allocated channel: ORA_DISK_8
  23. channel ORA_DISK_8: SID=135 device type=DISK

  24. Directory SYS.DIR1 found in the database
  25. Directory SYS.XMLDIR found in the database
  26. Directory SYS.ORACLE_OCM_CONFIG_DIR2 found in the database
  27. Directory SYS.ORACLE_OCM_CONFIG_DIR found in the database
  28. Directory SYS.DATA_PUMP_DIR found in the database

  29. User SYS with SYSDBA and SYSOPER privilege found in password file
  30. ignoring encryption for proxy or image copies
  31. channel ORA_DISK_2: starting datafile conversion
  32. input datafile file number=00001 name=+DATA/orcl/datafile/system.283.1026941797
  33. channel ORA_DISK_3: starting datafile conversion
  34. input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.282.1026941797
  35. channel ORA_DISK_4: starting datafile conversion
  36. input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.281.1026941797
  37. channel ORA_DISK_5: starting datafile conversion
  38. input datafile file number=00005 name=+DATA/orcl/datafile/tbstrans1.261.1027718433
  39. channel ORA_DISK_6: starting datafile conversion
  40. input datafile file number=00006 name=+DATA/orcl/datafile/tbstrans2.262.1027718497
  41. channel ORA_DISK_7: starting datafile conversion
  42. input datafile file number=00004 name=+DATA/orcl/datafile/users.265.1027544577
  43. converted datafile=/home/oracle/dbtrans/data_D-ORCL_I-1554722616_TS-TBSTRANS1_FNO-5_34uk3jgh
  44. channel ORA_DISK_5: datafile conversion complete, elapsed time: 00:00:00
  45. converted datafile=/home/oracle/dbtrans/data_D-ORCL_I-1554722616_TS-TBSTRANS2_FNO-6_35uk3jgh
  46. channel ORA_DISK_6: datafile conversion complete, elapsed time: 00:00:01
  47. converted datafile=/home/oracle/dbtrans/data_D-ORCL_I-1554722616_TS-USERS_FNO-4_36uk3jgh
  48. channel ORA_DISK_7: datafile conversion complete, elapsed time: 00:00:02
  49. converted datafile=/home/oracle/dbtrans/data_D-ORCL_I-1554722616_TS-UNDOTBS1_FNO-3_33uk3jgh
  50. channel ORA_DISK_4: datafile conversion complete, elapsed time: 00:00:04
  51. converted datafile=/home/oracle/dbtrans/data_D-ORCL_I-1554722616_TS-SYSTEM_FNO-1_31uk3jgf
  52. channel ORA_DISK_2: datafile conversion complete, elapsed time: 00:00:28
  53. converted datafile=/home/oracle/dbtrans/data_D-ORCL_I-1554722616_TS-SYSAUX_FNO-2_32uk3jgg
  54. channel ORA_DISK_3: datafile conversion complete, elapsed time: 00:00:27
  55. Edit init.ora file /home/oracle/dbtrans/init_00uk3jgf_1_0.ora. This PFILE will be used to create the database on the target platform
  56. To recompile all PL/SQL modules, run utlirp.sql and utlrp.sql on the target platform
  57. To change the internal database identifier, use DBNEWID Utility
  58. Finished conversion at source at 2019-12-22:22:33:15

  59. RMAN>
复制代码

注意观察ADR中的日志,在以上rman命令结束的最后一个日志:
  1. -rw-r-----. 1 oracle asmadmin     81 Dec 22 22:28 orcl_ora_19483.trm
  2. -rw-r-----. 1 oracle asmadmin    978 Dec 22 22:28 orcl_ora_19483.trc
  3. -rw-r-----. 1 oracle asmadmin     76 Dec 22 22:28 orcl_vktm_19500.trm
  4. -rw-r-----. 1 oracle asmadmin   1092 Dec 22 22:28 orcl_vktm_19500.trc
  5. -rw-r-----. 1 oracle asmadmin     60 Dec 22 22:28 orcl_asmb_19527.trm
  6. -rw-r-----. 1 oracle asmadmin    873 Dec 22 22:28 orcl_asmb_19527.trc
  7. -rw-r-----. 1 oracle asmadmin     69 Dec 22 22:28 orcl_mark_19535.trm
  8. -rw-r-----. 1 oracle asmadmin    871 Dec 22 22:28 orcl_mark_19535.trc
  9. -rw-r-----. 1 oracle asmadmin     60 Dec 22 22:28 orcl_mman_19512.trm
  10. -rw-r-----. 1 oracle asmadmin    873 Dec 22 22:28 orcl_mman_19512.trc
  11. -rw-r-----. 1 oracle asmadmin    110 Dec 22 22:29 orcl_dbw0_19514.trm
  12. -rw-r-----. 1 oracle asmadmin   1259 Dec 22 22:29 orcl_dbw0_19514.trc
  13. -rw-r-----. 1 oracle asmadmin    104 Dec 22 22:29 orcl_dbrm_19508.trm
  14. -rw-r-----. 1 oracle asmadmin   1321 Dec 22 22:29 orcl_dbrm_19508.trc
  15. -rw-r-----. 1 oracle asmadmin 173246 Dec 22 22:33 alert_orcl.log
  16. -rw-r-----. 1 oracle asmadmin    156 Dec 22 22:33 orcl_ora_20401.trm
  17. -rw-r-----. 1 oracle asmadmin   4700 Dec 22 22:33 orcl_ora_20401.trc
  18. -rw-r-----. 1 oracle asmadmin     82 Dec 22 22:34 orcl_mmon_19529.trm
  19. -rw-r-----. 1 oracle asmadmin   1099 Dec 22 22:34 orcl_mmon_19529.trc
  20. [oracle@station76 trace]$ cp orcl_ora_20401.trc  /home/oracle/dbtrans/
  21. [oracle@station76 trace]$
复制代码

所以/home/oracle/dbtrans目录下有所有的数据文件+已经在里面的参数文件和刚刚拷贝进去的trace(控制文件set2脚本)










回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Bo's Oracle Station   

GMT+8, 2024-5-9 19:22 , Processed in 0.154433 second(s), 24 queries .

快速回复 返回顶部 返回列表