create_database.l
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/create_database.l,v 1.6 1998/06/23 17:52:31 momjian Exp $
  4. .TH "CREATE DATABASE" SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. create database - create a new database
  7. .SH SYNOPSIS
  8. .nf
  9. fBcreate databasefP dbname [fBwith location = 'fPdbpathfB'fP]
  10. .fi
  11. .SH DESCRIPTION
  12. .BR "create database"
  13. creates a new Postgres database.  The creator becomes the administrator
  14. of the new database. An alternate location can be specified as either an
  15. environment variable known to the backend server (e.g. 'PGDATA2') or as
  16. an absolute path name (e.g. '/home/postgres/data'). In either case, the
  17. location must be pre-configured by
  18. .BR initarea
  19. .SH "SEE ALSO"
  20. createdb(1),
  21. drop_database(l),
  22. destroydb(1),
  23. initarea(1),
  24. initdb(1).