<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>V$recovery_file_dest on Oracle Scripts</title><link>https://www.oraclescripts.com/tags/vrecovery_file_dest/</link><description>Recent content in V$recovery_file_dest on Oracle Scripts</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>OracleScripts.com</copyright><lastBuildDate>Sat, 07 Mar 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://www.oraclescripts.com/tags/vrecovery_file_dest/index.xml" rel="self" type="application/rss+xml"/><item><title>Oracle Fast Recovery Area: Set db_recovery_file_dest</title><link>https://www.oraclescripts.com/post/oracle-fast-recovery-area-set-db-recovery-file-dest-and-size/</link><pubDate>Sat, 07 Mar 2026 00:00:00 +0000</pubDate><guid>https://www.oraclescripts.com/post/oracle-fast-recovery-area-set-db-recovery-file-dest-and-size/</guid><description>
&lt;h2 id="oracle-fast-recovery-area-set-db-recovery-file-dest-and-size"&gt;Oracle Fast Recovery Area: Set DB Recovery File Dest and Size&lt;/h2&gt;
&lt;p&gt;The Oracle &lt;strong&gt;Fast Recovery Area (FRA)&lt;/strong&gt; is a disk location where Oracle stores and manages files related to backup and recovery. Two dynamic initialization parameters — &lt;code&gt;db_recovery_file_dest&lt;/code&gt; and &lt;code&gt;db_recovery_file_dest_size&lt;/code&gt; — control its location and maximum size, and both can be changed without restarting the database.&lt;/p&gt;
&lt;h2 id="the-code"&gt;The Code&lt;/h2&gt;
&lt;script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1012089347386563"
crossorigin="anonymous"&gt;&lt;/script&gt;
&lt;ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-1012089347386563"
data-ad-slot="5317081938"
data-ad-format="auto"
data-full-width-responsive="true"&gt;&lt;/ins&gt;
&lt;script&gt;
(adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-fallback" data-lang="fallback"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;-- Set the database recovery directory and size
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;2&lt;/span&gt;&lt;span class="cl"&gt;-- These settings are dynamic
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;3&lt;/span&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;4&lt;/span&gt;&lt;span class="cl"&gt;ALTER SYSTEM SET db_recovery_file_dest=&amp;#39;&amp;lt;path&amp;gt;&amp;#39; SCOPE=BOTH;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;5&lt;/span&gt;&lt;span class="cl"&gt;/
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;6&lt;/span&gt;&lt;span class="cl"&gt;ALTER SYSTEM SET db_recovery_file_dest_size=&amp;lt;size&amp;gt; SCOPE=BOTH;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;7&lt;/span&gt;&lt;span class="cl"&gt;/
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-fallback" data-lang="fallback"&gt;&lt;span class="line"&gt;&lt;span class="ln"&gt;1&lt;/span&gt;&lt;span class="cl"&gt;Replace `&amp;lt;path&amp;gt;` with a valid file system path, ASM disk group, or NFS mount point, and replace `&amp;lt;size&amp;gt;` with a value like `100G`, `2T`, or `500M`.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="what-this-code-does"&gt;What This Code Does&lt;/h2&gt;
&lt;p&gt;These two commands configure the Oracle Fast Recovery Area at the system level while the database is running. The &lt;code&gt;SCOPE=BOTH&lt;/code&gt; clause means the change takes effect immediately in the running instance &lt;strong&gt;and&lt;/strong&gt; is saved to the server parameter file (SPFILE), so it persists across database restarts.&lt;/p&gt;</description></item></channel></rss>