{"id":2588,"date":"2021-03-12T08:43:18","date_gmt":"2021-03-12T08:43:18","guid":{"rendered":"https:\/\/swiv.com.br\/solved-issue-ora-19809-limit-exceeded-for-recovery-files\/"},"modified":"2026-05-27T20:02:51","modified_gmt":"2026-05-27T19:02:51","slug":"solved-issue-ora-19809-limit-exceeded-for-recovery-files","status":"publish","type":"post","link":"https:\/\/swiv.com.br\/index.php\/2021\/03\/12\/solved-issue-ora-19809-limit-exceeded-for-recovery-files\/","title":{"rendered":"[Solved] Issue: ORA-19809: limit exceeded for recovery files"},"content":{"rendered":"\n<p>Ao tentar realizar o backup do banco de dados, a seguinte mensagem \u00e9 reportada:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \\&quot;wp-block-syntaxhighlighter-code\\&quot;\"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;oracle@oel8 ~]$ rman target \/\n \nRecovery Manager: Release 18.0.0.0.0 - Production on Fri Mar 12 05:34:02 2021\nVersion 18.3.0.0.0\n \nCopyright (c) 1982, 2018, Oracle and\/or its affiliates.  All rights reserved.\n \nconnected to target database: RMANDB (DBID=3825250984, not open)\n \nRMAN&gt; BACKUP DATABASE;\n \nStarting backup at 2021-03-12:05:34:21\nusing target database control file instead of recovery catalog\nallocated channel: ORA_DISK_1\nchannel ORA_DISK_1: SID=45 device type=DISK\nchannel ORA_DISK_1: starting full datafile backup set\nchannel ORA_DISK_1: specifying datafile(s) in backup set\ninput datafile file number=00001 name=\/oracle\/dados\/RMANDB\/datafile\/o1_mf_system_h8nynqfx_.dbf\ninput datafile file number=00003 name=\/oracle\/dados\/RMANDB\/datafile\/o1_mf_sysaux_h8nyq35q_.dbf\ninput datafile file number=00004 name=\/oracle\/dados\/RMANDB\/datafile\/o1_mf_undotbs1_h8nyrjdr_.dbf\ninput datafile file number=00005 name=\/oracle\/dados\/RMANDB\/datafile\/ts_cortex_catalog.dbf\ninput datafile file number=00007 name=\/oracle\/dados\/RMANDB\/datafile\/o1_mf_users_h8nyrkn7_.dbf\nchannel ORA_DISK_1: starting piece 1 at 2021-03-12:05:34:24\nRMAN-00571: ===========================================================\nRMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============\nRMAN-00571: ===========================================================\nRMAN-03009: failure of backup command on ORA_DISK_1 channel at 03\/12\/2021 05:35:09\nORA-19809: limit exceeded for recovery files\nORA-19804: cannot reclaim 67108864 bytes disk space from 734003200 bytes limit\n \nRMAN&gt;\n<\/pre><\/div>\n\n\n<p>\u00c9 poss\u00edvel notarmos que a FRA est\u00e1 limitada at\u00e9 700MB, e por conta disso o RMAN n\u00e3o consegue concluir a sua opera\u00e7\u00e3o:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \\&quot;wp-block-syntaxhighlighter-code\\&quot;\"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;oracle@oel8 oracle]$ sqlplus \/ as sysdba\n \nSQL*Plus: Release 18.0.0.0.0 - Production on Fri Mar 12 05:38:12 2021\nVersion 18.3.0.0.0\n \nCopyright (c) 1982, 2018, Oracle.  All rights reserved.\n \n \nConnected to:\nOracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\nVersion 18.3.0.0.0\n \nSQL&gt; SHO PARAMETER RECOVERY\n \nNAME                                 TYPE        VALUE\n------------------------------------ ----------- ------------------------------\ndb_recovery_file_dest                string      \/oracle\/fra\ndb_recovery_file_dest_size           big integer 700M\nrecovery_parallelism                 integer     0\nremote_recovery_file_dest            string\nSQL&gt;\n<\/pre><\/div>\n\n\n<p>Aumentando o valor da FRA:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \\&quot;wp-block-syntaxhighlighter-code\\&quot;\"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nSQL&gt; ALTER SYSTEM SET db_recovery_file_dest_size=2G;\n \nSystem altered.\n<\/pre><\/div>\n\n\n<p>Executando novamente o backup, agora com sucesso:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \\&quot;wp-block-syntaxhighlighter-code\\&quot;\"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;oracle@oel8 oracle]$ rman target \/\n \nRecovery Manager: Release 18.0.0.0.0 - Production on Fri Mar 12 05:41:07 2021\nVersion 18.3.0.0.0\n \nCopyright (c) 1982, 2018, Oracle and\/or its affiliates.  All rights reserved.\n \nconnected to target database: RMANDB (DBID=3825250984, not open)\n \nRMAN&gt; BACKUP DATABASE;\n \nStarting backup at 2021-03-12:05:41:16\nusing target database control file instead of recovery catalog\nallocated channel: ORA_DISK_1\nchannel ORA_DISK_1: SID=7 device type=DISK\nchannel ORA_DISK_1: starting full datafile backup set\nchannel ORA_DISK_1: specifying datafile(s) in backup set\ninput datafile file number=00001 name=\/oracle\/dados\/RMANDB\/datafile\/o1_mf_system_h8nynqfx_.dbf\ninput datafile file number=00003 name=\/oracle\/dados\/RMANDB\/datafile\/o1_mf_sysaux_h8nyq35q_.dbf\ninput datafile file number=00004 name=\/oracle\/dados\/RMANDB\/datafile\/o1_mf_undotbs1_h8nyrjdr_.dbf\ninput datafile file number=00005 name=\/oracle\/dados\/RMANDB\/datafile\/ts_cortex_catalog.dbf\ninput datafile file number=00007 name=\/oracle\/dados\/RMANDB\/datafile\/o1_mf_users_h8nyrkn7_.dbf\nchannel ORA_DISK_1: starting piece 1 at 2021-03-12:05:41:18\nchannel ORA_DISK_1: finished piece 1 at 2021-03-12:05:42:23\npiece handle=\/oracle\/fra\/RMANDB\/backupset\/2021_03_12\/o1_mf_nnndf_TAG20210312T054118_j4pb9gv3_.bkp tag=TAG20210312T054118 comment=NONE\nchannel ORA_DISK_1: backup set complete, elapsed time: 00:01:05\nFinished backup at 2021-03-12:05:42:23\n \nStarting Control File and SPFILE Autobackup at 2021-03-12:05:42:24\npiece handle=\/oracle\/fra\/RMANDB\/autobackup\/2021_03_12\/o1_mf_s_1066973440_j4pbck5m_.bkp comment=NONE\nFinished Control File and SPFILE Autobackup at 2021-03-12:05:42:27\n \nRMAN&gt;\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>Ao tentar realizar o backup do banco de dados, a seguinte mensagem \u00e9 reportada: \u00c9 poss\u00edvel notarmos que a FRA est\u00e1 limitada at\u00e9 700MB, e por conta disso o RMAN n\u00e3o consegue concluir a sua opera\u00e7\u00e3o: Aumentando o valor da FRA: Executando novamente o backup, agora com sucesso:<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-2588","post","type-post","status-publish","format-standard","hentry","category-backup-recovery"],"_links":{"self":[{"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/posts\/2588","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/comments?post=2588"}],"version-history":[{"count":1,"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/posts\/2588\/revisions"}],"predecessor-version":[{"id":9238,"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/posts\/2588\/revisions\/9238"}],"wp:attachment":[{"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/media?parent=2588"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/categories?post=2588"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/swiv.com.br\/index.php\/wp-json\/wp\/v2\/tags?post=2588"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}