<?xml version="1.0" encoding="gb2312"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="zh-cn">
    
    <title>SpringTang's Notes</title> 
<link rel="alternate" type="text/html" href="http://SpringTang.itpub.net" /> 
 
<modified>Mon,22 03 2010 13:26:38</modified> 
<tagline></tagline> 
<generator url="http://www.plogworld.net/" version="1.0.1">pLog</generator> 
 
<copyright>Copyright (c) SpringTang</copyright> 
    
 <entry> 
 <id>tag:post:blog.itpub.net,Fri,14 09 2007 18:08:26</id>
 <title>qq也可以用</title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/395346" /> 
  
 <modified>Fri,14 09 2007 18:08:26</modified> 
 <issued>Fri,14 09 2007 18:08:26</issued> 
 <created>Fri,14 09 2007 18:08:26</created> 
 <summary type="text/plain"> 以前对qq不感冒，不过现在感觉还可以，至少用起来方便。</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
生活琐事
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 以前对qq不感冒，不过现在感觉还可以，至少用起来方便。</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Thu,06 09 2007 17:32:18</id>
 <title>利用压缩网页来提升网站浏览速度 </title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/392869" /> 
  
 <modified>Thu,06 09 2007 17:32:18</modified> 
 <issued>Thu,06 09 2007 17:32:18</issued> 
 <created>Thu,06 09 2007 17:32:18</created> 
 <summary type="text/plain"> 本文转自: http://www.ibm.com/developerworks/cn/web/wa-lo-webcompress/index.html网站的访问速度是由多个因素所共同决定的，这些因素例如应用程序的响应速度、网络带宽、服务器性能、与客户端之间的网络传输速度等等。其中最重要的一个因素是应用程序本身的响应速度，因此当你为网站性能所苦恼时，你第一个需要着手进行处理的便是尽可能的提升应用程序的执行速度，你可以使用缓存或者是优化代码的执行效率来提升应用程序的速度。但是，本文并不是介绍如何来提升应用程序的执行效率，前面提到的只不过是为了防止您病急乱投医。在确保您的...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
软件开发杂粹
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 本文转自: http://www.ibm.com/developerworks/cn/web/wa-lo-webcompress/index.html网站的访问速度是由多个因素所共同决定的，这些因素例如应用程序的响应速度、网络带宽、服务器性能、与客户端之间的网络传输速度等等。其中最重要的一个因素是应用程序本身的响应速度，因此当你为网站性能所苦恼时，你第一个需要着手进行处理的便是尽可能的提升应用程序的执行速度，你可以使用缓存或者是优化代码的执行效率来提升应用程序的速度。但是，本文并不是介绍如何来提升应用程序的执行效率，前面提到的只不过是为了防止您病急乱投医。在确保您的...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Thu,06 09 2007 10:56:57</id>
 <title>mysql 远程链接错误 ERROR 1130</title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/392771" /> 
  
 <modified>Thu,06 09 2007 10:56:57</modified> 
 <issued>Thu,06 09 2007 10:56:57</issued> 
 <created>Thu,06 09 2007 10:56:57</created> 
 <summary type="text/plain"> 用MySQL-Front连接mysql的时候发生的这个错误ERROR 1130: Host 129.2.1.100 is not allowed to connect to this MySQL server1。 改表法。可能是你的帐号不允许从远程登陆，只能在localhost。这个时候只要在localhost的那台电脑，登入mysql后，更改 “mysql” 数据库里的 “user” 表里的 “host” 项，从”localhost”改称”%”mysql -u root -pmysql&gt;use mysql;mysql&gt;update user set host = ‘%’ where user =’root’;mysql&gt;flush privileges;mysql&gt;select ‘host’,'user’ from user where user=’root’;现在就可以连接了！2. 授权...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
其他数据库技术
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 用MySQL-Front连接mysql的时候发生的这个错误ERROR 1130: Host 129.2.1.100 is not allowed to connect to this MySQL server1。 改表法。可能是你的帐号不允许从远程登陆，只能在localhost。这个时候只要在localhost的那台电脑，登入mysql后，更改 “mysql” 数据库里的 “user” 表里的 “host” 项，从”localhost”改称”%”mysql -u root -pmysql&gt;use mysql;mysql&gt;update user set host = ‘%’ where user =’root’;mysql&gt;flush privileges;mysql&gt;select ‘host’,'user’ from user where user=’root’;现在就可以连接了！2. 授权...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Fri,31 08 2007 17:10:28</id>
 <title>Information Codes 及网络状态</title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/390021" /> 
  
 <modified>Fri,31 08 2007 17:10:28</modified> 
 <issued>Fri,31 08 2007 17:10:28</issued> 
 <created>Fri,31 08 2007 17:10:28</created> 
 <summary type="text/plain"> Error # Info Error Code: 100 Info Continue The request was successful. The process can now continue.101 Info Switching Protocols The request for the server to switch protocols was accepted, such as a switch from ftp to http.Success Codes Error # Info Error Code 200 Info OK The item requested of the server is available (keep in mind, available, not accepted or completed).201 Info Created 202 Info Accepted 203 Info Non-Authoritative Information 204 Info No Content 205 Info Reset Content 206 Info P...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
网络、信息安全及系统集成
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 Error # Info Error Code: 100 Info Continue The request was successful. The process can now continue.101 Info Switching Protocols The request for the server to switch protocols was accepted, such as a switch from ftp to http.Success Codes Error # Info Error Code 200 Info OK The item requested of the server is available (keep in mind, available, not accepted or completed).201 Info Created 202 Info Accepted 203 Info Non-Authoritative Information 204 Info No Content 205 Info Reset Content 206 Info P...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Fri,31 08 2007 16:49:16</id>
 <title>ST's Ch02 修改Oracle User Process。</title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/390016" /> 
  
 <modified>Fri,31 08 2007 16:49:16</modified> 
 <issued>Fri,31 08 2007 16:49:16</issued> 
 <created>Fri,31 08 2007 16:49:16</created> 
 <summary type="text/plain"> 1： 第一种方法: 在 Oracle 企业管理器例程--&gt;会话中可以查看当前连接到数据库的详细信息 第二种方法: 在oracle安装目录下，例如： oracleadminxxxpfileinit.ora 找到 processes=150 其中XXX代表你的数据库实例名 这个值就是Oracle 的最大连接数，默认安装时是150个连接，也可以对这个值进行修改，但是要注意的是:用户最大连接数跟你的硬件配置有关,所以要谨慎 第三种方法: SQLPLUS下运行:alter system set processes=250 scope=spfile; 2： strings SPFILEORACLE10.ORA &gt; initoracle10.ora 然后按以上1中说法，改process的值 并删除SPFIL...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
Oracle tour
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 1： 第一种方法: 在 Oracle 企业管理器例程--&gt;会话中可以查看当前连接到数据库的详细信息 第二种方法: 在oracle安装目录下，例如： oracleadminxxxpfileinit.ora 找到 processes=150 其中XXX代表你的数据库实例名 这个值就是Oracle 的最大连接数，默认安装时是150个连接，也可以对这个值进行修改，但是要注意的是:用户最大连接数跟你的硬件配置有关,所以要谨慎 第三种方法: SQLPLUS下运行:alter system set processes=250 scope=spfile; 2： strings SPFILEORACLE10.ORA &gt; initoracle10.ora 然后按以上1中说法，改process的值 并删除SPFIL...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Fri,31 08 2007 16:22:03</id>
 <title>ST 's Ch01 Oracle常识及常用SQL </title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/390008" /> 
  
 <modified>Fri,31 08 2007 16:22:03</modified> 
 <issued>Fri,31 08 2007 16:22:03</issued> 
 <created>Fri,31 08 2007 16:22:03</created> 
 <summary type="text/plain"> Oracle不得不知道的问题 
一个表空间只能属于一个数据库每个数据库至少有一个控制文件（建议3个并分别存在不同的磁盘上）每个数据库至少有一个表空间（System表空间）每个数据库至少两个联机日志文件（redoLog文件）一个数据文件只能属于一个表空间一个数据文件一旦加入到一个表空间中就不能被移除，也不能加入到其他表空间中建立新的表空间需要建立新的数据文件数据文件被Oracle格式化为Oracle块，且块的大小在建立数据库是指定，以后不能更改单一一个事务不能跨越多个回滚段索引表不含ROWID一个Oracle块的最大大小为16KB（2K，4K，8K，...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
Oracle tour
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 Oracle不得不知道的问题 
一个表空间只能属于一个数据库每个数据库至少有一个控制文件（建议3个并分别存在不同的磁盘上）每个数据库至少有一个表空间（System表空间）每个数据库至少两个联机日志文件（redoLog文件）一个数据文件只能属于一个表空间一个数据文件一旦加入到一个表空间中就不能被移除，也不能加入到其他表空间中建立新的表空间需要建立新的数据文件数据文件被Oracle格式化为Oracle块，且块的大小在建立数据库是指定，以后不能更改单一一个事务不能跨越多个回滚段索引表不含ROWID一个Oracle块的最大大小为16KB（2K，4K，8K，...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Thu,30 08 2007 18:23:19</id>
 <title>Standdby Oracle 10G的一些使用命令</title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/389782" /> 
  
 <modified>Thu,30 08 2007 18:23:19</modified> 
 <issued>Thu,30 08 2007 18:23:19</issued> 
 <created>Thu,30 08 2007 18:23:19</created> 
 <summary type="text/plain"> sqlplus /nologconn sys/password@physicalstandby--启动到恢复模式startup mount;alter database recover managed standby database disconnect from session;--从恢复管理模式切换到只读模式alter database recover managed standby database cancel;alter database open;--从只读模式切换到恢复管理模式alter database recover managed standby database disconnect from session;--关闭standby数据库alter database recover managed standby database cancel;shutdown immediate;--直接启动到只读模式startup;--通过MRP0进程是否存在确...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
Oracle tour
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 sqlplus /nologconn sys/password@physicalstandby--启动到恢复模式startup mount;alter database recover managed standby database disconnect from session;--从恢复管理模式切换到只读模式alter database recover managed standby database cancel;alter database open;--从只读模式切换到恢复管理模式alter database recover managed standby database disconnect from session;--关闭standby数据库alter database recover managed standby database cancel;shutdown immediate;--直接启动到只读模式startup;--通过MRP0进程是否存在确...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Thu,24 08 2006 11:25:05</id>
 <title>oracle 杂类</title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/198102" /> 
  
 <modified>Thu,24 08 2006 11:25:05</modified> 
 <issued>Thu,24 08 2006 11:25:05</issued> 
 <created>Thu,24 08 2006 11:25:05</created> 
 <summary type="text/plain"> explain plan用EXPLAIN PLAN 分析SQL语句 如何生成explain plan? 　　解答:运行utlxplan.sql. 建立plan 表　　针对特定SQL语句，使用 explain plan set statement_id = 'tst1' into plan_table　　运行utlxplp.sql 或 utlxpls.sql察看explain planEXPLAIN PLAN 是一个很好的分析SQL语句的工具,它甚至可以在不执行SQL的情况下分析语句. 通过分析,我们就可以知道ORACLE是怎么样连接表,使用什么方式扫描表(索引扫描或全表扫描)以及使用到的索引名称. 你需要按照从里到外,从上到下的次序解读分析的结果. EXPLAIN PLAN分析的结果是用缩进的格式...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
Oracle tour
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 explain plan用EXPLAIN PLAN 分析SQL语句 如何生成explain plan? 　　解答:运行utlxplan.sql. 建立plan 表　　针对特定SQL语句，使用 explain plan set statement_id = 'tst1' into plan_table　　运行utlxplp.sql 或 utlxpls.sql察看explain planEXPLAIN PLAN 是一个很好的分析SQL语句的工具,它甚至可以在不执行SQL的情况下分析语句. 通过分析,我们就可以知道ORACLE是怎么样连接表,使用什么方式扫描表(索引扫描或全表扫描)以及使用到的索引名称. 你需要按照从里到外,从上到下的次序解读分析的结果. EXPLAIN PLAN分析的结果是用缩进的格式...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Wed,23 08 2006 10:12:40</id>
 <title>MVC在Web系统中的模式与应用</title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/197451" /> 
  
 <modified>Wed,23 08 2006 10:12:40</modified> 
 <issued>Wed,23 08 2006 10:12:40</issued> 
 <created>Wed,23 08 2006 10:12:40</created> 
 <summary type="text/plain"> 面向对象的设计模式是经验的总结，MVC思想是原先用于构建用户界面的。这篇文章主要论述了如何在新的Web应用领域中使用设计模式和MVC架构。文章首先介绍了设计模式的概念和特点，以及MVC架构的设计思想，并分析了MVC架构中包含的几种主要的模式。然后根据Web应用系统的特点，就如何应用模式和MVC架构提出了一些设计思路。 1. 引言1.1 设计模式面向对象技术的出现和应用大大提高了软件的重用性和软件的质量。面向对象的编程也比以往的各种编程模式要简单和高效，但是面向对象的设计方法要比以往的设计方法要复杂和有技巧得多，一个良好的设计...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
Java research
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 面向对象的设计模式是经验的总结，MVC思想是原先用于构建用户界面的。这篇文章主要论述了如何在新的Web应用领域中使用设计模式和MVC架构。文章首先介绍了设计模式的概念和特点，以及MVC架构的设计思想，并分析了MVC架构中包含的几种主要的模式。然后根据Web应用系统的特点，就如何应用模式和MVC架构提出了一些设计思路。 1. 引言1.1 设计模式面向对象技术的出现和应用大大提高了软件的重用性和软件的质量。面向对象的编程也比以往的各种编程模式要简单和高效，但是面向对象的设计方法要比以往的设计方法要复杂和有技巧得多，一个良好的设计...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Tue,27 06 2006 14:44:58</id>
 <title>Chapter 1  JDBC,PROCEDURE学习笔记</title> 
 <link rel="alternate" type="text/html" href="http://SpringTang.itpub.net/post/15046/127344" /> 
  
 <modified>Tue,27 06 2006 14:44:58</modified> 
 <issued>Tue,27 06 2006 14:44:58</issued> 
 <created>Tue,27 06 2006 14:44:58</created> 
 <summary type="text/plain"> 下面是一个sample讲了oracle如何与java连接 工作.package metadata;import java.sql.Connection; import java.sql.DriverManager;import java.sql.SQLException;import oracle.jdbc.OracleDriver;public class JDBCMetaData { public static String connectionString = &quot;jdbc:oracle:thin:@10.124.10.107:1521:tiger&quot;; private static String uid; private static String pwd; //public static String connectionString = &quot;jdbc:default:connection:&quot;; public static Connection getConnection() throws SQLException { DriverManager.reg...</summary> 
 <author> 
  
 <name>SpringTang</name> 
 <url>http://SpringTang.itpub.net</url> 
 <email>tliq@163.com</email> 
</author> 
<dc:subject>
Oracle tour
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://SpringTang.itpub.net"> 
 下面是一个sample讲了oracle如何与java连接 工作.package metadata;import java.sql.Connection; import java.sql.DriverManager;import java.sql.SQLException;import oracle.jdbc.OracleDriver;public class JDBCMetaData { public static String connectionString = &quot;jdbc:oracle:thin:@10.124.10.107:1521:tiger&quot;; private static String uid; private static String pwd; //public static String connectionString = &quot;jdbc:default:connection:&quot;; public static Connection getConnection() throws SQLException { DriverManager.reg...</content> 
</entry> 
     </feed>


