{"id":679,"date":"2020-02-21T16:40:09","date_gmt":"2020-02-21T19:40:09","guid":{"rendered":"http:\/\/www.fernandosimon.com\/blog\/?p=679"},"modified":"2020-07-19T19:12:03","modified_gmt":"2020-07-19T22:12:03","slug":"zdlra-manual-clone-to-tape","status":"publish","type":"post","link":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/","title":{"rendered":"ZDLRA, Manual Clone to Tape"},"content":{"rendered":"<p style=\"text-align: justify;\">In my <a href=\"https:\/\/www.fernandosimon.com\/blog\/zdlra-osb-and-clone-to-tape\/\" target=\"_blank\" rel=\"noopener noreferrer\">previous post<\/a>, I showed how the clone to tape occurs for ZDLRA. But as explained, the clones occur through the scheduler and follow some rules. For full backup, as an example, it clones the last available.<\/p>\n<p style=\"text-align: justify;\">But sometimes,&nbsp; it is needed to call the clone for some specific backup, maybe to do long-term storage to follow some regimentation\/law. And if we leverage this for the clone, jobs can maybe take to long, or clone more that you need.<\/p>\n<p style=\"text-align: justify;\"><!--more Click here to read more...--><\/p>\n<h2 style=\"text-align: justify;\">Manual Clone<\/h2>\n<p style=\"text-align: justify;\">It is possible to clone one backup piece directly using CLI at ZDLRA. But we need to specify backup piece per backup piece since the parameter is the bp_key. But before clone, I recommend identifying some important things.<\/p>\n<p style=\"text-align: justify;\">The first is the database key inside the rman catalog. A simple <em>list db_unique_name<\/em> show this:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">RMAN&gt; list db_unique_name of database ORCL18C;\r\n\r\n\r\nList of Databases\r\nDB Key  DB Name  DB ID            Database Role    Db_unique_name\r\n------- ------- ----------------- ---------------  ------------------\r\n15993   ORCL18C  558466555        PRIMARY          ORCL18C\r\n\r\nRMAN&gt;<\/pre>\n<p style=\"text-align: justify;\">The second is to identify the backupset and the backup piece that you need to clone. In this case, I picked up one from SYSTEM tablespace:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">RMAN&gt; list backupset 16512;\r\n\r\n\r\nList of Backup Sets\r\n===================\r\n\r\n\r\nBS Key  Type LV Size       Device Type Elapsed Time Completion Time\r\n------- ---- -- ---------- ----------- ------------ -------------------\r\n16512   Incr 0  330.35M    SBT_TAPE    00:03:03     02\/02\/2020 16:12:04\r\n        BP Key: 16513   Status: AVAILABLE  Compressed: YES  Tag: BKP-DB-INC0\r\n        Handle: VB$_1891149551_16507I   Media:\r\n  List of Datafiles in backup set 16512\r\n  File LV Type Ckp SCN    Ckp Time            Abs Fuz SCN Sparse Name\r\n  ---- -- ---- ---------- ------------------- ----------- ------ ----\r\n  1    0  Incr 1909028    02\/02\/2020 16:09:01              NO    \/u01\/app\/oracle\/oradata\/ORCL18C\/system01.dbf\r\n\r\nRMAN&gt;<\/pre>\n<p style=\"text-align: justify;\">Other are related inside ZDLRA database and are the protection policy linked with the database doing select over ra_database table:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; select policy_name, db_key, db_unique_name from ra_database where db_unique_name = 'ORCL18C';\r\n\r\nPOLICY_NAME                                            DB_KEY DB_UNIQUE_NAME\r\n-------------------------------------------------- ---------- --------------------------------\r\nZDLRA_ONLY_TAPE                                         15993 ORCL18C\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">And to finish it needed to discover the template it is associated with the protection policy:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; set linesize 250\r\nSQL&gt; col LIB_NAME format a30\r\nSQL&gt; col TEMPLATE_NAME format a50\r\nSQL&gt; col LAST_SCHEDULE_TIME format a35\r\nSQL&gt; col POLICY_NAME format a50\r\nSQL&gt; select TEMPLATE_NAME, BACKUP_TYPE, LAST_SCHEDULE_TIME, LIB_NAME, DB_UNIQUE_NAME, POLICY_NAME FROM RA_SBT_JOB WHERE LIB_NAME = 'OSBSBT' and POLICY_NAME = 'ZDLRA_ONLY_TAPE' ;\r\n\r\nTEMPLATE_NAME                                      BACKUP_TYPE      LAST_SCHEDULE_TIME                  LIB_NAME                       DB_UNIQUE_NAME                 POLICY_NAME\r\n-------------------------------------------------- ---------------- ----------------------------------- ------------------------------ ------------------------------ --------------------------------------------------\r\nONLYTAPE_FULL_ARCH                                 FULL, ARCH       02-FEB-20 04.40.37.077769 PM +01:00 OSBSBT                                                        ZDLRA_ONLY_TAPE\r\nONLYTAPE_ARCH                                      ARCH                                                 OSBSBT                                                        ZDLRA_ONLY_TAPE\r\n\r\nSQL&gt;<\/pre>\n<h2 style=\"text-align: justify;\">COPY_BACKUP_PIECE<\/h2>\n<p style=\"text-align: justify;\">The information collected before it is important because it is needed to use the <a href=\"https:\/\/docs.oracle.com\/en\/engineered-systems\/zero-data-loss-recovery-appliance\/19.2\/amagd\/amagd_dbms.html#GUID-D07DE6E0-3197-4142-B379-54A6D417EF36\" target=\"_blank\" rel=\"noopener noreferrer\">DBMS_RA.COPY_BACKUP_PIECE<\/a> procedure.<\/p>\n<p style=\"text-align: justify;\">The parameter for the usage:<\/p>\n<ul style=\"text-align: justify;\">\n<li>BP_KEY: Backup piece key that will be cloned.<\/li>\n<li>FORMAT: Format to create the name for the backup. It follows the same format as RMAN (including the same wildcards).<\/li>\n<li>TEMPLATE_NAME: The template that will be used to clone to tape. This is how ZDLRA discover the library and attributes for the clone.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">So, to clone we just need to execute at ZDLRA:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; BEGIN\r\n  2      DBMS_RA.COPY_BACKUP_PIECE(\r\n  3          BP_KEY =&gt; 16513,\r\n  4          FORMAT =&gt; 'RA_SBT_ORCL18C_16512_16513_%U',\r\n  5          TEMPLATE_NAME =&gt; 'ONLYTAPE_FULL_ARCH'\r\n  6      );\r\n  7  END;\r\n  8  \/\r\n\r\nPL\/SQL procedure successfully completed.\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">Important there is the FORMAT. Look that that I used RA_SBT in the beginning to follow the same used by the normal clone to the tape of ZDLRA, after I added the DB_UNIQUE_NAME, with &lt;BS_KEY&gt;_&lt;BP_KEY&gt;, and %U to generate a unique name.<\/p>\n<p style=\"text-align: justify;\">If we look internally, the backup was scheduled:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; SELECT TASK_ID, STATE, DB_UNIQUE_NAME, ERROR_TEXT, BS_KEY, PIECE# FROM RA_SBT_TASK WHERE LIB_NAME = 'OSBSBT' AND  DB_UNIQUE_NAME = 'ORCL18C' and BS_KEY = 16512;\r\n\r\n   TASK_ID STATE                DB_UNIQUE_NAME                 ERROR_TEXT                                             BS_KEY     PIECE#\r\n---------- -------------------- ------------------------------ -------------------------------------------------- ---------- ----------\r\n     33857 EXECUTABLE           ORCL18C                                                                                16512          1\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">And OSB executed it:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">[root@zdlras1n1 ~]# obtool lsjob\r\nJob ID           Sched time  Contents                       State\r\n---------------- ----------- ------------------------------ ---------------------------------------\r\noracle\/42        none        database ORCL18C (dbid=558466555) processed; Oracle job(s) scheduled\r\noracle\/42.1      none        datafile backup                running since 2020\/02\/02.20:48\r\n[root@zdlras1n1 ~]#\r\n[root@zdlras1n1 ~]# cat \/usr\/etc\/ob\/xcr\/oracle@42.1\r\n[4100000001]2020\/02\/02.20:48:35 ______________________________________________________________________\r\n[4100000001]2020\/02\/02.20:48:35\r\n[4100000002]2020\/02\/02.20:48:35         Transcript for job oracle\/42.1 running on zdlras1n1\r\n[4100000002]2020\/02\/02.20:48:35\r\n[1100000003]2020\/02\/02.20:48:35 (amh)  qdv__automount_in_mh entered\r\n[1100000004]2020\/02\/02.20:48:35 (amh)  qdv__automount_in_mh tape03 at 2020\/02\/02.20:48:35, flags 0x100\r\n[1100000005]2020\/02\/02.20:48:35 (amh)  mount volume options list contains:\r\n[1100000006]2020\/02\/02.20:48:35 (amh)     vtype 3 (app), vid (null), vs_create 0, family zdlras1-osbmf, retain (null), size 0, mediainfo 2, scratch 0\r\n[1100000007]2020\/02\/02.20:48:36 (amh)  don't preserve previous mh automount state\r\n[1100000008]2020\/02\/02.20:48:36 (gep)  getting reservation for element 0x3 (dte)\r\n[1100000009]2020\/02\/02.20:48:36 (una)  unload_anywhere entered\r\n[110000000A]2020\/02\/02.20:48:36 (amh) attempting automount with lm based volume selection\r\n[110000000B]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)  beginning pass 1, mediainfo pass 1 at 2020\/02\/02.20:48:36\r\n[110000000C]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    1 no vid\r\n[110000000D]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    2 no vid\r\n[110000000E]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    3 no vid\r\n[110000000F]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    4 no vid\r\n[1100000010]2020\/02\/02.20:48:36 (ulg)  1,(lm_mmr)  need next volume after oid 146 (vid zdlras1-osbmf-000001, tag E01005L4, create_time 1577658912, mediainfo 0) for append; its oid 155\r\n[1100000011]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    5 oid 146 doesn't meet mount requirements - the next volume of this set is needed (OB device mgr)\r\n[1100000012]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh) oid 146 is added to state\r\n[1100000013]2020\/02\/02.20:48:36 (ulg)  1,(lm_mmr)  need next volume after oid 148 (vid zdlras1-osbmf-000002, tag E01006L4, create_time 1577658918, mediainfo 4) for append; its oid 157\r\n[1100000014]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    6 oid 148 doesn't meet mount requirements - the next volume of this set is needed (OB device mgr)\r\n[1100000015]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh) oid 148 is added to state\r\n[1100000016]2020\/02\/02.20:48:36 (ulg)  1,(lm_mmr)  need next volume after oid 150 (vid zdlras1-osbmf-000003, tag E01007L4, create_time 1577658926, mediainfo 4) for append; its oid 153\r\n[1100000017]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    7 oid 150 doesn't meet mount requirements - the next volume of this set is needed (OB device mgr)\r\n[1100000018]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh) oid 150 is added to state\r\n[1100000019]2020\/02\/02.20:48:36 (ulg)  1,(lm_mmr)  family zdlras1-osbmf != RMAN-DEFAULT\r\n[110000001A]2020\/02\/02.20:48:36 (ulg)  1,(lm_mmr)  oid 151 (vid RMAN-DEFAULT-000001, tag E01008L4, create_time 1577034094, mediainfo 0) fails mount criteria\r\n[110000001B]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    8 oid 151 doesn't meet mount requirements - volume doesn't meet mount criteria (OB device mgr)\r\n[110000001C]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh) oid 151 is added to state\r\n[110000001D]2020\/02\/02.20:48:36 (ulg)  1,(lm_mmr)  oid 153 (vid zdlras1-osbmf-000004, tag E01009L4, create_time 1577658926, mediainfo 4) passes criteria\r\n[110000001E]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)    9 appendable volume found\r\n[110000001F]2020\/02\/02.20:48:36 (ulg)  1,(lm_mmr)  oid 155 (vid zdlras1-osbmf-000005, tag E01010L4, create_time 1577658912, mediainfo 0) passes criteria\r\n[1100000020]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   10 better appendable volume found\r\n[1100000021]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   10 available space 159744,   9                                               available space 233472\r\n[1100000022]2020\/02\/02.20:48:36 (ulg)  1,(lm_mmr)  oid 157 (vid zdlras1-osbmf-000006, tag E01011L4, create_time 1577658918, mediainfo 0) passes criteria\r\n[1100000023]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   11 better appendable volume found\r\n[1100000024]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   11 available space 18432,  10                                               available space 159744\r\n[1100000025]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   12 no vid\r\n[1100000026]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   13 no vid\r\n[1100000027]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   14 no vid\r\n[1100000028]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   15 no vid\r\n[1100000029]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   16 no vid\r\n[110000002A]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   17 no vid\r\n[110000002B]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   18 no vid\r\n[110000002C]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   19 no vid\r\n[110000002D]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   20 no vid\r\n[110000002E]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   21 vacant\r\n[110000002F]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   22 no vid\r\n[1100000030]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   23 no vid\r\n[1100000031]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   24 vacant\r\n[1100000032]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   25 vacant\r\n[1100000033]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   26 vacant\r\n[1100000034]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   27 vacant\r\n[1100000035]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   28 vacant\r\n[1100000036]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   29 vacant\r\n[1100000037]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   30 no vid\r\n[1100000038]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   31 no vid\r\n[1100000039]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   32 no vid\r\n[110000003A]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   33 no vid\r\n[110000003B]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   34 no vid\r\n[110000003C]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   35 no vid\r\n[110000003D]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   36 no vid\r\n[110000003E]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   37 no vid\r\n[110000003F]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   38 no vid\r\n[1100000040]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)   39 no vid\r\n[1100000041]2020\/02\/02.20:48:36 (ulg)  1,(lm_amh)  end of pass 1 at 2020\/02\/02.20:48:362020\/02\/02.20:48:36\r\n[1100000042]2020\/02\/02.20:48:36 (amh)  qlm__select_volume returned se state for vid = zdlras1-osbmf-000006 last_se = 0\r\n[1100000043]2020\/02\/02.20:48:36 (amh)  state.pass = 1\r\n[1100000044]2020\/02\/02.20:48:36 (amh)  state.last_se_checked = 11\r\n[1100000045]2020\/02\/02.20:48:36 (amh)  state.mediainfo_pass = 1\r\n[1100000046]2020\/02\/02.20:48:36 (amh)  state.mediainfo_loops = 1\r\n[1100000047]2020\/02\/02.20:48:36 (amh)  state.rls_eltype = se\r\n[1100000048]2020\/02\/02.20:48:36 (amh)  state.rls_elnum = 11\r\n[1100000049]2020\/02\/02.20:48:36 (amh)   11 loading\r\n[110000004A]2020\/02\/02.20:48:38 (atv)  qdv__automount_this_vol entered\r\n[110000004B]2020\/02\/02.20:48:38 (atv)  calling qdv__mount\r\n[110000004C]2020\/02\/02.20:48:38 (mt)   qdv__read_mount_db() succeeded, found vol_oid 0\r\n[110000004D]2020\/02\/02.20:48:38 (mt)   qdv__read_label() succeeded; read 65536 bytes\r\n[110000004E]2020\/02\/02.20:48:38 (mt)   exp time obtained from label\r\n[110000004F]2020\/02\/02.20:48:38 (mt)   qdb__label_event() returned vol_oid 157\r\n[1100000050]2020\/02\/02.20:48:38 (mt)   setting vol_oid in mount_info to 157\r\n[1100000051]2020\/02\/02.20:48:38 (mt)   updated volume close time from db\r\n[1100000052]2020\/02\/02.20:48:38 (atv)  qdv__mount succeeded\r\n[1100000053]2020\/02\/02.20:48:38 (atv)  automount worked\r\n[1100000054]2020\/02\/02.20:48:38 (atv)  qdv__automount_this_vol exited\r\n[1100000055]2020\/02\/02.20:48:38 (gep)  getting reservation for element 0x3 (dte)\r\n[1100000056]2020\/02\/02.20:48:38 (amh)   11 automount worked - returning\r\n[1100000057]2020\/02\/02.20:48:38 (amh)  end of automount at 2020\/02\/02.20:48:38 (0x0)\r\n[1100000058]2020\/02\/02.20:48:38 (amh)  returning from qdv__automount_in_mh\r\n[3100000059]2020\/02\/02.20:48:38 Info: volume in tape03 is usable for this operation.\r\n[110000005A]2020\/02\/02.20:48:38 (pvfw) at BOT\r\n[110000005B]2020\/02\/02.20:48:38 (pvfw) previous state is invalid\r\n[110000005C]2020\/02\/02.20:48:38 (alv)  backup image label is valid, file 19, section 2\r\n[110000005D]2020\/02\/02.20:48:38 (pvfw) invalidating tape position in mount db\r\n[110000005E]2020\/02\/02.20:48:38 (ial)  invalidate backup image label (was valid)\r\n[110000005F]2020\/02\/02.20:48:38 (pvfw) space to EOD\r\n[1100000060]2020\/02\/02.20:48:38 (pvfw) inspect_recs BSR: rtypes [0] = filemark\r\n[1100000061]2020\/02\/02.20:48:38 (pvfw) inspect_recs BSR: rtypes [1] = filemark\r\n[1100000062]2020\/02\/02.20:48:38 (pvfw) inspect_recs BSR: rtypes [2] = data\r\n[1100000063]2020\/02\/02.20:48:38 (pvfw) inspect_recs BSR: rtypes [3] = filemark\r\n[1100000064]2020\/02\/02.20:48:38 (pvfw) inspect_recs FSF\r\n[1100000065]2020\/02\/02.20:48:38 (pvfw) inspect_recs ready to mount\r\n[1100000066]2020\/02\/02.20:48:38 (pvfw) mounting at inspect_rec's request in rw_mode 2\r\n[1100000067]2020\/02\/02.20:48:38 (pvfw) mounted ok\r\n[1100000068]2020\/02\/02.20:48:38 (pvfw) at OB EOD, returning (2)\r\n[1100000069]2020\/02\/02.20:48:38 (pvfw) pos_vol_cleanup not returning pstate\r\n[010000006A]2020\/02\/02.20:48:38 (dmap) tape03 success\r\n[410000006B]Volume label:\r\n[410000006C]    Volume tag:             E01011L4\r\n[410000006D]    Volume UUID:            a1f8db28-109b-1038-847b-080027b2a93d\r\n[410000006E]    Volume ID:              zdlras1-osbmf-000006\r\n[410000006F]    Volume set ID:          zdlras1-osbmf-000002\r\n[4100000070]    Previous volume:        zdlras1-osbmf-000002\r\n[4100000071]    Volume sequence:        2\r\n[4100000072]    Volume set owner:       root\r\n[4100000073]    Volume set created:     Sun Dec 29 23:35:18 2019\r\n[4100000074]    Volume set closes:      Wed Oct 19 00:35:18 2022 (no writes after this time)\r\n[4000000075]    Media family:           zdlras1-osbmf\r\n[4100000076]\r\n[4100000077]    Volume set expires: never; content manages reuse\r\n[4100000078]\r\n[4100000079]Archive label:\r\n[410000007A]    File number:            24\r\n[410000007B]    File section:           1\r\n[410000007C]    Owner:                  root\r\n[410000007D]    Client host:            zdlras1n1\r\n[410000007E]    Backup level:           0\r\n[410000007F]    S\/w compression:        no\r\n[4100000080]    Archive created:        Sun Feb 02 20:48:38 2020\r\n[4100000081]    Archive owner:          oracle (UUID bbad0004-01a9-1038-abb2-080027b2a93d)\r\n[4100000082]    Owner class:            oracle (UUID a43aa638-01a9-1038-8809-080027b2a93d)\r\n[4100000083]    Backup piece name:      RA_SBT_ORCL18C_16512_16513_2tunhkot_1_2_0_qEdAn\r\n[4100000084]    Backup db name:         ORCL18C\r\n[4100000085]    Backup db id:           558466555\r\n[4100000086]    Backup copy number:     not applicable\r\n[4100000087]    Backup content:         full\r\n[4100000088]    Encryption:             off\r\n[4100000089]    Catalog data:           no\r\n[410000008A]    Backup image UUID:      8cb63f94-281a-1038-86d5-080027b2a93d\r\n[410000008B]    Backup instance UUID:   8cb63f9e-281a-1038-86d5-080027b2a93d\r\n[410000008C]    Backup instance created:Sun Feb 02 20:48:38 2020\r\n[410000008D]\r\n[410000008E]\r\n[410000008E]End of tape has been reached.  Please wait while I rewind and unload the tape.\r\n[410000008F]The Volume ID of the next tape to be written is zdlras1-osbmf-000007.\r\n[4100000090]The tape has been unloaded.\r\n[4100000090]\r\n[4100000091]Volume label:\r\n[4100000092]    Volume tag:             E01012L4\r\n[4100000093]    Volume UUID:            93cb6548-281a-1038-86d5-080027b2a93d\r\n[4100000094]    Volume ID:              zdlras1-osbmf-000007\r\n[4100000095]    Volume set ID:          zdlras1-osbmf-000002\r\n[4100000096]    Previous volume:        zdlras1-osbmf-000006\r\n[4100000097]    Volume sequence:        3\r\n[4100000098]    Volume set owner:       root\r\n[4100000099]    Volume set created:     Sun Dec 29 23:35:18 2019\r\n[410000009A]    Volume set closes:      Wed Oct 19 00:35:18 2022 (no writes after this time)\r\n[400000009B]    Media family:           zdlras1-osbmf\r\n[410000009C]\r\n[410000009D]    Volume set expires: never; content manages reuse\r\n[410000009E]\r\n[410000009F]Archive label:\r\n[41000000A0]    File number:            24\r\n[41000000A1]    File section:           2\r\n[41000000A2]    Owner:                  root\r\n[41000000A3]    Client host:            zdlras1n1\r\n[41000000A4]    Backup level:           0\r\n[41000000A5]    S\/w compression:        no\r\n[41000000A6]    Archive created:        Sun Feb 02 20:48:38 2020\r\n[41000000A7]    Archive owner:          oracle (UUID bbad0004-01a9-1038-abb2-080027b2a93d)\r\n[41000000A8]    Owner class:            oracle (UUID a43aa638-01a9-1038-8809-080027b2a93d)\r\n[41000000A9]    Backup piece name:      RA_SBT_ORCL18C_16512_16513_2tunhkot_1_2_0_qEdAn\r\n[41000000AA]    Backup db name:         ORCL18C\r\n[41000000AB]    Backup db id:           558466555\r\n[41000000AC]    Backup copy number:     not applicable\r\n[41000000AD]    Backup content:         full\r\n[41000000AE]    Encryption:             off\r\n[41000000AF]    Catalog data:           no\r\n[41000000B0]    Backup image UUID:      8cb63f94-281a-1038-86d5-080027b2a93d\r\n[41000000B1]    Backup instance UUID:   8cb63f9e-281a-1038-86d5-080027b2a93d\r\n[41000000B2]    Backup instance created:Sun Feb 02 20:48:38 2020\r\n[41000000B3]\r\n[41000000B4]\r\n[41000000B4]Backup statistics:\r\n[41000000B5]status 0\r\n[40000000B6]devices\r\n[40000000B7] tape03\r\n[41000000B8]\r\n[40000000B9]volumes\r\n[40000000BA] zdlras1-osbmf-000006\r\n[41000000BB]\r\n[40000000BC]voltags\r\n[40000000BD] E01011L4\r\n[41000000BE]\r\n[41000000BF]file 24\r\n[41000000C0]host zdlras1n1\r\n[41000000C1]encryption off\r\n[41000000C2]compression no\r\n[41000000C3]start_time  Sun Feb 02 2020 at 20:48:38 (1580672918)\r\n[41000000C4]end_time    Sun Feb 02 2020 at 20:49:36 (1580672976)\r\n[41000000C5]backup_time Sun Feb 02 2020 at 20:48:38 (1580672918)\r\n[41000000C6]dev_kbytes 769938\r\n[41000000C7]dev_iosecs 53\r\n[41000000C8]dev_iorate 14.9 MB\/S\r\n[41000000C9]wrt_iosecs 58\r\n[41000000CA]wrt_iorate 13.6 MB\/S\r\n[41000000CB]physical_blks_written 376\r\n[41000000CC]write_errors 0\r\n[41000000CD]physical_blks_read 0\r\n[41000000CE]read_errors 0\r\n[41000000CF]error_rate 0%\r\n[41000000D0]piece RA_SBT_ORCL18C_16512_16513_2tunhkot_1_2_0_qEdAn completed, status 0\r\n[root@zdlras1n1 ~]#<\/pre>\n<p style=\"text-align: justify;\">Look that above you can see that one tape became full and OSB used another to finish.<\/p>\n<p><a href=\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-684\" src=\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png\" alt=\"\" width=\"423\" height=\"152\" srcset=\"https:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png 423w, https:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape-300x108.png 300w\" sizes=\"auto, (max-width: 423px) 100vw, 423px\" \/><\/a><\/p>\n<h3 style=\"text-align: justify;\">After the Clone<\/h3>\n<p style=\"text-align: justify;\">Returning to rman to check the same list we have:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">RMAN&gt; list backupset 16512;\r\n\r\n\r\nList of Backup Sets\r\n===================\r\n\r\n\r\nBS Key  Type LV Size\r\n------- ---- -- ----------\r\n16512   Incr 0  330.35M\r\n  List of Datafiles in backup set 16512\r\n  File LV Type Ckp SCN    Ckp Time            Abs Fuz SCN Sparse Name\r\n  ---- -- ---- ---------- ------------------- ----------- ------ ----\r\n  1    0  Incr 1909028    02\/02\/2020 16:09:01              NO    \/u01\/app\/oracle\/oradata\/ORCL18C\/system01.dbf\r\n\r\n  Backup Set Copy #1 of backup set 16512\r\n  Device Type Elapsed Time Completion Time     Compressed Tag\r\n  ----------- ------------ ------------------- ---------- ---\r\n  SBT_TAPE    03:40:36     02\/02\/2020 16:12:04 YES        BKP-DB-INC0\r\n\r\n    List of Backup Pieces for backup set 16512 Copy #1\r\n    BP Key  Pc# Status      Media                   Piece Name\r\n    ------- --- ----------- ----------------------- ----------\r\n    16513   1   AVAILABLE                           VB$_1891149551_16507I\r\n\r\n  Backup Set Copy #2 of backup set 16512\r\n  Device Type Elapsed Time Completion Time     Compressed Tag\r\n  ----------- ------------ ------------------- ---------- ---\r\n  SBT_TAPE    03:40:36     02\/02\/2020 19:49:37 NO         BKP-DB-INC0\r\n\r\n    List of Backup Pieces for backup set 16512 Copy #2\r\n    BP Key  Pc# Status      Media                   Piece Name\r\n    ------- --- ----------- ----------------------- ----------\r\n    16921   1   AVAILABLE   zdlras1-osbmf-000006,zdlras1-osbmf-000007 RA_SBT_ORCL18C_16512_16513_2tunhkot_1_2_0_qEdAn\r\n\r\nRMAN&gt;<\/pre>\n<p style=\"text-align: justify;\">As you can see, the backupset 16512 (of backup piece 16513) has two copies. One in ZDLRA database and another at OSB (look the media because of lack of space in one).<\/p>\n<h2 style=\"text-align: justify;\">QUEUE_SBT_BACKUP_TASK<\/h2>\n<p style=\"text-align: justify;\">Another way to call manually the clone is to use the <a href=\"https:\/\/docs.oracle.com\/en\/engineered-systems\/zero-data-loss-recovery-appliance\/19.2\/amagd\/amagd_dbms.html#GUID-F75C109D-C798-44A3-9D05-961FBF1A351C\" target=\"_blank\" rel=\"noopener noreferrer\">DBMS_RA.QUEUE_SBT_BACKUP_TASK<\/a>. And in this case, everything that is linked with the template is cloned to tape. This a good way to force one clone one database entirely.<\/p>\n<p style=\"text-align: justify;\">Look below that I have some archivedlogs that was not cloned yet:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">RMAN&gt; list copy of archivelog all;\r\n\r\nList of Archived Log Copies for database with db_unique_name ORCL18C\r\n=====================================================================\r\n\r\nKey     Thrd Seq     S Low Time\r\n------- ---- ------- - -------------------\r\n16943   1    22      A 02\/02\/2020 16:28:28\r\n        Name: \/u01\/app\/oracle\/oradata\/ORCL18C\/archivelog\/2020_02_02\/o1_mf_1_22_h3gbs5fk_.arc\r\n\r\n16965   1    23      A 02\/02\/2020 21:03:49\r\n        Name: \/u01\/app\/oracle\/oradata\/ORCL18C\/archivelog\/2020_02_02\/o1_mf_1_23_h3gcfwc8_.arc\r\n\r\n\r\nRMAN&gt; BACKUP DEVICE TYPE SBT ARCHIVELOG ALL DELETE ALL INPUT TAG 'BKP-ARCH';\r\n\r\nStarting backup at 02\/02\/2020 21:15:09\r\ncurrent log archived\r\nusing channel ORA_SBT_TAPE_1\r\nchannel ORA_SBT_TAPE_1: starting archived log backup set\r\nchannel ORA_SBT_TAPE_1: specifying archived log(s) in backup set\r\ninput archived log thread=1 sequence=22 RECID=16 STAMP=1031346234\r\ninput archived log thread=1 sequence=23 RECID=17 STAMP=1031346892\r\ninput archived log thread=1 sequence=24 RECID=18 STAMP=1031346910\r\nchannel ORA_SBT_TAPE_1: starting piece 1 at 02\/02\/2020 21:15:11\r\nchannel ORA_SBT_TAPE_1: finished piece 1 at 02\/02\/2020 21:15:36\r\npiece handle=ORCL18C_6nuni6mv_1_1 tag=BKP-ARCH comment=API Version 2.0,MMS Version 12.2.0.2\r\nchannel ORA_SBT_TAPE_1: backup set complete, elapsed time: 00:00:25\r\nchannel ORA_SBT_TAPE_1: deleting archived log(s)\r\narchived log file name=\/u01\/app\/oracle\/oradata\/ORCL18C\/archivelog\/2020_02_02\/o1_mf_1_22_h3gbs5fk_.arc RECID=16 STAMP=1031346234\r\narchived log file name=\/u01\/app\/oracle\/oradata\/ORCL18C\/archivelog\/2020_02_02\/o1_mf_1_23_h3gcfwc8_.arc RECID=17 STAMP=1031346892\r\narchived log file name=\/u01\/app\/oracle\/oradata\/ORCL18C\/archivelog\/2020_02_02\/o1_mf_1_24_h3gcgg15_.arc RECID=18 STAMP=1031346910\r\nFinished backup at 02\/02\/2020 21:15:36\r\n\r\nStarting Control File and SPFILE Autobackup at 02\/02\/2020 21:15:37\r\npiece handle=c-558466555-20200202-03 comment=API Version 2.0,MMS Version 12.2.0.2\r\nFinished Control File and SPFILE Autobackup at 02\/02\/2020 21:15:54\r\n\r\nRMAN&gt; list backup of archivelog sequence between 22 and 24;\r\n\r\n\r\nList of Backup Sets\r\n===================\r\n\r\n\r\nBS Key  Size       Device Type Elapsed Time Completion Time\r\n------- ---------- ----------- ------------ -------------------\r\n16991   25.25M     SBT_TAPE    00:00:20     02\/02\/2020 21:15:31\r\n        BP Key: 16992   Status: AVAILABLE  Compressed: NO  Tag: BKP-ARCH\r\n        Handle: ORCL18C_6nuni6mv_1_1   Media: Recovery Appliance (ZDLRAS1)\r\n\r\n  List of Archived Logs in backup set 16991\r\n  Thrd Seq     Low SCN    Low Time            Next SCN   Next Time\r\n  ---- ------- ---------- ------------------- ---------- ---------\r\n  1    22      1910746    02\/02\/2020 16:28:28 1923481    02\/02\/2020 21:03:49\r\n  1    23      1923481    02\/02\/2020 21:03:49 1924479    02\/02\/2020 21:14:52\r\n  1    24      1924479    02\/02\/2020 21:14:52 1924521    02\/02\/2020 21:15:09\r\n\r\nRMAN&gt;<\/pre>\n<p style=\"text-align: justify;\">And I called the template backup that I defined just for archivelogs (see my previous post) manually:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">SQL&gt; BEGIN\r\n  2      DBMS_RA.QUEUE_SBT_BACKUP_TASK('ONLYTAPE_ARCH');\r\n  3  END;\r\n  4  \/\r\n\r\nPL\/SQL procedure successfully completed.\r\n\r\nSQL&gt;<\/pre>\n<p style=\"text-align: justify;\">After that we can see the list backup again:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"no-highlight\">RMAN&gt; list backup of archivelog sequence between 22 and 24;\r\n\r\n\r\nList of Backup Sets\r\n===================\r\n\r\n\r\nBS Key  Size\r\n------- ----------\r\n16991   25.25M\r\n\r\n  List of Archived Logs in backup set 16991\r\n  Thrd Seq     Low SCN    Low Time            Next SCN   Next Time\r\n  ---- ------- ---------- ------------------- ---------- ---------\r\n  1    22      1910746    02\/02\/2020 16:28:28 1923481    02\/02\/2020 21:03:49\r\n  1    23      1923481    02\/02\/2020 21:03:49 1924479    02\/02\/2020 21:14:52\r\n  1    24      1924479    02\/02\/2020 21:14:52 1924521    02\/02\/2020 21:15:09\r\n\r\n  Backup Set Copy #1 of backup set 16991\r\n  Device Type Elapsed Time Completion Time     Compressed Tag\r\n  ----------- ------------ ------------------- ---------- ---\r\n  SBT_TAPE    00:29:22     02\/02\/2020 21:15:35 NO         BKP-ARCH\r\n\r\n    List of Backup Pieces for backup set 16991 Copy #1\r\n    BP Key  Pc# Status      Media                   Piece Name\r\n    ------- --- ----------- ----------------------- ----------\r\n    16992   1   AVAILABLE   Recovery Appliance (ZDLRAS1) ORCL18C_6nuni6mv_1_1\r\n\r\n  Backup Set Copy #2 of backup set 16991\r\n  Device Type Elapsed Time Completion Time     Compressed Tag\r\n  ----------- ------------ ------------------- ---------- ---\r\n  SBT_TAPE    00:29:22     02\/02\/2020 20:45:49 NO         BKP-ARCH\r\n\r\n    List of Backup Pieces for backup set 16991 Copy #2\r\n    BP Key  Pc# Status      Media                   Piece Name\r\n    ------- --- ----------- ----------------------- ----------\r\n    17065   1   AVAILABLE   zdlras1-osbmf-000005    RA_SBT_ORCL18C_558466555_16850_6nuni6mv_1_2_16991\r\n\r\nRMAN&gt;<\/pre>\n<p style=\"text-align: justify;\">And now we can see that we have a second copy for the backupset 16991.<\/p>\n<h2 style=\"text-align: justify;\">Conclusion<\/h2>\n<p style=\"text-align: justify;\">Sometimes it is needed to manually clone the backups for tape. Remember that for full backups the ZDLRA only clones the last full backup. If you need, for some reason, clone other backups for long-term retention you can call manually the clone to tape. The options allow one to one clone or the entire template.<\/p>\n<p style=\"text-align: justify;\">&nbsp;<\/p>\n<p style=\"text-align: justify;\"><strong>Disclaimer<\/strong>: <em>\u201cThe postings on this site are my own and don\u2019t necessarily represent my actual employer positions, strategies or opinions. The information here was edited to be useful for general purpose, specific data and identifications were removed to allow reach the generic audience and to be useful for the community. Post protected by copyright.\u201d<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In my previous post, I showed how the clone to tape occurs for ZDLRA. But as explained, the clones occur through the scheduler and follow some rules. For full backup, as an example, it clones the last available. But sometimes,&nbsp; it is needed to call the clone for some specific backup, maybe to do long-term [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[44,46,29,77,6,43,5,51],"tags":[93,126,100,69,65,129,127,74],"class_list":["post-679","post","type-post","status-publish","format-standard","hentry","category-backup","category-clone","category-database","category-engineeredsystems","category-exadata","category-mml","category-oracle","category-zdlra","tag-backup","tag-clone","tag-engineered-systems","tag-exadata","tag-oracle","tag-osb","tag-tape","tag-zdlra"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ZDLRA, Manual Clone to Tape - Fernando Simon<\/title>\n<meta name=\"description\" content=\"Check how to do a manual clone to tape your backups at ZDLRA. Check how to backup directly one to one, or calling the scheduler when you want.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ZDLRA, Manual Clone to Tape - Fernando Simon\" \/>\n<meta property=\"og:description\" content=\"Check how to do a manual clone to tape your backups at ZDLRA. Check how to backup directly one to one, or calling the scheduler when you want.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/\" \/>\n<meta property=\"og:site_name\" content=\"Fernando Simon\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-21T19:40:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-19T22:12:03+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png\" \/>\n<meta name=\"author\" content=\"Simon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Simon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"15 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/\"},\"author\":{\"name\":\"Simon\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9\"},\"headline\":\"ZDLRA, Manual Clone to Tape\",\"datePublished\":\"2020-02-21T19:40:09+00:00\",\"dateModified\":\"2020-07-19T22:12:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/\"},\"wordCount\":635,\"commentCount\":1,\"image\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png\",\"keywords\":[\"backup\",\"Clone\",\"Engineered Systems\",\"Exadata\",\"Oracle\",\"OSB\",\"TAPE\",\"ZDLRA\"],\"articleSection\":[\"Backup\",\"Clone\",\"Database\",\"Engineered Systems\",\"Exadata\",\"MML\",\"Oracle\",\"ZDLRA\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/\",\"url\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/\",\"name\":\"ZDLRA, Manual Clone to Tape - Fernando Simon\",\"isPartOf\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png\",\"datePublished\":\"2020-02-21T19:40:09+00:00\",\"dateModified\":\"2020-07-19T22:12:03+00:00\",\"author\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9\"},\"description\":\"Check how to do a manual clone to tape your backups at ZDLRA. Check how to backup directly one to one, or calling the scheduler when you want.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#primaryimage\",\"url\":\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png\",\"contentUrl\":\"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.fernandosimon.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ZDLRA, Manual Clone to Tape\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#website\",\"url\":\"https:\/\/www.fernandosimon.com\/blog\/\",\"name\":\"Fernando Simon\",\"description\":\"Have you hugged your backup today?\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.fernandosimon.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9\",\"name\":\"Simon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a3dbc48de62fffb1829befb4a588d789ec6dc5e05977afabb3407a5f37a16482?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a3dbc48de62fffb1829befb4a588d789ec6dc5e05977afabb3407a5f37a16482?s=96&d=mm&r=g\",\"caption\":\"Simon\"},\"sameAs\":[\"http:\/\/www.fernandosimon.com\"],\"url\":\"https:\/\/www.fernandosimon.com\/blog\/author\/simon\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ZDLRA, Manual Clone to Tape - Fernando Simon","description":"Check how to do a manual clone to tape your backups at ZDLRA. Check how to backup directly one to one, or calling the scheduler when you want.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/","og_locale":"en_US","og_type":"article","og_title":"ZDLRA, Manual Clone to Tape - Fernando Simon","og_description":"Check how to do a manual clone to tape your backups at ZDLRA. Check how to backup directly one to one, or calling the scheduler when you want.","og_url":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/","og_site_name":"Fernando Simon","article_published_time":"2020-02-21T19:40:09+00:00","article_modified_time":"2020-07-19T22:12:03+00:00","og_image":[{"url":"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png","type":"","width":"","height":""}],"author":"Simon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Simon","Est. reading time":"15 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#article","isPartOf":{"@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/"},"author":{"name":"Simon","@id":"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9"},"headline":"ZDLRA, Manual Clone to Tape","datePublished":"2020-02-21T19:40:09+00:00","dateModified":"2020-07-19T22:12:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/"},"wordCount":635,"commentCount":1,"image":{"@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#primaryimage"},"thumbnailUrl":"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png","keywords":["backup","Clone","Engineered Systems","Exadata","Oracle","OSB","TAPE","ZDLRA"],"articleSection":["Backup","Clone","Database","Engineered Systems","Exadata","MML","Oracle","ZDLRA"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/","url":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/","name":"ZDLRA, Manual Clone to Tape - Fernando Simon","isPartOf":{"@id":"https:\/\/www.fernandosimon.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#primaryimage"},"image":{"@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#primaryimage"},"thumbnailUrl":"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png","datePublished":"2020-02-21T19:40:09+00:00","dateModified":"2020-07-19T22:12:03+00:00","author":{"@id":"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9"},"description":"Check how to do a manual clone to tape your backups at ZDLRA. Check how to backup directly one to one, or calling the scheduler when you want.","breadcrumb":{"@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#primaryimage","url":"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png","contentUrl":"http:\/\/www.fernandosimon.com\/blog\/wp-content\/uploads\/2020\/02\/Manual-Tape.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.fernandosimon.com\/blog\/zdlra-manual-clone-to-tape\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fernandosimon.com\/blog\/"},{"@type":"ListItem","position":2,"name":"ZDLRA, Manual Clone to Tape"}]},{"@type":"WebSite","@id":"https:\/\/www.fernandosimon.com\/blog\/#website","url":"https:\/\/www.fernandosimon.com\/blog\/","name":"Fernando Simon","description":"Have you hugged your backup today?","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fernandosimon.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/386da956604bca0d5be5dd52210c1dd9","name":"Simon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fernandosimon.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a3dbc48de62fffb1829befb4a588d789ec6dc5e05977afabb3407a5f37a16482?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a3dbc48de62fffb1829befb4a588d789ec6dc5e05977afabb3407a5f37a16482?s=96&d=mm&r=g","caption":"Simon"},"sameAs":["http:\/\/www.fernandosimon.com"],"url":"https:\/\/www.fernandosimon.com\/blog\/author\/simon\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p5ofTp-aX","_links":{"self":[{"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/posts\/679","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/comments?post=679"}],"version-history":[{"count":0,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/posts\/679\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/media?parent=679"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/categories?post=679"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fernandosimon.com\/blog\/wp-json\/wp\/v2\/tags?post=679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}