You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@db.apache.org by rh...@apache.org on 2013/03/13 14:54:25 UTC

svn commit: r854277 [14/44] - in /websites/production/db/content/derby: docs/10.4/ja_JP/ docs/10.4/ja_JP/getstart/ docs/10.4/ja_JP/images/ docs/10.4/ja_JP/ref/ manuals/

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcreatefunctionstatement.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcreatefunctionstatement.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcreatefunctionstatement.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,211 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="CREATE FUNCTION 文" />
+<meta name="abstract" content="CREATE FUNCTION文により、式で利用できるJava関数を作成できます。" />
+<meta name="description" content="CREATE FUNCTION文により、式で利用できるJava関数を作成できます。" />
+<meta content="CREATE FUNCTION statement, CREATE FUNCTION, SQL statements, functions, creating" name="DC.subject" />
+<meta content="CREATE FUNCTION statement, CREATE FUNCTION, SQL statements, functions, creating" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj95081.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj20937.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefcreateprocedurestatement.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj31580.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqljcreatesynonym.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj24513.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj43125.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj15446.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefcreatefunctionstatement" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>CREATE FUNCTION 文</title>
+</head>
+<body id="rrefcreatefunctionstatement"><a name="rrefcreatefunctionstatement"><!-- --></a>
+
+
+<h1 class="topictitle1">CREATE FUNCTION 文</h1>
+
+
+
+<div><p>CREATE FUNCTION文により、式で利用できるJava関数を作成できます。</p>
+
+<div class="section"><p>関数の所有者および、<a href="rrefattrib26867.html#rrefattrib26867">データベースの所有者</a>は、自動的に関数へのEXECUTE権限を手に入れます。加えて、他のユーザへの権限付与の権限も手に入れます。関数とデータベースの所有者から、関数の実行権限を剥奪することはできません。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong>CREATE FUNCTION <em><a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrprofunctionname">関数名</a></em> ( [ <a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrprofunctionparameter">関数の引数</a> 
+   [, <a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrprofunctionparameter">FunctionParameter</a>] ] * ) RETURNS <a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrfunctionreturntype">返却データ型</a> [ <a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrprofunctionelement">関数の要素</a> ] *</strong></pre>
+</div>
+
+<div class="example" id="rrefcreatefunctionstatement__rrefcrprofunctionname"><a name="rrefcreatefunctionstatement__rrefcrprofunctionname"><!-- --></a><h4 class="sectiontitle">関数名</h4><pre><strong>[ <em><a href="rrefschemaname.html#rrefschemaname">スキーマ名</a>.</em> ] <em><a href="crefsqlj34834.html#crefsqlj34834">SQL92識別子</a></em></strong></pre>
+
+<p>スキーマ名が与えられなかった場合、デフォルトは現在のスキーマとなります。限定された関数名にて、スキーマ名はSYSで始まってはなりません。</p>
+</div>
+
+<div class="example" id="rrefcreatefunctionstatement__rrefcrprofunctionparameter"><a name="rrefcreatefunctionstatement__rrefcrprofunctionparameter"><!-- --></a><h4 class="sectiontitle">関数の引数</h4><pre><strong>[ 引数名 ] <em>データ型</em></strong></pre>
+</div>
+
+<div class="section"><p>引数名は関数にて一意である必要があります。</p>
+<p><em>データ型</em>の構文は、<a href="crefsqlj31068.html#crefsqlj31068">データ型</a>に書かれています。</p>
+
+<div class="note"><span class="notetitle">注: </span>CREATE FUNCTION文のパラメータにできないデータ型があります。それは、BLOB、CLOB、LONG VARCHAR、LONG VARCHAR FOR BIT DATAやXML等です。</div>
+</div>
+
+
+<div class="example" id="rrefcreatefunctionstatement__rrefcrfunctionreturntype"><a name="rrefcreatefunctionstatement__rrefcrfunctionreturntype"><!-- --></a><h4 class="sectiontitle">返却データ型</h4>
+<pre><strong><a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrfunctiontabletype">表型</a> | <em>データ型</em></strong></pre>
+</div>
+
+<div class="section"><p>データ型の構文は<a href="crefsqlj31068.html#crefsqlj31068">データ型</a>に記述されています。</p>
+</div>
+
+
+<div class="example" id="rrefcreatefunctionstatement__rrefcrfunctiontabletype"><a name="rrefcreatefunctionstatement__rrefcrfunctiontabletype"><!-- --></a><h4 class="sectiontitle">表型</h4>
+<pre><strong>TABLE( <a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrfunctioncolelement">列要素</a> [, <a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrfunctioncolelement">列要素</a> ]* )</strong></pre>
+</div>
+
+<div class="section"><p>表関数の返り値の型です。現在利用できるのはDerbyの表関数の形式のみです。
+これらはJDBCの<em>ResultSet</em>を返す関数です。
+より詳細な情報は、<cite><span><em>Derby ディベロッパーズ ガイド</em></span></cite>に記述された「Derbyの表関数のプログラミング」を参照してください。</p>
+</div>
+
+
+<div class="example" id="rrefcreatefunctionstatement__rrefcrfunctioncolelement"><a name="rrefcreatefunctionstatement__rrefcrfunctioncolelement"><!-- --></a><h4 class="sectiontitle">列要素</h4>
+<pre><strong><em><a href="crefsqlj34834.html#crefsqlj34834">SQL92識別子</a></em> <em>データ型</em></strong></pre>
+</div>
+
+<div class="section"><p><em>データ型</em>の構文は、<a href="crefsqlj31068.html#crefsqlj31068">データ型</a>に記述されています。</p>
+
+<div class="note"><span class="notetitle">注: </span>表関数から返却する情報の列の型を、XMLとすることはできません。</div>
+</div>
+
+
+<div class="example" id="rrefcreatefunctionstatement__rrefcrprofunctionelement"><a name="rrefcreatefunctionstatement__rrefcrprofunctionelement"><!-- --></a><h4 class="sectiontitle">関数の要素</h4> <pre><strong> {
+| LANGUAGE { JAVA }
+| EXTERNAL NAME <em>文字列</em>
+| PARAMETER STYLE <a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrfunctionparameterstyle">パラメータの種類</a>
+| { NO SQL | CONTAINS SQL | READS SQL DATA }
+| { RETURNS NULL ON NULL INPUT | CALLED ON NULL INPUT }
+ }</strong></pre>
+</div>
+
+<div class="section"><h4 class="sectiontitle">LANGUAGE</h4><p><strong>JAVA</strong>- 関数はJavaのクラスにあるpublic staticなメソッドとして呼ばれます。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">EXTERNAL NAME <em>string</em></h4><div class="p"><em>文字列</em>により、関数が実行されたときに呼ばれるJavaのメソッドが記述されます。この文字列は次の書式です。<pre>クラス名.メソッド名</pre>
+これは空白を含んではなりません。</div>
+</div>
+
+
+<div class="example" id="rrefcreatefunctionstatement__rrefcrfunctionparameterstyle"><a name="rrefcreatefunctionstatement__rrefcrfunctionparameterstyle"><!-- --></a><h4 class="sectiontitle">パラメータの種類</h4>
+<pre><strong>JAVA | DERBY_JDBC_RESULT_SET</strong></pre>
+</div>
+
+<div class="section">
+<p>
+関数はJava言語およびSQLルーチンの仕様に沿って、引数を値渡しします。INOUTとOUTの引数は変更後の値を返せるように、要素がひとつの配列として渡されます。さらに結果セットはJavaのメソッドのパラメータを経て、配列に渡したjava.sql.ResultSet[]型の要素により返すことができます。</p>
+<p><span>Derby</span> は長い列の型(これは例えばLong VarcharやBLOB等のことです。)をサポートしません。
+これらの長い列の型を使おうとすると、エラーが発生します。</p>
+
+<p>Derbyの表関数の場合、PARAMETER STYLEは常にDERBY_JDBC_RESULT_SETで、これ以外の値とすることはできません。表関数とは<a href="rrefcreatefunctionstatement.html#rrefcreatefunctionstatement__rrefcrfunctiontabletype">表型</a>を返す関数で、JDBCの<em>ResultSet</em>を返すメソッドに対応します。
+それ以外の場合は、PARAMETER STYLEは常にJAVAです。
+</p>
+
+</div>
+
+<div class="section"><h4 class="sectiontitle">NO SQL, CONTAINS SQL, READS SQL DATA</h4> <p>により関数がSQLを発行するか否か。もしするならどのようなSQLを発行するかを記述します。</p>
+ <dl>
+
+<dt class="dlterm">CONTAINS SQL</dt>
+
+<dd>関数により変更も更新も行わないSQL文を実行できます。
+関数にて許可されていない文が実行された場合、違うというエラーが返ります。</dd>
+
+
+<dt class="dlterm">NO SQL</dt>
+
+<dd>関数はSQLを実行できません。</dd>
+
+
+<dt class="dlterm">READS SQL DATA </dt>
+
+<dd>関数は情報の更新を行わないSQLを実行することができます。
+関数にて許可されていない文が実行された場合、違うというエラーが返ります。
+これは既定です。</dd>
+
+</dl>
+</div>
+
+<div class="section"><h4 class="sectiontitle">RETURNS NULL ON NULL INPUT or CALLED ON NULL INPUT</h4>
+<div class="p">入力の引数をnullにして関数が呼ばれるかをあらわします。その場合はnull値と扱います。<dl>
+<dt class="dlterm">RETURNS NULL ON NULL INPUT</dt>
+
+<dd>入力の引数のうちいずれかがnullであった場合、関数は呼ばれません。そのときの帰り値はnullとなります。</dd>
+
+
+<dt class="dlterm">CALLED ON NULL INPUT</dt>
+
+<dd>関数は入力の引数をnullにして呼ぶことができます。この場合は関数がnullの引数をとっても動作するようにコーディングされていなければなりません。関数はnullあるいはそれ以外の値を返すことができます。これは既定です。</dd>
+
+</dl>
+</div>
+</div>
+
+<div class="section"><div class="p">関数の要素はどのような順序で現れてもかまいませんが、それぞれの要素は一回しか現れてはなりません。関数の定義にはこれらの要素が必要です。<ul>
+<li><strong>LANGUAGE</strong></li>
+
+<li><strong>PARAMETER STYLE</strong></li>
+
+<li><strong>EXTERNAL NAME</strong></li>
+
+</ul>
+</div>
+</div>
+
+<div class="section"><h4 class="sectiontitle">Example</h4><pre><strong>CREATE FUNCTION TO_DEGREES(RADIANS DOUBLE) RETURNS DOUBLE
+PARAMETER STYLE JAVA NO SQL LANGUAGE JAVA
+EXTERNAL NAME 'java.lang.Math.toDegrees'</strong></pre>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj95081.html" title="">CREATE 文</a></div>
+</div>
+<div class="relref"><strong>関連資料</strong><br />
+<div><a href="rrefsqlj20937.html" title="">CREATE INDEX 文</a></div>
+<div><a href="rrefcreateprocedurestatement.html" title="">CREATE PROCEDURE 文</a></div>
+<div><a href="rrefsqlj31580.html" title="">CREATE SCHEMA 文</a></div>
+<div><a href="rrefsqljcreatesynonym.html" title="">CREATE SYNONYM 文</a></div>
+<div><a href="rrefsqlj24513.html" title="">CREATE TABLE 文</a></div>
+<div><a href="rrefsqlj43125.html" title="">CREATE TRIGGER 文</a></div>
+<div><a href="rrefsqlj15446.html" title="">CREATE VIEW 文</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcreatefunctionstatement.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcreateprocedurestatement.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcreateprocedurestatement.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcreateprocedurestatement.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,163 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="CREATE PROCEDURE 文" />
+<meta content="CREATE PROCEDURE statement, CREATE PROCEDURE, SQL statements, procedures, creating" name="DC.subject" />
+<meta content="CREATE PROCEDURE statement, CREATE PROCEDURE, SQL statements, procedures, creating" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj95081.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefcreatefunctionstatement.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj20937.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj31580.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqljcreatesynonym.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj24513.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj43125.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj15446.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefcreateprocedurestatement" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>CREATE PROCEDURE 文</title>
+</head>
+<body id="rrefcreateprocedurestatement"><a name="rrefcreateprocedurestatement"><!-- --></a>
+
+
+<h1 class="topictitle1">CREATE PROCEDURE 文</h1>
+
+
+<div>
+<div class="section"><p>CREATE PROCEDURE文によりCALL PROCEDUREで実行可能な、Javaの手続きを作成できます。</p>
+<p>手続きや<a href="rrefattrib26867.html#rrefattrib26867">データベースの所有者</a>は自動的にEXECUTE権限を持つものとされ、また他のユーザに権限を付与することができます。EXECUTE権限は手続きやデータベースの所有者から剥奪できません。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4><pre><strong>CREATE PROCEDURE <em><a href="rrefcreateprocedurestatement.html#rrefcreateprocedurestatement__rrefcrproprocedurename">手続名</a></em> ( [ <a href="rrefcreateprocedurestatement.html#rrefcreateprocedurestatement__rrefcrproprocedureparameter">手続きの引数</a>
+   [, <a href="rrefcreateprocedurestatement.html#rrefcreateprocedurestatement__rrefcrproprocedureparameter">手続きの引数</a>] ] * )
+[ <a href="rrefcreateprocedurestatement.html#rrefcreateprocedurestatement__rrefcrproprocedureelement">手続きの要素</a> ] *</strong></pre>
+</div>
+
+<div class="example" id="rrefcreateprocedurestatement__rrefcrproprocedurename"><a name="rrefcreateprocedurestatement__rrefcrproprocedurename"><!-- --></a><h4 class="sectiontitle">手続名</h4><pre><strong>[ <em><a href="rrefschemaname.html#rrefschemaname">スキーマ名</a>.</em> ] <em><a href="crefsqlj34834.html#crefsqlj34834">SQL92識別子</a></em></strong></pre>
+</div>
+
+<div class="section"><p>スキーマ名が指定されなかった場合、現在のスキーマが既定となります。手続名を限定する場合、スキーマ名はSYSで始まってはなりません。</p>
+</div>
+
+<div class="example" id="rrefcreateprocedurestatement__rrefcrproprocedureparameter"><a name="rrefcreateprocedurestatement__rrefcrproprocedureparameter"><!-- --></a><h4 class="sectiontitle">手続の引数</h4> <pre><strong>[ { IN | OUT | INOUT } ] [ 引数名 ] <em>データ型</em></strong></pre>
+</div>
+
+<div class="section"><p>引数の既定はINです。引数名は手続にて一意である必要があります。</p>
+
+<p><em>データ型</em>の構文は<a href="crefsqlj31068.html#crefsqlj31068">データ型</a>に記述されています。</p>
+<div class="note"><span class="notetitle">注: </span>BLOB、CLOB、LONG VARCHAR、LONG VARCHAR FOR BIT DATAやXMLのようなデータ型はCREATE PROCEDURE文にて引数と定義できません。</div>
+</div>
+
+<div class="example" id="rrefcreateprocedurestatement__rrefcrproprocedureelement"><a name="rrefcreateprocedurestatement__rrefcrproprocedureelement"><!-- --></a><h4 class="sectiontitle">手続の要素</h4> <pre><strong> { 
+| [ DYNAMIC ] RESULT SETS <em><a href="rrefsqlj10696.html#rrefsqlj10696">INTEGER</a></em>
+| LANGUAGE { JAVA }
+| EXTERNAL NAME <em>string</em>
+| PARAMETER STYLE JAVA
+| { NO SQL | MODIFIES SQL DATA | CONTAINS SQL | READS SQL DATA }
+ }
+</strong></pre>
+</div>
+
+<div class="section"><h4 class="sectiontitle">DYNAMIC RESULT SETS <em>数値</em></h4> <p>手続に見積もられる結果の上限を与えます。既定は結果無し(0)です。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">LANGUAGE</h4> <p><strong>JAVA</strong>- 手続はJavaのクラスにあるpublic staticなメソッドとして呼ばれます。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">EXTERNAL NAME <em>文字列</em></h4> <div class="p"><em>文字列</em> により手続が実施されたときのJavaのメソッドが記述されます。これは次の書式となります。<pre>クラス名.メソッド名</pre>
+この名前には空白があってはなりません。</div>
+</div>
+
+<div class="section"><h4 class="sectiontitle">PARAMETER STYLE</h4> <p><strong>JAVA</strong> - 手続はJavaとSQLルーチンの仕様に沿って、値渡しにより引数を扱います。INOUTおよびOUTの引数は値を呼び出し側に戻せるように、要素を一つだけ持つ配列により渡されます。結果はJavaのメソッドにjava.sql.ResultSet[]の型で追加された、唯一つの要素を持つパラメータにより呼び出し側に戻されます。</p>
+ <p><span>Derby</span> は長い列の型(例えばLong Varchar, BLOB等のことです。)をサポートしません。
+もしこれらの長い列の型のうちの一つを使うと例外が発生します。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">NO SQL, CONTAINS SQL, READS SQL DATA, MODIFIES SQL DATA </h4> <p>
+手続がSQL文を発行するか否か、またするならばどのようなSQL文を発行するかを表します。</p>
+ <dl>
+
+<dt class="dlterm">CONTAINS SQL</dt>
+
+<dd>読み込みも変更も行わないSQL文を手続に持たせることができることを表します。サポートされていない文では異なるというエラーが発生します。これは既定です。</dd>
+
+
+<dt class="dlterm">NO SQL</dt>
+
+<dd>手続ではいかなるSQL文も実行できません。</dd>
+
+
+<dt class="dlterm">READS SQL DATA </dt>
+
+<dd>
+変更を行わないSQL文を手続に持たせることができることをあらわします。サポートされていない文では異なるというエラーが発生します。</dd>
+
+
+<dt class="dlterm">MODIFIES SQL DATA</dt>
+
+<dd>手続でサポートされていない、あらゆるSQL文を手続から実行できることを表します。</dd>
+
+</dl>
+</div>
+
+<div class="section"><div class="p">手続の要素はどのような順序でも出現することができますが、それぞれの種類の要素は一度までしか現れてはなりません。手続にはこれらの定義が無ければなりません。<ul>
+<li><strong>LANGUAGE</strong></li>
+
+<li><strong>PARAMETER STYLE</strong></li>
+
+<li><strong>EXTERNAL NAME</strong></li>
+
+</ul>
+</div>
+</div>
+
+<div class="section"><h4 class="sectiontitle">例</h4> <pre><strong>CREATE PROCEDURE SALES.TOTAL_REVENUE(IN S_MONTH INTEGER,
+IN S_YEAR INTEGER, OUT TOTAL DECIMAL(10,2))
+PARAMETER STYLE JAVA READS SQL DATA LANGUAGE JAVA EXTERNAL NAME 
+'com.acme.sales.calculateRevenueByMonth'</strong></pre>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj95081.html" title="">CREATE 文</a></div>
+</div>
+<div class="relref"><strong>関連資料</strong><br />
+<div><a href="rrefcreatefunctionstatement.html" title="CREATE FUNCTION文により、式で利用できるJava関数を作成できます。">CREATE FUNCTION 文</a></div>
+<div><a href="rrefsqlj20937.html" title="">CREATE INDEX 文</a></div>
+<div><a href="rrefsqlj31580.html" title="">CREATE SCHEMA 文</a></div>
+<div><a href="rrefsqljcreatesynonym.html" title="">CREATE SYNONYM 文</a></div>
+<div><a href="rrefsqlj24513.html" title="">CREATE TABLE 文</a></div>
+<div><a href="rrefsqlj43125.html" title="">CREATE TRIGGER 文</a></div>
+<div><a href="rrefsqlj15446.html" title="">CREATE VIEW 文</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcreateprocedurestatement.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcrsrgpc1.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcrsrgpc1.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcrsrgpc1.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,117 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="getProcedureColumnsから返る結果セットにある列について" />
+<meta scheme="URI" name="DC.Relation" content="rrefjdbc15905.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefdmrs.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefgpc1.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefpgc1.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefdmdfns1.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefcrsrgpc1" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>getProcedureColumnsから返る結果セットにある列について</title>
+</head>
+<body id="rrefcrsrgpc1"><a name="rrefcrsrgpc1"><!-- --></a>
+
+
+<h1 class="topictitle1"><strong><em>getProcedureColumns</em></strong>から返る結果セットにある列について</h1>
+
+<div>
+<div class="section"><div class="p"><em>getProcedureColumns</em>から返る<em>ResultSet</em>の列はAPIにて既定されています。ここでは、APIにて定められていない詳細を幾つかの列について記述します。<ul>
+<li>PROCEDURE_CAT   <p><span>Derby</span>では常に「null」です。</p>
+</li>
+
+<li>PROCEDURE_SCHEM   <p>Javaの手続きのスキーマです。</p>
+</li>
+
+<li>PROCEDURE_NAME   <p>手続きの名前です。</p>
+</li>
+
+<li>COLUMN_NAME   <p>引数の名前です。(<a href="rrefpgc1.html#rrefpgc1__jdbc95532">column-Name-Pattern</a>を参照してください。)</p>
+</li>
+
+<li>COLUMN_TYPE   <p>shortで行を記述します。配列ではないメソッドの引数ならば、常に<em>DatabaseMetaData.procedureColumnIn</em>です。もし配列であるメソッドの引数なら、<em>DatabaseMetaData.procedureColumnInOut</em>です。返り値であれば、常に<em>DatabaseMetaData.procedureColumnReturn</em>です。</p>
+</li>
+
+<li>TYPE_NAME   <p><span>Derby</span>固有の型名です。</p>
+</li>
+
+<li>NULLABLE   <p>プリミティブな引数なら常に<em>DatabaseMetaData.procedureNoNulls</em>で、オブジェクトの引数なら<em>DatabaseMetaData.procedureNullable</em>です。</p>
+</li>
+
+<li>REMARKS   <p>a String describing the java type of the method parameter</p>
+</li>
+
+<li>COLUMN_DEF   <p>列の既定値を表す文字列です。(nullである場合もあります。)</p>
+</li>
+
+<li>SQL_DATA_TYPE   <p>将来利用するため、JDBCにて予約されています。</p>
+</li>
+
+<li>SQL_DATETIME_SUB   <p>将来利用するため、JDBCにて予約されています。</p>
+</li>
+
+<li>CHAR_OCTET_LENGTH   <p>文字やバイナリ列の最大長です。(他の型であれば値はNULLです。)</p>
+</li>
+
+<li>ORDINAL_POSITION   <p>手続きの入力/出力する引数への、1から始まる順番です。</p>
+</li>
+
+<li>IS_NULLABLE   <p>引数を空とすることができるかを表す文字列です。(YESなら引数にNULLを含めることができ、NOならできません。)</p>
+</li>
+
+<li>SPECIFIC_NAME   <p>スキーマにて手続きを一意に特定する名前です。</p>
+</li>
+
+<li>METHOD_ID   <p><span>Derby</span>固有の列です。</p>
+</li>
+
+<li>PARAMETER_ID  <p><span>Derby</span>固有の列です。</p>
+</li>
+
+</ul>
+</div>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="rrefjdbc15905.html" title="">java.sql.DatabaseMetaData インターフェイス</a></div>
+</div>
+<div class="relref"><strong>関連資料</strong><br />
+<div><a href="rrefdmrs.html" title="">DatabaseMetaData 結果セット</a></div>
+<div><a href="rrefgpc1.html" title="">java.sql.DatabaseMetaData.getProcedureColumnsメソッド</a></div>
+<div><a href="rrefpgc1.html" title="">getProcedureColumnsの引数</a></div>
+<div><a href="rrefdmdfns1.html" title="java.sql.DatabaseMetaData.getBestRowIdentifierメソッドは決められた優先順位で識別子を探します。必ずしも行を特定できる情報が見つかるわけではありません。">java.sql.DatabaseMetaData.getBestRowIdentifierメソッド</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcrsrgpc1.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcurrentisolation.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcurrentisolation.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcurrentisolation.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,66 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="CURRENT ISOLATION 関数" />
+<meta content="CURRENT ISOLATION function" name="DC.subject" />
+<meta content="CURRENT ISOLATION function" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj29026.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefcurrentisolation" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>CURRENT ISOLATION 関数</title>
+</head>
+<body id="rrefcurrentisolation"><a name="rrefcurrentisolation"><!-- --></a>
+
+
+<h1 class="topictitle1">CURRENT ISOLATION 関数</h1>
+
+<div>
+<div class="section">
+<p>CURRENT ISOLATIONは、現在の分離レベルをchar(2)の型で返します。値は次のいずれかです。
+""(空白)、"UR"、"CS"、"RS"あるいは"RR"。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4>
+<pre><strong>CURRENT ISOLATION</strong></pre>
+
+</div>
+
+<div class="example">
+<pre><strong>VALUES CURRENT ISOLATION</strong></pre>
+
+</div>
+</div>
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="rrefsqlj29026.html" title="">組み込み関数</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcurrentisolation.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcursorname.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcursorname.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcursorname.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,65 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="カーソル名" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj18919.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefcursorname" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>カーソル名</title>
+</head>
+<body id="rrefcursorname"><a name="rrefcursorname"><!-- --></a>
+
+
+<h1 class="topictitle1">カーソル名</h1>
+
+<div>
+<div class="section"><p><em>カーソル名</em>はカーソルをあらわします。SQL言語によりカーソルに名前を<em>割り当てる</em>ことはできません。その代わり、JDBC APIによってカーソルに名前を割り当てたり、システムが命名した名前を取得することができます。より詳細については、<cite><span><em>Derby ディベロッパーズ ガイド</em></span></cite>を参照してください。
+カーソルに名前を割り当てれば、SQL文にてその名前を使うことができます。</p>
+</div>
+
+<div class="section"><p><em>カーソル名</em>は限定できません。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong><em><a href="crefsqlj34834.html#crefsqlj34834">SQL92識別子</a></em></strong></pre>
+</div>
+
+<div class="section"><h4 class="sectiontitle">例</h4> <pre><strong>stmt.executeUpdate("UPDATE SAMP.STAFF SET COMM = " +
+"COMM + 20 " + "WHERE CURRENT OF " + ResultSet.getCursorName());</strong></pre>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj18919.html" title="">SQLの識別子</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefcursorname.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdatefunc.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdatefunc.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdatefunc.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,79 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="DATE関数" />
+<meta name="abstract" content="DATE関数は引数から日付を返します。" />
+<meta name="description" content="DATE関数は引数から日付を返します。" />
+<meta content="DATE function" name="DC.subject" />
+<meta content="DATE function" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj29026.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefdatefunc" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>DATE関数</title>
+</head>
+<body id="rrefdatefunc"><a name="rrefdatefunc"><!-- --></a>
+
+
+<h1 class="topictitle1">DATE関数</h1>
+
+
+
+<div><p>DATE関数は引数から日付を返します。</p>
+
+<div class="section"> <p>引数は日付か、タイムスタンプ、2,932,897以下の正の整数、CLOB/LONG VARCHAR/XML以外の日付かタイムスタンプとして有効あるいは長さ7の文字列です。
+ここで長さ7の文字列は、yyyynnnという書式をとります。yyyyは年を示す10進の数で、nnnは年の日を示す001から366までの10真の数です。この関数は日付を返します。これらの引数でnullをとることができるなら返り値もnullをとることができ、引数のnullなら返り値もnullです。</p>
+ 
+<div class="p">そのほか、引数のデータ型にそったルールがあります。<ul>
+<li>もし引数が日付、タイムスタンプあるいは日付やタイムスタンプとして有効な文字列であれば、引数の日付の部分が返り値となります。</li>
+
+<li>もし引数が数であるならば、その引数をnとして、西暦1年1月1日よりn-1日後の日付が返り値となります。</li>
+
+<li>もし引数が長さ7の文字列であれば、その文字列が表す日付が返り値となります。</li>
+
+</ul>
+</div>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong>DATE ( <em>式</em> )</strong></pre>
+ </div>
+
+<div class="example"> <p>この例では'1988/12/25'の内部表現が結果となります。</p>
+ <pre><strong>VALUES DATE('1988-12-25')</strong></pre>
+ </div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="rrefsqlj29026.html" title="">組み込み関数</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdatefunc.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdayfunc.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdayfunc.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdayfunc.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,68 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="DAY 関数" />
+<meta name="abstract" content="DAY関数は値のうち日付の部分を返します。" />
+<meta name="description" content="DAY関数は値のうち日付の部分を返します。" />
+<meta content="DAY function" name="DC.subject" />
+<meta content="DAY function" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="rrefsqlj29026.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefdayfunc" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>DAY 関数</title>
+</head>
+<body id="rrefdayfunc"><a name="rrefdayfunc"><!-- --></a>
+
+
+<h1 class="topictitle1">DAY 関数</h1>
+
+
+
+<div><p>DAY関数は値のうち日付の部分を返します。</p>
+
+<div class="section"> <p>引数は日付、タイムスタンプ、あるいはCLOB、LONG VARCHAR、XML以外の日付やタイムスタンプを有効に表す文字列でなければなりません。関数の結果は1から31の間の整数です。もし引数がnullを許す型であるなら結果もnullとなることがあり、もし引数がnullなら結果はnullです。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong>DAY ( <em>式</em> )</strong></pre>
+ </div>
+
+<div class="example"><h4 class="sectiontitle">例</h4> <pre><strong>values day('2006-08-02');</strong></pre>
+ <p>結果は2となります。</p>
+ </div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="rrefsqlj29026.html" title="">組み込み関数</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdayfunc.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdbmlimits.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdbmlimits.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdbmlimits.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,208 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="データベース設定値の制限" />
+<meta scheme="URI" name="DC.Relation" content="rreflimits.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefdttlimits.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefidlengthlimits.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefnumericlimits.html" />
+<meta scheme="URI" name="DC.Relation" content="rrefstringlimits.html" />
+<meta scheme="URI" name="DC.Relation" content="rreflimitsxml.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefdbmlimits" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>データベース設定値の制限</title>
+</head>
+<body id="rrefdbmlimits"><a name="rrefdbmlimits"><!-- --></a>
+
+
+<h1 class="topictitle1">データベース設定値の制限</h1>
+
+<div>
+
+<div class="tablenoborder"><table summary="" cellspacing="0" cellpadding="4" frame="border" border="1" rules="all"><caption>表 1. データベース設定値の制限. 以下の表では<span>Derby</span>における様々なデータベース設定値の制限を挙げます。</caption>
+
+<thead align="left">
+<tr>
+<th align="left" valign="top" width="50%" id="N1004E">値</th>
+
+<th align="left" valign="top" width="50%" id="N10056">制限</th>
+
+</tr>
+
+</thead>
+
+<tbody>
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">表の最大列数</td>
+
+<td valign="top" width="50%">1,012</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">ビューの最大列数</td>
+
+<td valign="top" width="50%">5,000</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">手続き引数の最大数</td>
+
+<td valign="top" width="50%">90</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">表の最大索引数</td>
+
+<td valign="top" width="50%">32,767 あるいは記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">SQL文あるいはビューから参照できる表の最大数</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">選択項目の最大数</td>
+
+<td valign="top" width="50%">1,012</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">WHERE節、HAVING節の述部の最大数</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">GROUP BY節中の列の最大数</td>
+
+<td valign="top" width="50%">32,677</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">ORDER BY節中の列の最大数</td>
+
+<td valign="top" width="50%">1,012</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">準備済み文の最大数</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">プログラムにて定義可能なカーソルの最大数</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">同時に開くことができるカーソルの最大数</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">表に定義できる制約の最大数</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">入れ子にできる副問い合わせの深さの上限</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">文中の副問い合わせ数の上限</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">作業単位で変更できる行数の上限</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">文中の制約数の上限</td>
+
+<td valign="top" width="50%">記憶領域の上限</td>
+
+</tr>
+
+<tr>
+<td valign="top" width="50%" headers="N1004E N10056 ">トリガの連鎖数の上限</td>
+
+<td valign="top" width="50%">16</td>
+
+</tr>
+
+</tbody>
+
+</table>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="rreflimits.html" title="">Derbyの制限事項</a></div>
+</div>
+<div class="relref"><strong>関連資料</strong><br />
+<div><a href="rrefdttlimits.html" title="">DATE、TIMEとTIMESTAMPの制限</a></div>
+<div><a href="rrefidlengthlimits.html" title="">識別子の長さ制限</a></div>
+<div><a href="rrefnumericlimits.html" title="Derbyでは数値に制限があります。">数値の制限</a></div>
+<div><a href="rrefstringlimits.html" title="">並びの制限</a></div>
+<div><a href="rreflimitsxml.html" title="">XMLの制限</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdbmlimits.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdeclaretemptable.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdeclaretemptable.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdeclaretemptable.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,260 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="DECLARE GLOBAL TEMPORARY TABLE 文" />
+<meta name="abstract" content="The DECLARE GLOBAL TEMPORARY TABLE statement defines a temporary table for the current connection." />
+<meta name="description" content="The DECLARE GLOBAL TEMPORARY TABLE statement defines a temporary table for the current connection." />
+<meta content="DECLARE GLOBAL TEMPORARY TABLE statement, tables, temporary, DECLARE GLOBAL TEMPORARY TABLE, SQL statements" name="DC.subject" />
+<meta content="DECLARE GLOBAL TEMPORARY TABLE statement, tables, temporary, DECLARE GLOBAL TEMPORARY TABLE, SQL statements" name="keywords" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlj39374.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefdeclaretemptable" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>DECLARE GLOBAL TEMPORARY TABLE 文</title>
+</head>
+<body id="rrefdeclaretemptable"><a name="rrefdeclaretemptable"><!-- --></a>
+
+
+<h1 class="topictitle1">DECLARE GLOBAL TEMPORARY TABLE 文</h1>
+
+
+
+<div><p>The DECLARE GLOBAL TEMPORARY TABLE statement defines a temporary
+table for the current connection. </p>
+
+<div class="section"><p>これらの表はシステムカタログにあるものではなく永続的なものではありません。一時表は作成した接続の期間のみ存在して、他の接続から参照することはできません。接続が閉じるとき、
+表中の行は削除され、一時表に関するメモリ上の記述は破棄されます。</p>
+</div>
+
+<div class="section"><div class="p">一時表は以下のような場合に便利です。<ul>
+<li>表の構造がアプリケーションを使う前では分からない場合</li>
+
+<li>他のユーザが同様な構造の表を必要としない場合</li>
+
+<li>アプリケーションを使っている場合のみ、一時表の情報が必要な場合</li>
+
+<li>システムカタログにロックを持たずに、表の定義と破棄が可能な場合</li>
+
+</ul>
+</div>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4> <pre><strong>DECLARE GLOBAL TEMPORARY TABLE <em><a href="rrefdeclaretemptable.html#rrefdeclaretemptable__tempcoltablename">表名</a></em>
+    { 列定義 [ , 列定義 ] * }
+[ ON COMMIT {DELETE | PRESERVE} ROWS ]  
+NOT LOGGED [ON ROLLBACK DELETE ROWS]
+ </strong></pre>
+</div>
+
+<div class="section" id="rrefdeclaretemptable__tempcoltablename"><a name="rrefdeclaretemptable__tempcoltablename"><!-- --></a><h4 class="sectiontitle">表名</h4>
+<p>一時表の名前です。SESSION以外のスキーマ名が指定された場合、エラーが発生します。(SQLSTATE 428EK)
+スキーマ名が指定されなかった場合、SESSIONがあてられます。
+複数の接続で同じ名前の一時表を作ることができます。なぜならそれぞれの接続は個々に一意な表の記述子を持つからです。</p>
+
+<p>SESSIONを永続的な表のスキーマとして使ってもエラーにはなりませんが推奨しません。
+SESSIONというスキーマ名は一時表のスキーマ用に予約されています。</p>
+</div>
+
+<div class="section" id="rrefdeclaretemptable__tempcolcolumndef"><a name="rrefdeclaretemptable__tempcolcolumndef"><!-- --></a><h4 class="sectiontitle">列定義</h4>
+<p><samp class="codeph">列定義</samp>の詳細については<a href="rrefsqlj30540.html#rrefsqlj30540">列定義</a>の<samp class="codeph">CREATE TABLE</samp>を参照してください。
+<samp class="codeph">DECLARE GLOBAL
+TEMPORARY TABLE</samp>では<samp class="codeph">列定義</samp>に<samp class="codeph">発番列仕様</samp>は不可能です。</p>
+</div>
+
+<div class="section" id="rrefdeclaretemptable__rreftemptabledatatype"><a name="rrefdeclaretemptable__rreftemptabledatatype"><!-- --></a><h4 class="sectiontitle">データ型</h4>
+<div class="p">可能なデータ型は以下のとおりです。<ul>
+<li>BIGINT</li>
+
+<li>CHAR</li>
+
+<li>DATE</li>
+
+<li>DECIMAL</li>
+
+<li>DOUBLE</li>
+
+<li>DOUBLE PRECISION</li>
+
+<li>FLOAT</li>
+
+<li>INTEGER</li>
+
+<li>NUMERIC</li>
+
+<li>REAL</li>
+
+<li>SMALLINT</li>
+
+<li>TIME</li>
+
+<li>TIMESTAMP</li>
+
+<li>VARCHAR</li>
+
+</ul>
+</div>
+</div>
+
+<div class="section" id="rrefdeclaretemptable__rreftemptableoncommit"><a name="rrefdeclaretemptable__rreftemptableoncommit"><!-- --></a><h4 class="sectiontitle">ON COMMIT</h4>
+<p>COMMITが行われたときのアクションを指定します。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">DELETE ROWS</h4>
+<p>表に開いたカーソルが無ければ、表中の全ての行が削除されます。これはON COMMITの既定です。
+もしON ROLLBACK DELETE ROWSを指定した場合は、一時表が使われた場合のみ全ての行が削除されます。
+ON COMMIT DELETE ROWSを指定した場合は、一時表が使われなかった場合でも表の行が削除されます(開いたカーソルが無かった場合です。)。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">PRESERVE ROWS</h4><p>表の行は留め置かれます。</p>
+</div>
+
+<div class="section" id="rrefdeclaretemptable__rreftemptablenotlogged"><a name="rrefdeclaretemptable__rreftemptablenotlogged"><!-- --></a><h4 class="sectiontitle">NOT LOGGED</h4>
+<p>
+トランザクションがロールバックされたとき、一時表に行われるアクションを指定します。
+ROLLBACK(あるいはROLLBACK TO SAVEPOINT)が行われると、作業単位(もしくはセーブポイント)にて表が作られていれば、その表は破棄されます。もし作業単位(もしくはセーブポイント)にて表が破棄された場合、行のない表が復元されます。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">ON ROLLBACK DELETE ROWS</h4> 
+<p>これはNOT LOGGEDの既定です。NOT LOGGED [ON ROLLBACK DELETE ROWS ]]により、ROLLBACKあるいはROLLBACK TO SAVEPOINTが行われたとき一時表に行われる処理が指定されます。もし表の情報が変更されていれば、全行が削除されます。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">例</h4><pre><strong>set schema myapp;
+
+create table t1(c11 int, c12 date);
+
+declare global temporary table SESSION.t1(c11 int) not logged;</strong>
+-- 一時表はSESSIONスキーマにしか置かれないので、
+-- SESSIONによる限定は冗長です。
+<strong>declare global temporary table t2(c21 int) not logged;</strong> 
+-- 一時表はSESSIONスキーマにしか置かれないので、
+-- この例ではSESSIONにより限定しません。
+
+<strong>insert into SESSION.t1 values (1); </strong>
+-- 現在のスキーマが"myapp."なので、一時表を使うにはSESSIONによる限定が必須です。
+
+<strong>select * from t1;</strong> 
+-- 表がSESSIONにより限定されていないので、
+-- このselect文の"myapp.t1"は実表を参照します。
+
+</pre>
+ <div class="note"><span class="notetitle">注: </span>一時表はSESSIONスキーマにのみ定義できます。
+ユーザはSESSIONという名前の実スキーマを定義するべきではありません。</div>
+
+<div class="p">次のDB2 UDBにて可能なDECLARE GLOBAL TEMPORARY TABLE関数は、<span>Derby</span>にて使えません。<ul>
+<li>IDENTITY column-options </li>
+
+<li>IDENTITY attribute in copy-options</li>
+
+<li>AS (fullselect) DEFINITION ONLY</li>
+
+<li>NOT LOGGED ON ROLLBACK PRESERVE ROWS</li>
+
+<li>IN tablespace-name</li>
+
+<li>PARTITIONING KEY</li>
+
+<li>WITH REPLACE </li>
+
+</ul>
+ </div>
+</div>
+
+<div class="section"><h4 class="sectiontitle">Declared Global Temporary Tablesの制限事項</h4> 
+<p><span>Derby</span>では一時表に次の機能を提供していません。
+これらの機能の幾つかは一時表特有のものであり、幾つかは<span>Derby</span>特有のものです。</p>
+
+<div class="p">以下の文では一時表を指定できません。<ul>
+<li>ALTER TABLE </li>
+
+<li>CREATE INDEX</li>
+
+<li>CREATE SYNONYM</li>
+
+<li>CREATE TRIGGER</li>
+
+<li>CREATE VIEW</li>
+
+<li>GRANT</li>
+
+<li>LOCK TABLE</li>
+
+<li>RENAME</li>
+
+<li>REVOKE</li>
+
+</ul>
+</div>
+
+<p>一時表には次の機能を使えません。</p>
+<ul>
+<li>SESSIONスキーマにある表(実表と一時表を含みます)への別名、トリガ、ビュー</li>
+
+<li>SESSIONスキーマにある表を参照する文のキャッシュ</li>
+
+<li>一時表は外部キー制約や主キー制約で指定できない。</li>
+
+<li>トリガされるSQL文では一時表を参照できません。</li>
+
+<li>列のチェック制約</li>
+
+<li>発番列仕様</li>
+
+<li>一時表へのインポート</li>
+
+</ul>
+ <p>一時表への挿入、更新、削除の文にてエラーが起きた場合、一時表の全ての行は削除されます。</p>
+
+<div class="p">一時表にて以下のデータ型は利用できません。<ul>
+<li>BLOB</li>
+
+<li>CHAR FOR BIT DATA</li>
+
+<li>CLOB</li>
+
+<li>LONG VARCHAR</li>
+
+<li>LONG VARCHAR FOR BIT DATA</li>
+
+<li>VARCHAR FOR BIT DATA</li>
+
+<li>XML</li>
+
+</ul>
+</div>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlj39374.html" title="">文</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdeclaretemptable.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdisablelogproc.html
==============================================================================
--- websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdisablelogproc.html (added)
+++ websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdisablelogproc.html Wed Mar 13 13:54:17 2013
@@ -0,0 +1,82 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="ja" xml:lang="ja">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
+<meta name="copyright" content="(C) Copyright 2005" />
+<meta name="DC.rights.owner" content="(C) Copyright 2005" />
+<meta content="public" name="security" />
+<meta content="index,follow" name="Robots" />
+<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
+<meta content="reference" name="DC.Type" />
+<meta name="DC.Title" content="SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODEシステム手続き" />
+<meta scheme="URI" name="DC.Relation" content="crefsqlbuiltinsystemprocedures.html" />
+<meta content="XHTML" name="DC.Format" />
+<meta content="rrefdisablelogproc" name="DC.Identifier" />
+<meta content="ja" name="DC.Language" />
+<link href="/export/home/tmp/derby/docs-10.4/out/ja_JP/reftemp/commonltr.css" type="text/css" rel="stylesheet" />
+<title>SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODEシステム手続き</title>
+</head>
+<body id="rrefdisablelogproc"><a name="rrefdisablelogproc"><!-- --></a>
+
+
+<h1 class="topictitle1">SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODEシステム手続き</h1>
+
+<div>
+<div class="section"><p><samp class="codeph">SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE</samp>システム手続きにより、ログアーカイブモードは無効になります。このとき引数の<samp class="codeph">DELETE_ARCHIVED_LOG_FILES</samp>に零以外の値を与えていれば、オンラインアーカイブログは削除されます。</p>
+</div>
+
+<div class="section"><h4 class="sectiontitle">構文</h4><pre>SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE(IN SMALLINT DELETE_ARCHIVED_LOG_FILES) </pre>
+
+<p>この手続きからは結果は返りません。</p>
+<dl>
+<dt class="dlterm">DELETE_ARCHIVED_LOG_FILES</dt>
+
+<dd>もしDELETE_ARCHIVED_LOG_FILESへの引数の値が零でなければ、存在するアーカイブログは削除されます。
+もし引数の値が零なら、存在するアーカイブログは削除されません。</dd>
+
+</dl>
+</div>
+
+<div class="section"><h4 class="sectiontitle">JDBCの例</h4>
+<p>以下の例ではデータベースのログアーカイブは無効となり、存在するログアーカイブのファイルは削除されます。</p>
+<pre>CallableStatement cs = conn.prepareCall
+("CALL SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE(?)");
+cs.setInt(1, 1);
+cs.execute();
+cs.close();</pre>
+</div>
+
+<div class="section"><h4 class="sectiontitle">SQLの例</h4>
+<p>以下の例ではデータベースのログアーカイブモードは無効となります。存在するログアーカイブのファイルはそのまま残ります。</p>
+<pre>CALL SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE DELETE_ARCHIVED_LOG_FILES(0);</pre>
+<p>以下の例ではデータベースのログアーカイブモードは無効となり、存在するログアーカイブのファイルは削除されます。</p>
+<pre>CALL SYSCS_UTIL.SYSCS_DISABLE_LOG_ARCHIVE_MODE DELETE_ARCHIVED_LOG_FILES(1);</pre>
+</div>
+
+</div>
+
+<div>
+<div class="familylinks">
+<div class="parentlink"><strong>親トピック:</strong> <a href="crefsqlbuiltinsystemprocedures.html" title="">組み込みシステム手続き</a></div>
+</div>
+</div>
+
+</body>
+</html>

Propchange: websites/production/db/content/derby/docs/10.4/ja_JP/ref/rrefdisablelogproc.html
------------------------------------------------------------------------------
    svn:eol-style = native