2014-03-03 10:10 佚名 开源中国编译?我要评论(0)?字号:T?|?T 在Heap中,我们依靠PostgreSQL支撑大多数后端繁重的任务,我们存储每个事件为一个hstore blob,我们为每个跟踪的用户维护一个已完成事件的Postg...
分类:
数据库 时间:
2014-09-04 19:35:20
阅读次数:
722
最近一直在学习Postgresql,下面是自己整理的Postgresql的常用命令 连接数据库, 默认的用户和数据库是postgres psql -U user -d dbname 切换数据库,相当于mysql的use dbname \c dbname 列举数据库,相当于mysql的...
分类:
数据库 时间:
2014-09-03 17:00:27
阅读次数:
194
PostgresqlPostgresql支持Code First的方式自动生成表,不过默认的模式是dbo而不是public,而且还可以自动生成自增主键。 SQLiteSQLite不支持Code First的方式自动生成表,所以可能会报找不到相应的ta...
分类:
数据库 时间:
2014-09-03 01:30:05
阅读次数:
389
??
Description:
pg_reorg is an utility program toreorganize tables in PostgreSQL databases. Unlike clusterdb, it doesn't blockany selections and updates during reorganization.
You can choose o...
分类:
数据库 时间:
2014-09-01 17:47:53
阅读次数:
402
pg_rewind is a tool for synchronizing a PostgreSQL data directory with another PostgreSQL data directory that was forked from the first one. The result is equivalent to rsyncing the first data directory with the second one. The advantage of pg_rewind over ...
分类:
数据库 时间:
2014-09-01 17:44:53
阅读次数:
495
There are three separate approaches to pattern matching provided by?PostgreSQL: the traditional?SQL?LIKE?operator, the more recent?SIMILAR TO?operator (added in SQL:1999), and?POSIX-style r...
分类:
数据库 时间:
2014-09-01 12:44:23
阅读次数:
380
LIMIT?and?OFFSET?allow you to retrieve just a portion of the rows that are generated by the rest of the query: SELECTselect_listFROMtable_expression[LIMIT {number| ALL }] [OFFSETnumber] If a lim...
分类:
数据库 时间:
2014-08-29 16:26:58
阅读次数:
387
数据库备份:D:\Program Files\PostgreSQL\9.2\bin> pg_dump -h localhost -U postgres -C --column-inserts -f E:/dbname.sqldbname数据库恢复:D:\Program Files\PostgreSQ...
分类:
数据库 时间:
2014-08-29 15:53:58
阅读次数:
262
配置远 程连接PostgreSQL数据库的步骤很简单,只需要修改 %PostgreSQL_path%/data 目录下的 pg_hba.conf 和 postgresql.conf。一、修改pg_hba.conf:配置对数据库的访问权限添加host all all 192.168.80.1/24 ....
分类:
数据库 时间:
2014-08-28 16:54:00
阅读次数:
453
在fedora 20中在我2014-8-27日安装pg时,pg版本是9.3.5.1我不知是会由pg开发组自动更新还是别的,但安装后一般是最新的版本了。 安装: # yum install postgresql # yum install postgresql-server # yum install...
分类:
数据库 时间:
2014-08-28 09:52:59
阅读次数:
273