This is the last in a series of Postgres posts that Pat Shaughnessy wrote based on his presentation at the Barcelona Ruby Conference. You can also wat
分类:
其他好文 时间:
2016-03-13 06:12:12
阅读次数:
211
安装并编辑脚本 cd /opt/curl -O http://files.postgres-xl.org/postgres-xl95r1beta1.tar.gztar -zxvf postgres-xl95r1beta1.tar.gzmv postgres-xl95r1beta1 postgres-
分类:
其他好文 时间:
2016-03-09 17:25:40
阅读次数:
105
本文利用pg_upgrade实现将8.4.18版本升级到9.5.0版本,8.4.18版本为RedHat系统自带pg数据库版本。 环境:Red Hat Enterprise Linux Server release 6.5 (Santiago) X86-64 查看手册看到可以利用pg_upgrade实
分类:
数据库 时间:
2016-03-09 11:02:35
阅读次数:
228
今天在centos6.5下安装postgresql数据库,现在整理自己操作步骤。 一. Centos6.5 下安装postgresql9.4 1.1. 显示所有的有关postgresql安装包 yum list postgres* 1.2. 安装数据库 yum install postgresql9
分类:
数据库 时间:
2016-03-07 15:03:42
阅读次数:
304
pgxl 集群搭建 一 预备 1 下载安装解压源码 /opt/ curl -O http://files.postgres-xl.org/postgres-xl95r1beta1.tar.gz tar -zxvf postgres-xl95r1beta1.tar.gz mv postgres-xl9
分类:
其他好文 时间:
2016-03-04 16:18:31
阅读次数:
178
PostgreSQL版本快速升级 写在前面 PostgreSQL9.5版本支持数据分片的功能,为以后做分布式考虑,准备将生产环境的9.1版本升级至9.5。中间需要做数据迁移。 在迁移操作中,为保证数据完整性,一般需要在数据库停止的情况下进行备份恢复操作,在数据量小的情况下,通过pg_dumpall的
分类:
数据库 时间:
2016-03-02 12:38:43
阅读次数:
326
GRANT privilege [, ...] ON object [ ( column [, ...] ) ] [, ...] TO { PUBLIC | username [, ...] } [ WITH GRANT OPTION ] 这些字段与 Postgres 实现是兼容的,除了下面一些例外
分类:
数据库 时间:
2016-03-02 09:28:48
阅读次数:
277
I’ll demonstrate how to relocate a tablespace directory without the reconstruction of databases. I have a tablespace tblspc located at /home/postgres/
分类:
其他好文 时间:
2016-02-19 00:17:51
阅读次数:
179
1. 启动postgresql root@kali:~# service postgresql start 2. 设置用户与数据库 root@kali:~# su postgres postgres@kali:/root$ createuser msf4 -P Enter password for
分类:
数据库 时间:
2016-02-17 22:12:53
阅读次数:
9348
修改默认为例: 1.Linux环境下 #su postgres $psql -U postgres postgres=#alter user postgres with password 'new password'; postgres=#\q
分类:
数据库 时间:
2016-02-15 22:31:44
阅读次数:
216