select t.*,t1.person_names from itil_duty_group t ,( select p.duty_group_id, WMSYS.WM_CONCAT(p.person_name) person_names From itil_duty_group_person p...
分类:
数据库 时间:
2014-07-07 12:42:21
阅读次数:
185
原文:解决IIS7运行ASP提示错误:An error occurred on the server when processing the URL. Please contact the system administrator 在WINDOWS7或SERVER2008上安装了IIS7,调试...
分类:
Web程序 时间:
2014-07-07 11:35:36
阅读次数:
250
当访问启用SSL资源的时候,会出现\"did you forget to enable it when you configured PHP\"错误提示,从提示我们可以看出肯定是php.ini中没有配置好SSL模块。打开php.ini找到extension=php_openssl.dll,取消注释在...
分类:
Web程序 时间:
2014-07-03 23:03:36
阅读次数:
322
在项目开发过程中,我们经常要做一些以时间为条件的查询,比如查询指定时间范围内的历史记录,然而这些时间都是从UI传递过来的参数,所以我们写的sql语句就必须用到字符串拼接。当然,在C#中写SQL语句还好处理,可以使用C#的字符串函数做对应的数据类型转换。但是,如果用的是存储过程的话,就有点纠结了。.....
分类:
数据库 时间:
2014-07-03 22:44:00
阅读次数:
353
$options = array( 'conditions' => $conditions, 'fields'=>array('Category.*','COUNT(`Entity`.`id`) as `entity_co...
分类:
Web程序 时间:
2014-07-03 21:36:21
阅读次数:
252
select 语句主要语法:SELECT select_list [ INTO new_table ] FROM table_source [ WHERE search_condition ] [ GROUP BY group_by_expression ] [ HAVING search...
分类:
其他好文 时间:
2014-07-03 21:34:18
阅读次数:
347
Default do not need username and password authenticate when access mongoDB ,I want to set up the user name & password for my mongoDB. so that any remo...
分类:
数据库 时间:
2014-07-03 21:02:37
阅读次数:
343
Problem Statement
Rabbits often feel hungry, so when they go out to eat carrots, they jump as quickly as possible.
Initially, rabbit Hanako stands at position init. From position x, she ...
分类:
其他好文 时间:
2014-07-02 17:02:04
阅读次数:
201
useradd指令useradd创建用户。创建用户时的一些默认选项存放在/etc/default/useradd和/etc/login.defs文件中。/etc/default/userasdd文件的内容如下:[root@Server3tmp]#cat/etc/default/useradd
#useradddefaultsfile
GROUP=100
HOME=/home
INACTIVE=-1
EXPIRE=
SHELL=/bin/ba..
分类:
其他好文 时间:
2014-07-02 16:05:03
阅读次数:
237
usermod命令usermod:修改用户的属性信息。语法格式:usermod[options]LOGIN选项:-a:添加用户到辅助组中。和-G选项一起使用,将用户添加到组中。示例1:[root@Server3~]#usermod-aGuser2user1
[root@Server3~]#grep‘user1‘/etc/group
user1:x:503:
user2:x:504:user1
[root@Se..
分类:
其他好文 时间:
2014-07-02 15:35:52
阅读次数:
276