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 69 70 71 72 73 74 75
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>31.6.column_domain_usage</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-check-constraints.html" title="31.5.check_constraints">
<link rel="next" href="infoschema-column-privileges.html" title="31.7.column_privileges">
<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-column-domain-usage"></a>31.6.<code class="literal">column_domain_usage</code></h2></div></div></div>
<p> The view <code class="literal">column_domain_usage</code> identifies all
columns (of a table or a view) that make use of some domain defined
in the current database and owned by the current user.
</p>
<div class="table">
<a name="id693173"></a><p class="title"><b>Table31.4.<code class="literal">column_domain_usage</code> Columns</b></p>
<div class="table-contents"><table summary="column_domain_usage 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">domain_catalog</code></td>
<td><code class="type">sql_identifier</code></td>
<td>Name of the database containing the domain (always the current database)</td>
</tr>
<tr>
<td><code class="literal">domain_schema</code></td>
<td><code class="type">sql_identifier</code></td>
<td>Name of the schema containing the domain</td>
</tr>
<tr>
<td><code class="literal">domain_name</code></td>
<td><code class="type">sql_identifier</code></td>
<td>Name of the domain</td>
</tr>
<tr>
<td><code class="literal">table_catalog</code></td>
<td><code class="type">sql_identifier</code></td>
<td>Name of the database containing the table (always the current database)</td>
</tr>
<tr>
<td><code class="literal">table_schema</code></td>
<td><code class="type">sql_identifier</code></td>
<td>Name of the schema containing the table</td>
</tr>
<tr>
<td><code class="literal">table_name</code></td>
<td><code class="type">sql_identifier</code></td>
<td>Name of the table</td>
</tr>
<tr>
<td><code class="literal">column_name</code></td>
<td><code class="type">sql_identifier</code></td>
<td>Name of the column</td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break">
</div></body>
</html>
|