File: view-pg-views.html

package info (click to toggle)
pgadmin3 1.4.3-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 29,796 kB
  • ctags: 10,758
  • sloc: cpp: 55,356; sh: 6,164; ansic: 1,520; makefile: 576; sql: 482; xml: 100; perl: 18
file content (65 lines) | stat: -rw-r--r-- 2,581 bytes parent folder | download
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>42.46.pg_views</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="catalogs.html" title="Chapter42.System Catalogs">
<link rel="prev" href="view-pg-user.html" title="42.45.pg_user">
<link rel="next" href="protocol.html" title="Chapter43.Frontend/Backend Protocol">
<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="view-pg-views"></a>42.46.<code class="structname">pg_views</code></h2></div></div></div>
<a name="id833700"></a><p>   The view <code class="structname">pg_views</code> provides access to
   useful information about each view in the database.
  </p>
<div class="table">
<a name="id833719"></a><p class="title"><b>Table42.46.<code class="structname">pg_views</code> Columns</b></p>
<div class="table-contents"><table summary="pg_views Columns" border="1">
<colgroup>
<col>
<col>
<col>
<col>
</colgroup>
<thead><tr>
<th>Name</th>
<th>Type</th>
<th>References</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr>
<td><code class="structfield">schemaname</code></td>
<td><code class="type">name</code></td>
<td><code class="literal"><a href="catalog-pg-namespace.html" title="42.23.pg_namespace"><code class="structname">pg_namespace</code></a>.nspname</code></td>
<td>name of schema containing view</td>
</tr>
<tr>
<td><code class="structfield">viewname</code></td>
<td><code class="type">name</code></td>
<td><code class="literal"><a href="catalog-pg-class.html" title="42.12.pg_class"><code class="structname">pg_class</code></a>.relname</code></td>
<td>name of view</td>
</tr>
<tr>
<td><code class="structfield">viewowner</code></td>
<td><code class="type">name</code></td>
<td><code class="literal"><a href="catalog-pg-authid.html" title="42.8.pg_authid"><code class="structname">pg_authid</code></a>.rolname</code></td>
<td>name of view's owner</td>
</tr>
<tr>
<td><code class="structfield">definition</code></td>
<td><code class="type">text</code></td>
<td></td>
<td>view definition (a reconstructed SELECT query)</td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break">
</div></body>
</html>