Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
createdb(1)
Edit
PageHistory
Diff
Info
LikePages
CREATEDB !!!CREATEDB NAME SYNOPSIS DESCRIPTION USAGE ---- !!NAME createdb - create a new PostgreSQL database !!SYNOPSIS __createdb__ [[ ''options''... ] [[ ''dbname'' ] [[ ''description'' ] __INPUTS__ __-h, --host__ ''host'' Specifies the host name of the machine on which the server is running. If host begins with a slash, it is used as the directory for the Unix domain socket. __-p, --port__ ''port'' Specifies the Internet TCP/IP port or the local Unix domain socket file extension on which the server is listening for connections. __-U, --username__ ''username'' User name to connect as __-W, --password__ Force password prompt. __-e, --echo__ Echo the queries that __createdb__ generates and sends to the server. __-q, --quiet__ Do not display a response. __-D, --location__ ''datadir'' Specifies the alternative location for the database. See also initlocation(1). __-T, --template__ ''template'' Specifies the template database from which to build this database. __-E, --encoding__ ''encoding'' Specifies the character encoding scheme to be used in this database. ''dbname'' Specifies the name of the database to be created. The name must be unique among all PostgreSQL databases in this installation. The default is to create a database with the same name as the current system user. ''description'' This optionally specifies a comment to be associated with the newly created database. The options -h, -p, -U, -W, and -e are passed on literally to psql(1). The options -D, -T, and -E are converted into options for the underlying SQL command CREATE DATABASE [[__create_database__(l)]; see there for more information about them. __OUTPUTS__ __CREATE DATABASE__ The database was successfully created. __createdb: Database creation failed.__ (Says it all.) __createdb: Comment creation failed. (Database was created.)__ The comment/description for the database could not be created. The database itself will have been created already. You can use the SQL command __COMMENT ON DATABASE__ to create the comment later on. If there is an error condition, the backend error message will be displayed. See CREATE DATABASE [[__create_database__(l)] and psql(1) for possibilities. !!DESCRIPTION __createdb__ creates a new PostgreSQL database. The user who executes this command becomes the database owner. __createdb__ is a shell script wrapper around the SQL command CREATE DATABASE [[__create_database__(l)] via the PostgreSQL interactive terminal psql(1). Thus, there is nothing special about creating databases via this or other methods. This means that the __psql__ program must be found by the script and that a database server must be running at the targeted port. Also, any default settings and environment variables available to __psql__ and the __libpq__ front-end library will apply. !!USAGE To create the database demo using the default database server: $ __createdb demo __CREATE DATABASE The response is the same as you would have gotten from running the __CREATE DATABASE__ SQL command. To create the database demo using the server on host eden, port 5000, using the LATIN1 encoding scheme with a look at the underlying query: $ __createdb -p 5000 -h eden -E LATIN1 -e demo __CREATE DATABASE __ ----
2 pages link to
createdb(1)
:
pg_wrapper(1)
Man1c
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.