`
wanii3344
  • 浏览: 18541 次
  • 性别: Icon_minigender_1
  • 来自: 河南
社区版块
存档分类
最新评论
文章列表
    取上一条   sql = " from News n where n.id < ? order by n.id desc ";   List list = getSession().createQuery(sql);   return list.size() > 0 ? list.get(0) : null;      取下一条   sql = " from News n where n.id > ? order by n.id asc ";   List list = getSession().createQuery(sql); ...
1,下载 openswan  www.openswan.org/download/openswan-2.6.tar.gz    tar zxvf openswan-2.4.7.tar.gz         cd /usr/local/src/openswan-2.4.7         make programs         make install export KERNELSRC=/usr/src/kernels/2.6.XX  make module         make minstall        depmod -a        modprobe ipsec        ...
如果令 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 分别等于百分之 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 那么 Hard work (努力工作)   H+A+R+D+W+O+R+K=8+1+18+4+23+15+18+11=98% Knowledge(知识)   K+N+O+W+L+E+D+G+E=11+14+15+23+12+5+4+7+5=96% Love(爱情)   L+O+V+E=12+15+22+5=54% ...
1. 选用适合的ORACLE优化器         ORACLE的优化器共有3种: a. RULE (基于规则)   b. COST (基于成本) c. CHOOSE (选择性)     设置缺省的优化器,可以通过对init.ora文件中OPTIMIZER_MODE参数的各种声明,如RULE,COST,CHOOSE,ALL_ROWS,FIRST_ROWS . 你当然也在SQL句级或是会话(session)级对其进行覆盖。     为了使用基于成本的优化器(CBO, Cost-Based Optimizer) , 你必须经常运行analyze 命令,以增加数据库中的对象统计信息(obj ...
免费 http://www.865171.cn/
本来在 /etc/rc.local 加入 ifconfig eth0 192.168.2.68 netmask 255.255.255.0 route add default gw 192.168.2.1 就可以做到固定IP 可是发现重装系统后IP老固定不住,后来发现是DHCP的问题 删除 /var/lib/dhcp3/dhclient.eth0.leases 文件。会自动生成,不起作用。 找到interfaces这个文件 debian:~# nano /etc/network/interfaces # The primary network interface #allow-hotpl ...
tomcat-5.5.tar.gz 解压到 /root/tomcat-5.5 1,添加一个独立运行tomcat服务的用户,命令如下: useradd -d /root/tomcat-5.5 -s /usr/sbin/nologin tomcat 设置tomcat用户对tomcat服务的权限 chown -R tomcat:tomcat /root/tomcat-5.5 2,安装jsvc cd /root/tomcat-5.5/bin tar xvfz jsvc.tar.gz cd jsvc-src sh support/buildconf.sh 成功的话,终端会打印 support/buildc ...
public   class   TestDate   {             public   TestDate() {             }             public   static   void   main(String[]   args)  {                     String   dateStart   =   "2004-02-27";                     String   dateEnd   =   "2004-03-02";                   ...
windows下,my.ini文件中 [mysqld] interactive_timeout=288000 wait_timeout=288000 # The TCP/IP Port the MySQL Server will listen on port=3306 Linux下,my.cnf文件中 [mysqld] interactive_timeout=288000 wait_timeout=288000
nano /root/start #!/bin/sh cd /root/workspace/start ./start.sh 加上权限chmod 777 /root/start 创建文件nano /root/workspace/start/start.sh 内容如下 #!/bin/sh ant start 编辑这个文件 nano /etc/rc.local 加入 /root/start 重启测试 在/root下创建一个文件 nano installKey 内容如下 cd /root/workspace/install ./install.sh 保存文件 给文件附上权限 chmod 777 ...
Global site tag (gtag.js) - Google Analytics