02 2010 档案
postgres手册链接
摘要: 一.linux 监控数据库活动
$ ps auxww | grep ^postgres
postgres 3424 0.0 1.2 42708 26588 ? Ss Jan29 0:00 postgres: writer process
postgres 3425 0.0 0.0 42576 1284 ? Ss Jan29 0:00 postgres: wal writer process
postgres 3426 0.0 0.0 43364 1972 ? Ss J
阅读全文
posted @
2010-02-09 15:30 冰是没有未来的,因为它的永恒|
编辑
sql 删除重复的数据
摘要: 1、对于第一种重复,比较容易解决,使用
select distinct * from tableName
就可以得到无重复记录的结果集。
如果该表需要删除重复的记录(重复记录保留1条),可以按以下方法删除
select distinct * into #Tmp from tableName
drop table tableName
select * into tableName from #Tmp
drop table #Tmp
阅读全文
posted @
2010-02-08 16:22 冰是没有未来的,因为它的永恒|
编辑
apt-get proxy 设置
摘要: Well, there's second places I set the proxy on a new Linux install.
1) in /etc/profile:
code:
export http_proxy="http://user:pass@xxx.xxx.xxx.xxx:port/"
export ftp_proxy="http://user:pass@xxx.xxx.xxx.xxx:port/"
2) in /etc/apt/apt.conf
code:
Acquire::http::Proxy "http://user:pass@xxx.xxx.xxx.xxx:port/";
Acquire::ftp::Proxy "http://user:pass@xxx.xxx.xxx.xxx:port/";
阅读全文
posted @
2010-02-02 15:16 冰是没有未来的,因为它的永恒|
编辑
E: Dynamic MMap ran out of room(ap-get install)
摘要: Add the following line to either /etc/apt/apt.conf or /etc/apt/apt.conf.d/70debconf
code:
APT::Cache-Limit 50000000;
阅读全文
posted @
2010-02-02 15:13 冰是没有未来的,因为它的永恒|
编辑
在eclipse中设置project
摘要:
1. 用命令行创建新的project
#>: play new test
输入 test(会有What is the application name?提示)
注:一定要输入test 否则在导入到eclipse中就要手动改配置文件
2. 导入eclipse
>play eclipsify test
打开eclipse 在import 就ok了.
如果在创建project时候未输入test。
就要手动修改test.launch文件,也就是查找
,得出 E:"project"eclipse"play1 ,然后把文件中所有的E:"project"eclipse"play1替换为test
修改前:
posted @ 2010-02-01 13:38 冰是没有未来的,因为它的永恒| 编辑