This is the third of a series of posts based on a presentation I did at the Barcelona Ruby Conference called “20,000 Leagues Under ActiveRecord.” (pos
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
今天在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
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
该文章转载自http://blog.chinaunix.net/uid-22920230-id-3493064.html 创建数据库 CREATE DATABASE test WITH OWNER = postgres ENCODING = 'UTF8'; 进入控制台方法,在postgreSQL的安
分类:
数据库 时间:
2016-02-07 02:14:43
阅读次数:
292