此文仅限于搭建authpuppy 认证服务器,不包含认证插件等安装,仅说明步骤以备下次安装忘记步骤、耽误时间。环境:ubuntu10.04软件版本:authpuppy-1.0.0-stable.tgz准备工作:ubuntu中安装Apache2,php5,mysql,及 postgres。具体的步骤可...
分类:
其他好文 时间:
2014-07-11 20:55:48
阅读次数:
250
估计没时间写下去了,这里先做个存档。nginx作为一个web服务端,是非常优秀的,自从添加了lua模块,更是如虎添翼。假如nginx是全程的无限高输出的ADC,那lua就是全程最佳的辅助,全地图眼,加伤害加防加血加蓝都行。章哥把nginx无缝的容入了lua脚本语言,而lua可以实现nginx很多功能...
分类:
系统相关 时间:
2014-07-07 23:11:13
阅读次数:
399
函数返回类型描述例子to_char(timestamp, text)text把时间戳转换成字串to_char(current_timestamp, 'HH12:MI:SS')to_char(interval, text)text把时间间隔转为字串to_char(interval '15h2m12s'...
分类:
其他好文 时间:
2014-07-06 21:31:07
阅读次数:
340
PostgreSQL正则表达式基础:OperatorDescriptionExample~Matches regular expression, case sensitive'thomas' ~ '.*thomas.*'~*Matches regular expression, case insen...
分类:
其他好文 时间:
2014-07-06 13:31:33
阅读次数:
156
postgres sql plpgsql 存储过程 循环...
分类:
其他好文 时间:
2014-07-03 17:52:18
阅读次数:
427
用postgres 的pg_dump可以实现从从postgres数据库中导出数据。[1]只导出所有对象的数据库结构 C:\>pg_dump -f DDDDDD.sql -i -C -E UTF8 -n public -s -U portal -h localhost -W portal ...
分类:
系统相关 时间:
2014-06-28 18:06:55
阅读次数:
312
three collection tool for greenplum:pstack、strace、gcore.
[gpadmin@gtlions5913 ~]$ ps -ef | grep postgres|grep data...
分类:
其他好文 时间:
2014-06-08 05:30:55
阅读次数:
287
Flask-SQLALchemy是一个给你的应用添加SQLALchemy支持的Flask扩展。SQLALchemy
是Python语言的SQL工具包及对象关系映射(ORM)工具,使用MIT许可证发行,提供能兼容众多数据库(如
SQLite、MySQL、Postgres、Oracle、MS-SQL、SQLServer和Firebird)的企业级持久性模型。一、为..
分类:
其他好文 时间:
2014-06-02 03:04:03
阅读次数:
520
bak_dir="/home/backupfiles/db"
#备份路径pg_dir="/usr/local/pgsql/bin" #pgsql路径date_dir=`date
+%Y/%m/%d`dbname="数据库名字"PGPASSWORD="超级用户postgres的密码"export PG...
分类:
数据库 时间:
2014-05-29 02:48:34
阅读次数:
475
例如:有表1,表2两张相,希望通过like进行关联查询
// mysql中使用concat连接字符串
select t1.id, t1.title, t2.keyword from t1 inner join t2 on t1.title like concat('%', t2.keyword, '%');
// oracle、postgres 使用||连接字符串,其它库使用...
分类:
其他好文 时间:
2014-05-18 15:57:36
阅读次数:
242