os: ubuntu 16.04 postgresql: 9.6.8 barman: 2.5 ip 规划 192.168.56.101 node1 barman 192.168.56.102 node2 postgres…
分类:PostgreSQL
postgresql with递归
在PostgreSQL里,with子句提供了一种方法写一个大的查询中使用的辅助报表与查询。它有助于打破复杂和大型查询简单易读的形式。 1. 建表 [sql] view plain copy &nb…
Go 连接PostgreSQL数据库
先在PostgreSQL数据库中建一个表,可以使用PostgreSQL官方的pgAdmin来完成: CREATE TABLE userinfo ( uid serial NOT NULL, username…
postgresql pgagent 的安装及使用
pgagent 作为postgresql的一个任务调度代理,在postgresql 9.0 以前 是附带在pgadmin 包下面的,只是默认不安装,9.0之后作为了一个单独是的安装包。所以要使用pgagent定时任务调度…
PHP7上安装PostgreSQL 扩展包
yum上的各PHP版本扩展包 atomic-php54-php-pgsql.x86_64 atomic-php55-php-pgsql.x86_64 atomic-php56-php-pgsql.x86_64 atomi…
PostgreSQL 源码解读(233)- 查询#126(NOT IN实现#4)
本节简单解释了PostgreSQL NOT IN在执行时为何会出现时快时慢的现象。 测试数据如下: [local]:5432 pg12@testdb=# select count(*) from tbl; count -…
Linux安装 PostgreSQL
1、在线安装 yum install postgresql-server -y 2、初始化数据库 service postgresql initdb 3、设置自动启动 hkconfig postgresql on 4、启…
SQLServer2PostgreSQL迁移过程中的几个问题
1、PostgreSQL 跨平台迁移工具Migration Toolkit的使用指南:http://www.enterprisedb.com/docs/en/8.4/mtkguide/Table%20of%20Conte…
pip 安装 psycopg2 安装及错误处理
错误及现象 Error: pg_config executable not found. Downloading/unpacking psycopg2 Downloading psycopg2-2…
PostgreSQL - psql的使用与退出
PostgreSQL连接数据库的两种方式 PostgreSQL在安装时自带了pgAdmin和psql,pgAdmin是可视化工具,psql是命令行工具。虽然pgAdmin操作起来会更加直观简单,但是在restore和ba…
Windows下Postgresql数据库的下载与配置方法
注意下载的是二进制版,不是带Windows Installer的,即绿色版本 http://www.enterprisedb.com/products-services-training/pgbindownload x8…
PostGIS使用1:腾讯云PostGIS安装(结尾福利)
1.腾讯云申请postgresql 版本号选PostgreSQL 9.5.4 需要初始化实例 如果是外网访问记得开放外网域名 想自己在机器上通过源码安装的可以参考下云栖社区的这篇文章: https://yq.aliyun…