摘要:
基础:OperatorDescriptionExample~ Matches regular expression, case sensitive'thomas' ~ '.*thomas.*'~* Matches regular expression, case insensitive'thomas' ~* '.*Thomas.*'!~ Does not match regular expression, case sensitive'thomas' !~ '.*Thomas.*'!~* Does not match regular expression, case insensitive't 阅读全文
摘要:
find和xargs命令简介find基本命令语法:find path -options [-print -exec -ok] pathname: find命令所查找的目录路径。例如用"."来表示当前目录,用".."表示上级目录,用"/"来表示系统根目录。-print: find命令将匹配的文件输出到标准输出。-exec: find命令对匹配的文件执行该参数所给出的shell命令。相应命令的形式为' command' {} \;,注意{ }和\;之间的空格。但是在一些的系统中只允许执行ls等操作,且-exec的执行速度较慢,建议使用xargs来完成相同的功能。-ok: 和-exec的作用相同,只 阅读全文
摘要:
Learning PostgreSQL1. PostgreSQL简介 "POSTGRES pioneered many concepts that only became available in some commercial database systems much later. " Quoted From PostgreSQL's Document. PosgreSQL是一个拥有悠久历史的关系数据库系统,其最早的历史可以追述到1977年BSD的Ingres项目。到1986年到由Michael Stonebraker领导的由美国国防部高级项目研究所(DARPA)、美国陆军研究所(APO) 阅读全文
摘要:
PostgreSQL OLEDB驱动:PGNPhttp://www.pgoledb.com/index.php?option=com_filecabinet&view=files&id=1&Itemid=68驱动汇聚:http://www.giveawayoftheday.com/postgresql+oledb+provider/中文论坛:http://bbs.pgsqldb.com/index.php?t=msg&th=6200&rid=&S=4245455475a0f3d6246c4ebb0f3157ea&pl_view=&start=0#msg_37566其他:PostgreSQL O 阅读全文