Advertisement
Guest User

Untitled

a guest
Jan 10th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. [oracle@o71 ~]$ rman target /
  2.  
  3. Recovery Manager: Release 18.0.0.0.0 - Production on Thu Jan 10 23:13:57 2019
  4. Version 18.4.0.0.0
  5.  
  6. Copyright (c) 1982, 2018, Oracle and/or its affiliates. All rights reserved.
  7.  
  8. connected to target database (not started)
  9.  
  10. RMAN> startup mount
  11.  
  12. Oracle instance started
  13. database mounted
  14.  
  15. Total System Global Area 536867640 bytes
  16.  
  17. Fixed Size 8659768 bytes
  18. Variable Size 327155712 bytes
  19. Database Buffers 192937984 bytes
  20. Redo Buffers 8114176 bytes
  21.  
  22. RMAN> show all;
  23.  
  24. RMAN configuration parameters for database with db_unique_name MIN18 are:
  25. CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
  26. CONFIGURE BACKUP OPTIMIZATION ON;
  27. CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
  28. CONFIGURE CONTROLFILE AUTOBACKUP ON; # default
  29. CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/oracle_backup/MIN18/%F';
  30. CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
  31. CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
  32. CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
  33. CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/oracle_backup/MIN18/%U';
  34. CONFIGURE MAXSETSIZE TO UNLIMITED; # default
  35. CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
  36. CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
  37. CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
  38. CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default
  39. CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
  40. CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/app/oracle/product/18.0.0/dbhome_1/dbs/snapcf_MIN18.f'; # default
  41.  
  42. RMAN> backup full database;
  43.  
  44. Starting backup at 10-JAN-19
  45. using channel ORA_DISK_1
  46. channel ORA_DISK_1: starting full datafile backup set
  47. channel ORA_DISK_1: specifying datafile(s) in backup set
  48. input datafile file number=00002 name=/oradata/MIN18/data_D-MIN18_I-2460040847_TS-SYSAUX_FNO-2_03tmvlae
  49. input datafile file number=00001 name=/oradata/MIN18/data_D-MIN18_I-2460040847_TS-SYSTEM_FNO-1_04tmvlah
  50. input datafile file number=00003 name=/oradata/MIN18/data_D-MIN18_I-2460040847_TS-UNDOTBS1_FNO-3_05tmvlai
  51. input datafile file number=00004 name=/oradata/MIN18/data_D-MIN18_I-2460040847_TS-USERS_FNO-4_06tmvlaj
  52. channel ORA_DISK_1: starting piece 1 at 10-JAN-19
  53. channel ORA_DISK_1: finished piece 1 at 10-JAN-19
  54. piece handle=/oracle_backup/MIN18/0ktn0tuv_1_1 tag=TAG20190110T232102 comment=NONE
  55. channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15
  56. Finished backup at 10-JAN-19
  57.  
  58. Starting Control File and SPFILE Autobackup at 10-JAN-19
  59. piece handle=/oracle_backup/MIN18/c-2460040847-20190110-07 comment=NONE
  60. Finished Control File and SPFILE Autobackup at 10-JAN-19
  61.  
  62. RMAN> backup full database;
  63.  
  64. Starting backup at 10-JAN-19
  65. using channel ORA_DISK_1
  66. skipping datafile 1; already backed up 1 time(s)
  67. skipping datafile 2; already backed up 1 time(s)
  68. skipping datafile 3; already backed up 1 time(s)
  69. skipping datafile 4; already backed up 1 time(s)
  70. Finished backup at 10-JAN-19
  71.  
  72. RMAN>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement