1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>31.32.sql_sizing</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="information-schema.html" title="Chapter31.The Information Schema">
<link rel="prev" href="infoschema-sql-packages.html" title="31.31.sql_packages">
<link rel="next" href="infoschema-sql-sizing-profiles.html" title="31.33.sql_sizing_profiles">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="sect1" lang="en">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="infoschema-sql-sizing"></a>31.32.<code class="literal">sql_sizing</code></h2></div></div></div>
<p> The table <code class="literal">sql_sizing</code> contains information about
various size limits and maximum values in
<span class="productname">PostgreSQL</span>. This information is
primarily intended for use in the context of the ODBC interface;
users of other interfaces will probably find this information to be
of little use. For this reason, the individual sizing items are
not described here; you will find them in the description of the
ODBC interface.
</p>
<div class="table">
<a name="id701267"></a><p class="title"><b>Table31.30.<code class="literal">sql_sizing</code> Columns</b></p>
<div class="table-contents"><table summary="sql_sizing Columns" border="1">
<colgroup>
<col>
<col>
<col>
</colgroup>
<thead><tr>
<th>Name</th>
<th>Data Type</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr>
<td><code class="literal">sizing_id</code></td>
<td><code class="type">cardinal_number</code></td>
<td>Identifier of the sizing item</td>
</tr>
<tr>
<td><code class="literal">sizing_name</code></td>
<td><code class="type">character_data</code></td>
<td>Descriptive name of the sizing item</td>
</tr>
<tr>
<td><code class="literal">supported_value</code></td>
<td><code class="type">cardinal_number</code></td>
<td> Value of the sizing item, or 0 if the size is unlimited or
cannot be determined, or null if the features for which the
sizing item is applicable are not supported
</td>
</tr>
<tr>
<td><code class="literal">comments</code></td>
<td><code class="type">character_data</code></td>
<td>Possibly a comment pertaining to the sizing item</td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break">
</div></body>
</html>
|