You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by kr...@apache.org on 2010/06/29 14:19:17 UTC

svn commit: r958944 - /db/derby/docs/trunk/src/ref/rrefdisablelogproc.dita

Author: kristwaa
Date: Tue Jun 29 12:19:17 2010
New Revision: 958944

URL: http://svn.apache.org/viewvc?rev=958944&view=rev
Log:
DERBY-4722: Error in SQL example of SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE

Corrected invalid procedure name.

Fix contributed by Andreas Knees (andreas at knees dot de).

Modified:
    db/derby/docs/trunk/src/ref/rrefdisablelogproc.dita

Modified: db/derby/docs/trunk/src/ref/rrefdisablelogproc.dita
URL: http://svn.apache.org/viewvc/db/derby/docs/trunk/src/ref/rrefdisablelogproc.dita?rev=958944&r1=958943&r2=958944&view=diff
==============================================================================
--- db/derby/docs/trunk/src/ref/rrefdisablelogproc.dita (original)
+++ db/derby/docs/trunk/src/ref/rrefdisablelogproc.dita Tue Jun 29 12:19:17 2010
@@ -39,8 +39,8 @@ cs.setInt(1, 1);
 cs.execute();
 cs.close();</codeblock></section>
 <section><title>SQL examples</title><p>The following example disables log
-archive mode for the database and retains any existing log archive files:</p><codeblock>CALL SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE DELETE_ARCHIVED_LOG_FILES(0);</codeblock
-><p>The following example disables log archive mode for the database and deletes
-any existing log archive files:</p><codeblock>CALL SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE DELETE_ARCHIVED_LOG_FILES(1);</codeblock></section>
+archive mode for the database and retains any existing log archive files:</p><codeblock>CALL SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE(0);</codeblock>
+<p>The following example disables log archive mode for the database and deletes
+any existing log archive files:</p><codeblock>CALL SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE(1);</codeblock></section>
 </refbody>
 </reference>