关闭:service postgresql stop 启动:service postgresql start 启动数据库:pg_ctl start -D /data/postgres 重启数据库: pg_ctl rest…
分类:PostgreSQL
CentOS 7 安装、配置、使用 PostgreSQL 10 安装及基础配置
官网安装方法:https://www.postgresql.org/download/linux/redhat/ 卸载的话使用 yum remove 相应的安装 Install the repository RPM: y…
postgresql 保留七天内的数据
delete from 表名 where date_created <(now()-interval ‘7 day’) 保留七天以内的数据 select now();…
升级 postgresql
1 场景描述 最近使用 postgresql 命令行比较多,就找了个类似 mycli 工具,pgcli,这个是针对 postgresql 的,兴冲冲的安装了 brew install pgcli 没想到这货自动帮我升级了…
postgresql 游标,函数,存储过程使用例子
CREATE OR REPLACE FUNCTION cursor_demo() RETURNS refcursor AS --返回一个游标 $BODY$ declare --定义变量及游标 unbound_refcur…
Postgresql安装
安装postgresql数据的主要两篇参考文档链接: http://www.cnblogs.com/marsprj/archive/2013/02/08/2893519.html http://www.cnblogs.c…
postgresql 笔记
信息模式 table_constraints 视图table_constraints包含属于特定表的所有约束,这些表要满足的条件是:当前用户拥有表或者是当前用户在表上具有某种除SELECT之外的特权。 SELECT * …
postgresql服务器的启动
当postgres服务器没有启动时,psql命令会报错: psql: 无法联接到服务器: 没有那个文件或目录 服务器是否在本地运行并且在 Unix 域套接字 "/var/run/postgresql/.s.PGSQL.5…
PostgreSQL DBA(117) - pgAdmin(Don't do this: Don't use serial)
no zuo no die系列,来自于pg的wiki。 这一节的内容是:不要使用serial。 理由是: The serial types have some weird behaviors that make sche…
Postgresql Server Side Cursor
Postgresql Server Side Cursor When a database query is executed, the Psycopg cursor usually fetches all the re…
[转] Mac 下 PostgreSQL 的安装与使用
在 mac 下,可以利用 homebrew 直接安装 PostgreSQL: 1 brew install postgresql - v 稍等片刻,PostgreSQL&nbs…
postgresql之distinct用法
1. 去重;关键字distinct去重功能 在其他数据库(oracle,mysql)是存在;当然postgresql也有这个功能 [postgres@sdserver40_210 ~]$ psql mydb …