PostgreSQL

来自开放百科 - 灰狐
(版本间的差异)
跳转到: 导航, 搜索
第33行: 第33行:
  
 
==PostgreSQL发行版==
 
==PostgreSQL发行版==
*http://www.postgresql.org
 
 
*EnterpriseDB http://www.enterprisedb.com/
 
*EnterpriseDB http://www.enterprisedb.com/
 
*Pervasive http://www.pervasive.com/
 
*Pervasive http://www.pervasive.com/
  
 
==相关链接==
 
==相关链接==
 +
*http://www.postgresql.org
 +
*pgAdmin http://www.pgadmin.org/
 +
*phpPgAdmin http://phppgadmin.sourceforge.net
 
*PostgreSQL 中文网 http://www.pgsqldb.org/
 
*PostgreSQL 中文网 http://www.pgsqldb.org/

2006年7月21日 (五) 22:01的版本

Postgresql.jpeg

PostgreSQL: The world's most advanced open source database

目录

安装指南

./configure
gmake // ln -s /usr/bin/make /usr/bin/gmake
su
gmake install
adduser postgres
mkdir /usr/local/pgsql/data
chown postgres /usr/local/pgsql/data
su - postgres // sudo su postgres 
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data 
/usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data >logfile 2>&1 &
/usr/local/pgsql/bin/createdb test
/usr/local/pgsql/bin/psql test

stop postgresql

su postgres or sudo su postgres 
/usr/local/pgsql/bin/pg_ctl stop -D /usr/local/pgsql/data/

注意: postgres在默认是不接受tcp/ip连接的。有两种方式来控制它接受tcp/ip连接,一种是用启动参数 -i ,另一种方式是修改数据库目录里的文件:postgresql.conf中的参数,将tcpip_socket = false改为true port = 5432 前面的注释符号去掉。表示接受tcp/ip在5432的连接。

PostgreSQL Limits

Limit Value

  • Maximum Database Size Unlimited
  • Maximum Table Size 32 TB
  • Maximum Row Size 1.6 TB
  • Maximum Field Size 1 GB
  • Maximum Rows per Table Unlimited
  • Maximum Columns per Table 250 - 1600 depending on column types
  • Maximum Indexes per Table Unlimited

PostgreSQL发行版

相关链接

分享您的观点
个人工具
名字空间

变换
操作
导航
工具箱