-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbki-example.html
More file actions
21 lines (21 loc) · 4.47 KB
/
bki-example.html
File metadata and controls
21 lines (21 loc) · 4.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>68.6. BKIの例</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets Vsnapshot" /><link rel="prev" href="bki-structure.html" title="68.5. BKIファイルのブートストラップの構成" /><link rel="next" href="planner-stats-details.html" title="第69章 プランナは統計情報をどのように使用するか" /><meta name="viewport" content="width=device-width,initial-scale=1.0" /></head><body id="docContent" class="container-fluid col-10"><div class="other_version"><a href="https://www.postgresql.jp/document/">バージョンごとのドキュメント一覧</a></div><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="4" align="center"><a accesskey="h" href="index.html">PostgreSQL 18.3文書</a></th></tr><tr><td width="10%" align="left"></td><td width="10%" align="left"></td><td width="60%" align="center"><a href="bki.html" title="第68章 システムカタログの宣言と初期内容">第68章 システムカタログの宣言と初期内容</a></td><td width="20%" align="right"><div class="actions"><a class="issue" title="github" href="https://github.com/pgsql-jp/jpug-doc/issues/new?template=bug_report.yml&what-happened=version 18.3 : bki-example.html">誤訳等の報告
</a></div></td></tr><tr><td width="10%" align="left"><a accesskey="p" href="bki-structure.html" title="68.5. BKIファイルのブートストラップの構成">前へ</a> </td><td width="10%" align="left"><a accesskey="u" href="bki.html" title="第68章 システムカタログの宣言と初期内容">上へ</a></td><td width="60%" align="center">68.6. BKIの例</td><td width="20%" align="right"> <a accesskey="n" href="planner-stats-details.html" title="第69章 プランナは統計情報をどのように使用するか">次へ</a></td></tr></table><hr /></div><div class="sect1" id="BKI-EXAMPLE"><div class="titlepage"><div><div><h2 class="title" style="clear: both">68.6. BKIの例 <a href="#BKI-EXAMPLE" class="id_link">#</a></h2></div></div></div><span class="original">
<title>BKI Example</title>
</span><p>
<span class="original">
The following sequence of commands will create the table
<literal>test_table</literal> with OID 420, having three columns
<literal>oid</literal>, <literal>cola</literal> and <literal>colb</literal>
of type <type>oid</type>, <type>int4</type> and <type>text</type>,
respectively, and insert two rows into the table:
</span>
次の一連のコマンドは、それぞれ<code class="type">oid</code>型、<code class="type">int4</code>型、<code class="type">text</code>型の3つの列、<code class="literal">oid</code>、<code class="literal">cola</code>、<code class="literal">colb</code>を持ち、OID 420 が付いた<code class="literal">test_table</code>テーブルを作成し、そして2つの行をテーブルに挿入します。
</p><pre class="programlisting">
create test_table 420 (oid = oid, cola = int4, colb = text)
open test_table
insert ( 421 1 'value 1' )
insert ( 422 2 _null_ )
close test_table
</pre><p>
</p></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="bki-structure.html" title="68.5. BKIファイルのブートストラップの構成">前へ</a> </td><td width="20%" align="center"><a accesskey="u" href="bki.html" title="第68章 システムカタログの宣言と初期内容">上へ</a></td><td width="40%" align="right"> <a accesskey="n" href="planner-stats-details.html" title="第69章 プランナは統計情報をどのように使用するか">次へ</a></td></tr><tr><td width="40%" align="left" valign="top">68.5. <acronym class="acronym">BKI</acronym>ファイルのブートストラップの構成 </td><td width="20%" align="center"><a accesskey="h" href="index.html" title="PostgreSQL 18.3文書">ホーム</a></td><td width="40%" align="right" valign="top"> 第69章 プランナは統計情報をどのように使用するか</td></tr></table></div></body></html>