pugna
全部博文(171)
发布时间:2013-12-04 17:00:21
使用xargs获取输出内容并拼接成命令执行[root@testos ~]# ls *.sqlabc1.sql abc2.sql abc3.sql abc4.sql abc5.sql[root@testos ~]# ll *.sql | awk '/.*sql/ {print $9}'abc1.sqlabc2.sqlabc3.sqlabc4.sqlabc5.sql[root@testos ~]# cat *.sqlSET CLIENT_ENCODING TO UTF8;SET STANDA.........【阅读全文】
发布时间:2013-12-03 17:39:57
Servlet : 只要网络是通的(TCP/IP是通的,http端口可用)就可以使用,因为使用http通信。 Servlet服务器端依赖JAVA。客户端不限制。EJB : 客户端和服务器端之间一般不能有防火墙,因为EJB是使用RMI来实现远程调用的(其实也有穿越防火墙的办法,自行google).........【阅读全文】
发布时间:2013-12-03 17:07:47
转载自 http://www.cnblogs.com/cy163/archive/2008/04/16/1155767.html Servelt与WebService的异同: 请求: 客户端访问一个服务器的url,只需要发送简单的httprequest即可。 但servlet只能接受一个简单的http请求; 而WebService是可以.........【阅读全文】
发布时间:2013-12-03 16:42:44
今天在这个blog http://blog.csdn.net/jojo52013145/article/details/5783677 看到了关于EJB的通俗解释,很给力!EJB:在J2EE 中,这个运行在一个独立的服务器上,并封装了业务逻辑的组件就是EJB(Enterprise JavaBean)组件。用Oracle中的知识对比就是——procedure。EJB和procedure一样,都是将封装好的业务逻辑放.........【阅读全文】
发布时间:2013-12-02 20:32:59
转载自 http://heylinux.com/archives/2555.html 键盘上各种符号的英文名称与发音~ tilde ['t?ld?] ` backquote [b?kkw??t] ! exclam .........【阅读全文】
发布时间:2013-11-29 15:40:23
系统环境:CentOS 6.4 64bit 在PostgreSQL 9.3的源码包中,已经有linux系统的启动示例,就是 postgresql-9.3.0/contrib/start-scripts/linux 这个文件。具体步骤:1. cp postgresql-9.3.0/contrib/start-scripts/linux /etc/init.d/postgresql2.vim /etc/init.d/postgresql修改 prefix=/postgresql 为实际的.........【阅读全文】
发布时间:2013-11-28 17:10:37
PostgreSQL的日志分析工具--pgbadger安装与使用pgbadger是用perl写的分析PostgreSQL日志的工具。如果需要分析PostgreSQL生成的csv日志,则必须保证本机中安装了perl的 Text::CSV_XS 模块。安装步骤:在https://github.com/dalibo/pgbadger下载最新的release版本[root@testos ~]# tar -zvxf pgbadger-4.1.tar.gz .........【阅读全文】
发布时间:2013-11-28 17:00:05
CentOS 5安装Perl的 Text::CSV_XS 模块[root@testos ~]# perl -MCPAN -e shellTerminal does not support AddHistory.cpan shell -- CPAN exploration and modules installation (v1.7602)ReadLine support available (try 'install Bundle::CPAN')cpan> install Text::CSV_XSCPAN: Storable loaded okGoing to.........【阅读全文】
发布时间:2013-11-28 10:20:11
$ pgbench -M prepared -f ./pgbench.sh -T 60 -c 20 -p 5444 -U testuser testdbPassword: starting vacuum...ERROR: relation "pgbench_branches" does not exist原因,testdb并不是使用pgbench -i db_name建立的,在使用pgbench测试时,不要vacuum,即要在pgbench命令中加上-n 选项,指定不vacuum。.........【阅读全文】
发布时间:2013-11-26 21:06:33
转载自 http://heylinux.com/archives/1075.html今天,我接到了一位同事的电话,说有一个严重的问题需要处理,“所有的Crontab计划任务都被人清空了”。我立刻问有没有备份,回答是“可能没有”。这样一来,情况就变得非常紧急了,因为我们每天在跑的计划任务有上百条。于是我登陆到服务器,检查了所有相.........【阅读全文】
发布时间:2013-11-25 12:35:19
在postgis中执行./configure时,遇到 checking for library containing GDALAllRegister... no 的错误信息[root@test postgis-2.1.1]# ./configure.........checking for library containing GDALAllRegister... noconfigure: error: could not find GDAL解决办法:将PostgreSQL的lib目录(/postgresql/lib)和GDA.........【阅读全文】