<?xml version="1.0" encoding="gb2312"?>
<?xml-stylesheet href="http://blog.itpub.net//styles/rss.css" type="text/css"?>

<rdf:RDF 
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  xmlns="http://my.netscape.com/rdf/simple/0.9/"
>
    
     <channel>
  <title>SpringTang's Notes</title>
  <link>http://SpringTang.itpub.net</link>
  <description></description>
 </channel>
    <item>
<title>qq也可以用</title>
<description>以前对qq不感冒，不过现在感觉还可以，至少用起来方便。</description>
<link>http://SpringTang.itpub.net/post/15046/395346</link>
<pubDate>Fri,14 09 2007 18:08:26</pubDate>
</item>
<item>
<title>利用压缩网页来提升网站浏览速度 </title>
<description>本文转自: http://www.ibm.com/developerworks/cn/web/wa-lo-webcompress/index.html网站的访问速度是由多个因素所共同决定的，这些因素例如应用程序的响应速度、网络带宽、服务器性能、与客户端之间的网络传输速度等等。其中最重要的一个因素是应用程序本身的响应速度，因此当你为网站性能所苦恼时，你第一个需要着手进行处理的便是尽可能的提升应用程序的执行速度，你可以使用缓存或者是优化代码的执行效率来提升应用程序的速度。但是，本文并不是介绍如何来提升应用程序的执行效率，前面提到的只不过是为了防止您病急乱投医。在确保您的...</description>
<link>http://SpringTang.itpub.net/post/15046/392869</link>
<pubDate>Thu,06 09 2007 17:32:18</pubDate>
</item>
<item>
<title>mysql 远程链接错误 ERROR 1130</title>
<description>用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. 授权...</description>
<link>http://SpringTang.itpub.net/post/15046/392771</link>
<pubDate>Thu,06 09 2007 10:56:57</pubDate>
</item>
<item>
<title>Information Codes 及网络状态</title>
<description>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...</description>
<link>http://SpringTang.itpub.net/post/15046/390021</link>
<pubDate>Fri,31 08 2007 17:10:28</pubDate>
</item>
<item>
<title>ST's Ch02 修改Oracle User Process。</title>
<description>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...</description>
<link>http://SpringTang.itpub.net/post/15046/390016</link>
<pubDate>Fri,31 08 2007 16:49:16</pubDate>
</item>
<item>
<title>ST 's Ch01 Oracle常识及常用SQL </title>
<description>Oracle不得不知道的问题 
一个表空间只能属于一个数据库每个数据库至少有一个控制文件（建议3个并分别存在不同的磁盘上）每个数据库至少有一个表空间（System表空间）每个数据库至少两个联机日志文件（redoLog文件）一个数据文件只能属于一个表空间一个数据文件一旦加入到一个表空间中就不能被移除，也不能加入到其他表空间中建立新的表空间需要建立新的数据文件数据文件被Oracle格式化为Oracle块，且块的大小在建立数据库是指定，以后不能更改单一一个事务不能跨越多个回滚段索引表不含ROWID一个Oracle块的最大大小为16KB（2K，4K，8K，...</description>
<link>http://SpringTang.itpub.net/post/15046/390008</link>
<pubDate>Fri,31 08 2007 16:22:03</pubDate>
</item>
<item>
<title>Standdby Oracle 10G的一些使用命令</title>
<description>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进程是否存在确...</description>
<link>http://SpringTang.itpub.net/post/15046/389782</link>
<pubDate>Thu,30 08 2007 18:23:19</pubDate>
</item>
<item>
<title>oracle 杂类</title>
<description>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分析的结果是用缩进的格式...</description>
<link>http://SpringTang.itpub.net/post/15046/198102</link>
<pubDate>Thu,24 08 2006 11:25:05</pubDate>
</item>
<item>
<title>MVC在Web系统中的模式与应用</title>
<description>面向对象的设计模式是经验的总结，MVC思想是原先用于构建用户界面的。这篇文章主要论述了如何在新的Web应用领域中使用设计模式和MVC架构。文章首先介绍了设计模式的概念和特点，以及MVC架构的设计思想，并分析了MVC架构中包含的几种主要的模式。然后根据Web应用系统的特点，就如何应用模式和MVC架构提出了一些设计思路。 1. 引言1.1 设计模式面向对象技术的出现和应用大大提高了软件的重用性和软件的质量。面向对象的编程也比以往的各种编程模式要简单和高效，但是面向对象的设计方法要比以往的设计方法要复杂和有技巧得多，一个良好的设计...</description>
<link>http://SpringTang.itpub.net/post/15046/197451</link>
<pubDate>Wed,23 08 2006 10:12:40</pubDate>
</item>
<item>
<title>Chapter 1  JDBC,PROCEDURE学习笔记</title>
<description>下面是一个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...</description>
<link>http://SpringTang.itpub.net/post/15046/127344</link>
<pubDate>Tue,27 06 2006 14:44:58</pubDate>
</item>
 </rdf:RDF>


