File: catalog-pg-namespace.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,381 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.23.pg_namespace</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="catalog-pg-listener.html" title="42.22.pg_listener">
<link rel="next" href="catalog-pg-opclass.html" title="42.24.pg_opclass">
<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="catalog-pg-namespace"></a>42.23.<code class="structname">pg_namespace</code></h2></div></div></div>
<a name="id826747"></a><p>   The catalog <code class="structname">pg_namespace</code> stores namespaces.
   A namespace is the structure underlying SQL schemas: each namespace
   can have a separate collection of relations, types, etc. without name
   conflicts.
  </p>
<div class="table">
<a name="id826768"></a><p class="title"><b>Table42.23.<code class="structname">pg_namespace</code> Columns</b></p>
<div class="table-contents"><table summary="pg_namespace 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">nspname</code></td>
<td><code class="type">name</code></td>
<td></td>
<td>Name of the namespace</td>
</tr>
<tr>
<td><code class="structfield">nspowner</code></td>
<td><code class="type">oid</code></td>
<td><code class="literal"><a href="catalog-pg-authid.html" title="42.8.pg_authid"><code class="structname">pg_authid</code></a>.oid</code></td>
<td>Owner of the namespace</td>
</tr>
<tr>
<td><code class="structfield">nspacl</code></td>
<td><code class="type">aclitem[]</code></td>
<td></td>
<td>       Access privileges; see
       <a href="sql-grant.html">GRANT</a> and
       <a href="sql-revoke.html">REVOKE</a>
       for details.
      </td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break">
</div></body>
</html>