PostgreSQL Performance Monitoring Tools https://github.com/CloudServer/postgresql-perf-tools This package includes three useful scripts aimed to help
分类:
数据库 时间:
2016-02-18 17:46:26
阅读次数:
259
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
最近看到PostgreSQL话题比较多,就搜索了一下它与mysql的对比作者:知了链接:http://www.zhihu.com/question/20010554/answer/74037965来源:知乎 一、PG相对于MySQL的优势:1、在SQL的标准实现上要比MySQL完善,而且功能实现比较
分类:
数据库 时间:
2016-02-16 13:18:10
阅读次数:
774
修改默认为例: 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
CentOS5.5上安装psycopg2准备接上一篇文章[CentOS5.5上安装Python2.7及ez_setup和pip包],先安装好python2.7和pip。安装postgresql开发包CentOS5.5默认的postgresql版本比较低,需要安装高版本的postgresql库。访问 http://yum.postgresql.org/rpmchart.php, 下载postgresq...
分类:
数据库 时间:
2016-02-05 12:17:06
阅读次数:
669
一、PostgreSQL简介 1.1 PostgreSQL概述 PostgreSQL数据库是目前功能最强大的开源数据库,支持丰富的数据类型(如JSON和JSONB类型、数组类型)和自定义类型。而且它提供了丰富的接口,可以很容易地扩展它的功能,如可以在GiST框架下实现自己的索引类型等,它还支持使用C
分类:
数据库 时间:
2016-02-04 10:36:16
阅读次数:
2354
Among the many things to say about logical replication features added in PostgreSQL 9.4, REPLICA IDENTITY is a new table-level parameter that can be u
分类:
其他好文 时间:
2016-02-02 20:40:43
阅读次数:
339
mongodb的自增实现根oracle,postgresql是差不多,都是通过计数器来实现的. oracle自增实现: 实例说明oracle序列用法 postgresql自增实现: postgresql auto_increment 实现 通用方法 1,mongodb命令行下实现auto_incre
分类:
数据库 时间:
2016-02-02 14:25:14
阅读次数:
207
How to debug plpgsql with pgAdminIII [root@localhost soft_bak]# git clone git://git.postgresql.org/git/pldebugger.git Initialized empty Git repository
分类:
数据库 时间:
2016-01-29 20:48:27
阅读次数:
485