diff --git a/user_guide/database/utilities.html b/user_guide/database/utilities.html
index 5e59358..3af4944 100644
--- a/user_guide/database/utilities.html
+++ b/user_guide/database/utilities.html
@@ -242,7 +242,13 @@
 

 <p>Permits you to backup your full database or individual tables.  The backup data can be compressed in either Zip or Gzip format,

 and it can be downloaded to your desktop, archived to your

-server, returned as a string, or simply displayed. Example:</p>

+server, returned as a string, or simply displayed.</p>

+

+<p>Note: Due to the limited execution time and memory available to PHP, backing up very large

+databases may not be possible.  If your database is very large you might need to backup directly from your SQL server 

+via the command line, or have your server admin do it for you if you do not have root privileges.</p>

+

+<p>Usage example:</p>

 

 <code>$this->dbutil->backup();<br /><br />

 // When no parameters are passed the full database is backed up and downloaded to your desktop as a Gzip file.

@@ -267,6 +273,13 @@
 $this->dbutil->backup($prefs);

 </code>

 

+

+<p class="important"><strong>VERY IMPORTANT:</strong> If you are using the <dfn>download</dfn> action to send the file to your desktop,

+DO NOT display any data in the controller in which you are triggering the backup.  Since Code Igniter buffers all output, any data

+sent to the browser will be included in your export file.  This issue ONLY applies to downloads.  If you are using any other action

+you can display data in your controller.</p>

+

+

 <h3>Description of Backup Preferences</h3>

 

 <table cellpadding="0" cellspacing="1" border="0" style="width:100%" class="tableborder">

@@ -297,11 +310,6 @@
 </tr>

 </table>

 

-<p class="important"><strong>VERY IMPORTANT:</strong> If you are using the <dfn>download</dfn> action to send the file to your desktop,

-DO NOT display any data in the controller in which you are triggering the backup.  Since Code Igniter buffers all output, any data

-sent to the browser will be included in your export file.  This issue ONLY applies to downloads.  If you are using any other action

-you can display data in your controller.</p>

-

 

 </div>

 <!-- END CONTENT -->