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/07/30 11:11:56 UTC

svn commit: r980694 - in /db/derby/docs/branches/10.6: ./ src/ref/rrefdisablelogproc.dita

Author: kristwaa
Date: Fri Jul 30 09:11:55 2010
New Revision: 980694

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

Merged fix from trunk (revision 958944).

Modified:
    db/derby/docs/branches/10.6/   (props changed)
    db/derby/docs/branches/10.6/src/ref/rrefdisablelogproc.dita

Propchange: db/derby/docs/branches/10.6/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Jul 30 09:11:55 2010
@@ -1 +1 @@
-/db/derby/docs/trunk:938088
+/db/derby/docs/trunk:938088,958944

Modified: db/derby/docs/branches/10.6/src/ref/rrefdisablelogproc.dita
URL: http://svn.apache.org/viewvc/db/derby/docs/branches/10.6/src/ref/rrefdisablelogproc.dita?rev=980694&r1=980693&r2=980694&view=diff
==============================================================================
--- db/derby/docs/branches/10.6/src/ref/rrefdisablelogproc.dita (original)
+++ db/derby/docs/branches/10.6/src/ref/rrefdisablelogproc.dita Fri Jul 30 09:11:55 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>