`
xuechenyoyo
  • 浏览: 55394 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
 有个误区需要走出来,就是 所谓的1打印0不打印,是指在24个点阵内部,不是指图片数据。 举例,每个24个点阵的图片内容,用真实数据表示可能是{12,56,0},那么 12 的二进制是00001100,那么这8个像素点在3,4位处打印.
[应用]Oracle10G多台服务器同步高级复制 【原文】http://mingling123456.blog.163.com/blog/static/106618920077210334379/ 需求:公司网站需要在北京网通和上海电信建两台Oracle10G服务器,数据必须实时同步,本来准备用物理镜向的RAC,但它对于数据通信占用流太大,而它的主要功能是做为分步式数据备份使用,而现在公司需求是两台数据时实同步,所以选择实时高级复制; 环境:Oracle版本10.2.0.1,安装路 ...
 /**        * get the cell by the id of the  widget that column bounded.        * @param wid the id of the bounded widget.        */       me.getCellById = function (wid){           var okCell;           me.foreachCell(function (cell){                if(cell.cellWidget && cell.cellWid ...
http://server.zdnet.com.cn/server/2008/0623/942477.shtml
【引用】【连接】http://blog.csdn.net/zgl_dm/article/details/2440306       表空间 : Oracle 的 UNDOTBS01.DBF 文件太大的解决办法 1 、 . 禁止 undo tablespace 自动增长 alter database datafile 'full_path/undotbs01.dbf' autoextend off; 2.-- 创建一个新的小空间的 undo tablespace create und ...
【引用】http://space.itpub.net/13726712/viewspace-687359 Author dengxm MAVEN环境搭建   空间管理 您的位置: ITPUB个人空间 » Dengximin » 日志 踏踏实实做人,认认真真做事 MAVEN环境搭建 上一篇 / 下一篇  2011-02-16 16:56:23 / 个人分类:JAVA开发 查看( 12 ) / 评论( 0 ) / 评分( 0 / 0 ) ...
【引用】http://dev.firnow.com/course/3_program/java/javajs/200853/112207.html       1.ApplicationContext context = new ClassPathXmlApplicationContext("beans-config.xml");  2.ApplicationContext context = new ClassPathXmlApplicationContext(                         new String[]    {"bea ...
Tomcat5集群中的SESSION复制 作者: Srini Penchikala;Sunny983 原文地址:http://www.onJava.com/pub/a/onjava/2004/11/24/replication1.Html 中文地址: http://www.matrix.org.cn/resource/article/43/43865_Tomcat_Clustering.html 关键词: Tomcat Clustering Tomcat 5服务器为集群和SESSION 复 制提供了集成的支持。本系列的第一篇文章将为大家提供SES ...
[引用]http://hi.baidu.com/hi521/blog/item/68b7c5ce018f910192457ea4.html 1.PreparedStatement是预编译的,对于批量处理可以大大提高效率. 也叫JDBC存储过程 2.使用 Statement 对象。 在对数据库只执行一次性存取的时侯,用 Statement 对象进行处理。PreparedStatement 对象的开销比Statement大,对于一次性操作并不会带来额外的好处。 3.statement每次执行sql语句,相关数据库都要执行sql语句的编译,preparedstatement是预 ...
if(document.all) {    document.getElementById(name).click(); } else {    var evt = document.createEvent("MouseEvents");    evt.initEvent("click", true, true);   document.getElementById(name).dispatchEvent(evt); }  
<script> function testDatatime(){ alert(!"2010-01-29 12:44:12.1022".isDateTime());      alert("2010-01-29 12:44:12.122".isDateTime());      alert(!"2010-01-29 24:44:12".isDateTime());      alert("2010-3-31 12:44:12".isDateTime());      aler ...
A: 基本配置 --------------- START ----------------- worker_processes  10; error_log  logs/error.log  error; pid        logs/nginx.pid; worker_rlimit_nofile 51200; events {     use epoll;     worker_connections  51200; } http {     include       mime.types;     default_type  application/octet-strea ...
一般来说项目的版本管理可以分为开发区,基线区,产品区。 做两个区的比较多,即开发区,基线区。而产品区则根据需要了。 开发区是最大的区,又叫主干(HEAD),包含所有的代码,所有的用户都可以commit,update。 基线区一般会用作测试(Base Line, Common Line),产品区顾名思意了。 基线区,产品区都是主干的branch(当然产品区也可以是基线区的branch)。 如何建立基线区:   先在开发区,做个branch,做分支前要打个tag。如果用Eclipse来做就方便多了,Eclipse会自动创建一个tag。具体方法是,将Head代码copy一份副本,倒入Eclipse ...
> iptables -I INPUT -p tcp --dport 8080 -j ACCEPT 本机: iptables -I INPUT -p tcp --dport 2222 -j ACCEPT 防火墙: iptables -I FORWARD -p tcp --dport 2222 -j ACCEPT  需要设置配置文件 /etc/sysconfig/iptables
【引用】-http://www.fjddbbs.com/thread-15139-1-3.html 【引用】-http://sh.edu51.net/html/diannaokecheng/diannaoITxuexiziliao/20090128/22689.html 表空间容量查看 脚本 select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size from dba_tablespaces t, dba_data_files d where t. ...
Global site tag (gtag.js) - Google Analytics