随笔分类 -  postgresql

摘要:postgresql模糊查询和正则表达式查询 阅读全文
posted @ 2016-06-25 22:48 alianblog 阅读(6756) 评论(0) 推荐(0) 编辑
摘要:postgresql常用的简单查询 阅读全文
posted @ 2016-06-25 22:03 alianblog 阅读(2769) 评论(0) 推荐(0) 编辑
摘要:postgresql之INSERT表 阅读全文
posted @ 2016-06-24 07:41 alianblog 阅读(3685) 评论(0) 推荐(0) 编辑
摘要:postgresql多种建表方式,如create table (like parent table),create table as table,select into table,create table new_table as select 阅读全文
posted @ 2016-06-22 22:39 alianblog 阅读(12518) 评论(0) 推荐(0) 编辑
摘要:当表越来越大,读写性能就会受到严重影响,通过触发器,存储过程和继承表实现表分区,将数据均匀分布,可提升大表的读写性能 阅读全文
posted @ 2016-06-22 21:42 alianblog 阅读(3692) 评论(0) 推荐(0) 编辑
摘要:postgresql继承表 阅读全文
posted @ 2016-06-21 21:47 alianblog 阅读(7231) 评论(0) 推荐(0) 编辑
摘要:postgresql临时表temporary table和无日志表unlogged table 阅读全文
posted @ 2016-06-21 21:21 alianblog 阅读(6253) 评论(0) 推荐(0) 编辑
摘要:postgresql外键约束foreign key 阅读全文
posted @ 2016-06-19 18:41 alianblog 阅读(21022) 评论(0) 推荐(1) 编辑
摘要:postgresql主键约束primary key 阅读全文
posted @ 2016-06-19 16:17 alianblog 阅读(17780) 评论(0) 推荐(1) 编辑
摘要:数据库表的约束之NOT NULL,DEFAULT,CHECK 阅读全文
posted @ 2016-06-19 11:52 alianblog 阅读(24721) 评论(0) 推荐(0) 编辑
摘要:postgresql数据库表唯一约束 阅读全文
posted @ 2016-06-19 11:43 alianblog 阅读(27315) 评论(0) 推荐(0) 编辑
摘要:postgresql日志收集 阅读全文
posted @ 2016-06-18 21:34 alianblog 阅读(33205) 评论(1) 推荐(2) 编辑
摘要:以在64位CentOS6.5操作系统上源码安装postgresql-9.6beta1为例 一.进入官网下载代码(postgresql-9.6beta1.tar.gz) https://www.postgresql.org 二.将源码上传到服务器/home/alian目录下 可以在windows安装s 阅读全文
posted @ 2016-06-18 16:37 alianblog 阅读(4832) 评论(0) 推荐(0) 编辑
摘要:postgresql 表空间 tablespace 阅读全文
posted @ 2015-08-30 16:20 alianblog 阅读(20833) 评论(1) 推荐(2) 编辑
摘要:一个数据库包含一个或多个模式,而模式又包含表、序列、函数等,不同的模式可以包含相同名称的表、序列、函数等。模式本质上是命名空间,就像人的姓氏一样。一个用户只要有权限,连接到数据库后,可一次访问该数据库的任何模式下的对象。新建一个数据库会默认创建一个public模式,后续操作数据库对象如果没指定模式, 阅读全文
posted @ 2015-06-01 07:36 alianblog 阅读(17648) 评论(0) 推荐(0) 编辑
摘要:一、数据库创建 语法: Command: CREATE DATABASEDescription: create a new databaseSyntax:CREATE DATABASE name [ [ WITH ] [ OWNER [=] user_name ] [ TEMPLATE [=] te 阅读全文
posted @ 2015-05-31 11:12 alianblog 阅读(31781) 评论(0) 推荐(1) 编辑