📄 manage-ag.sgml
字号:
<!--$PostgreSQL: pgsql/doc/src/sgml/manage-ag.sgml,v 2.44 2005/09/18 04:02:05 tgl Exp $--><chapter id="managing-databases"> <title>Managing Databases</title> <indexterm zone="managing-databases"><primary>database</></> <para> Every instance of a running <productname>PostgreSQL</productname> server manages one or more databases. Databases are therefore the topmost hierarchical level for organizing <acronym>SQL</acronym> objects (<quote>database objects</quote>). This chapter describes the properties of databases, and how to create, manage, and destroy them. </para> <sect1 id="manage-ag-overview"> <title>Overview</title> <indexterm zone="manage-ag-overview"> <primary>schema</primary> </indexterm> <para> A database is a named collection of <acronym>SQL</acronym> objects (<quote>database objects</quote>). Generally, every database object (tables, functions, etc.) belongs to one and only one database. (But there are a few system catalogs, for example <literal>pg_database</>, that belong to a whole cluster and are accessible from each database within the cluster.) More accurately, a database is a collection of schemas and the schemas contain the tables, functions, etc. So the full hierarchy is: server, database, schema, table (or some other kind of object, such as a function). </para> <para> When connecting to the database server, a client must specify in its connection request the name of the database it wants to connect to. It is not possible to access more than one database per connection. (But an application is not restricted in the number of connections it opens to the same or other databases.) Databases are physically separated and access control is managed at the connection level. If one <productname>PostgreSQL</> server instance is to house projects or users that should be separate and for the most part unaware of each other, it is therefore recommendable to put them into separate databases. If the projects or users are interrelated and should be able to use each other's resources they should be put in the same database, but possibly into separate schemas. Schemas are a purely logical structure and who can access what is managed by the privilege system. More information about managing schemas is in <xref linkend="ddl-schemas">. </para> <para> Databases are created with the <command>CREATE DATABASE</> command (see <xref linkend="manage-ag-createdb">) and destroyed with the <command>DROP DATABASE</> command (see <xref linkend="manage-ag-dropdb">). To determine the set of existing databases, examine the <structname>pg_database</> system catalog, for example<synopsis>SELECT datname FROM pg_database;</synopsis> The <xref linkend="app-psql"> program's <literal>\l</> meta-command and <option>-l</> command-line option are also useful for listing the existing databases. </para> <note> <para> The <acronym>SQL</> standard calls databases <quote>catalogs</>, but there is no difference in practice. </para> </note> </sect1> <sect1 id="manage-ag-createdb"> <title>Creating a Database</title> <para> In order to create a database, the <productname>PostgreSQL</> server must be up and running (see <xref linkend="postmaster-start">). </para> <para> Databases are created with the SQL command <xref linkend="sql-createdatabase" endterm="sql-createdatabase-title">:<indexterm><primary>CREATE DATABASE</></><synopsis>CREATE DATABASE <replaceable>name</>;</synopsis> where <replaceable>name</> follows the usual rules for <acronym>SQL</acronym> identifiers. The current role automatically becomes the owner of the new database. It is the privilege of the owner of a database to remove it later on (which also removes all the objects in it, even if they have a different owner). </para> <para> The creation of databases is a restricted operation. See <xref linkend="role-attributes"> for how to grant permission. </para> <para> Since you need to be connected to the database server in order to execute the <command>CREATE DATABASE</command> command, the question remains how the <emphasis>first</> database at any given site can be created. The first database is always created by the <command>initdb</> command when the data storage area is initialized. (See <xref linkend="creating-cluster">.) This database is called <literal>postgres</>.<indexterm><primary>postgres</></> So to create the first <quote>ordinary</> database you can connect to <literal>postgres</>. </para> <para> A second database, <literal>template1</literal>,<indexterm><primary>template1</></> is also created by <command>initdb</>. Whenever a new database is created within the cluster, <literal>template1</literal> is essentially cloned. This means that any changes you make in <literal>template1</> are propagated to all subsequently created databases. Therefore it is unwise to use <literal>template1</> for real work, but when used judiciously this feature can be convenient. More details appear in <xref linkend="manage-ag-templatedbs">. </para> <para> As a convenience, there is a program that you can execute from the shell to create new databases, <command>createdb</>.<indexterm><primary>createdb</></><synopsis>createdb <replaceable class="parameter">dbname</replaceable></synopsis> <command>createdb</> does no magic. It connects to the <literal>postgres</> database and issues the <command>CREATE DATABASE</> command, exactly as described above. The <xref linkend="app-createdb"> reference page contains the invocation details. Note that <command>createdb</> without any arguments will create a database with the current user name, which may or may not be what you want. </para> <note> <para> <xref linkend="client-authentication"> contains information about how to restrict who can connect to a given database. </para> </note> <para> Sometimes you want to create a database for someone else. That role should become the owner of the new database, so he can configure and manage it himself. To achieve that, use one of the following commands:<programlisting>CREATE DATABASE <replaceable>dbname</> OWNER <replaceable>rolename</>;</programlisting> from the SQL environment, or<programlisting>createdb -O <replaceable>rolename</> <replaceable>dbname</></programlisting> You must be a superuser to be allowed to create a database for someone else (that is, for a role you are not a member of). </para> </sect1> <sect1 id="manage-ag-templatedbs"> <title>Template Databases</title> <para> <command>CREATE DATABASE</> actually works by copying an existing database. By default, it copies the standard system database named <literal>template1</>.<indexterm><primary>template1</></> Thus that database is the <quote>template</> from which new databases are made. If you add objects to <literal>template1</>, these objects will be copied into subsequently created user databases. This behavior allows site-local modifications to the standard set of objects in databases. For example, if you install the procedural language <application>PL/pgSQL</> in <literal>template1</>, it will automatically be available in user databases without any extra action being taken when those databases are made. </para> <para> There is a second standard system database named <literal>template0</>.<indexterm><primary>template0</></> This database contains the same data as the initial contents of <literal>template1</>, that is, only the standard objects predefined by your version of <productname>PostgreSQL</productname>. <literal>template0</> should never be changed after <command>initdb</>. By instructing <command>CREATE DATABASE</> to copy <literal>template0</> instead of <literal>template1</>, you can create a <quote>virgin</> user database that contains none of the site-local additions in <literal>template1</>. This is particularly handy when restoring a <literal>pg_dump</> dump: the dump script should be restored in a virgin database to ensure that one recreates the correct contents of the dumped database, without any conflicts with additions that may now be present in <literal>template1</>. </para> <para> To create a database by copying <literal>template0</literal>, use<programlisting>CREATE DATABASE <replaceable>dbname</> TEMPLATE template0;</programlisting> from the SQL environment, or<programlisting>createdb -T template0 <replaceable>dbname</></programlisting> from the shell. </para> <para> It is possible to create additional template databases, and indeed one might copy any database in a cluster by specifying its name as the template for <command>CREATE DATABASE</>. It is important to understand, however, that this is not (yet) intended as a general-purpose <quote><command>COPY DATABASE</command></quote> facility. In particular, it is essential that the source database be idle (no data-altering transactions in progress) for the duration of the copying operation. <command>CREATE DATABASE</> will check that no session (other than itself) is connected to the source database at the start of the operation, but this does not guarantee that changes cannot be made while the copy proceeds, which would result in an inconsistent copied database. Therefore, we recommend that databases used as templates be treated as read-only. </para> <para> Two useful flags exist in <literal>pg_database</literal><indexterm><primary>pg_database</></> for each database: the columns <literal>datistemplate</literal> and <literal>datallowconn</literal>. <literal>datistemplate</literal> may be set to indicate that a database is intended as a template for <command>CREATE DATABASE</>. If this flag is set, the database may be cloned by any user with <literal>CREATEDB</> privileges; if it is not set, only superusers and the owner of the database may clone it. If <literal>datallowconn</literal> is false, then no new connections to that database will be allowed (but existing sessions are not killed simply by setting the flag false). The <literal>template0</literal> database is normally marked <literal>datallowconn = false</> to prevent modification of it. Both <literal>template0</literal> and <literal>template1</literal> should always be marked with <literal>datistemplate = true</>. </para> <para> After preparing a template database, or making any changes to one, it is a good idea to perform <command>VACUUM FREEZE</> in that database. If this is done when there are no other open transactions in the same database, then it is guaranteed that all rows in the database are <quote>frozen</> and will not be subject to transaction
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -