<?xml version="1.0" encoding="gbk"?>
			<?xml-stylesheet type="text/css" href="http://space.itpub.net/css/rss.css"?>
			<rss version="2.0">
			  <channel>
			    <title>byfree的个人空间</title>
			    <link>http://space.itpub.net/?uid-17997</link>
			    <description></description>
			    <copyright>Copyright(C) byfree的个人空间</copyright>
			    <generator>SupeSite/X-Space</generator>
			    <lastBuildDate>Fri, 25 Jul 2008 15:33:28 GMT</lastBuildDate><item>
								<title>Oracle的锁</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-374586</link>
								<description><![CDATA[<P>参考资料：《Oracle 9i&amp;10g编程艺术》</P>
<P>锁的类型：<BR>DML锁：通常在SELECT、INSERT、UPDATE、MERGE和DELETE语句中出现，DML锁允许并发执行数据修改，只在特定数据行上锁。<BR>DDL锁：通常在CREATE和ALTER语句中出现，DDL锁可以保护对象结构定义。<BR>内部锁...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 08 Jul 2008 16:37:20 GMT</pubDate>
							</item>
							<item>
								<title>RHEL4.5 for x86的ORACLE SGA扩展</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-366117</link>
								<description><![CDATA[<P>昨天按照biti大师的文章，在我的生产库上降低了SGA的起点。原理我就不介绍了，这里只记录我的操作过程及结果。</P>
<P>调整前，先查看数据库的共享内存段信息：<BR># ipcs <BR>------ Shared Memory Segments --------<BR>key&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Fri, 27 Jun 2008 13:25:06 GMT</pubDate>
							</item>
							<item>
								<title>sqlplus的帮助信息</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-349388</link>
								<description><![CDATA[<P>在一个文档中看到如何显示sqlplus的帮助信息，具体操作如下：</P>
<P>SQL&gt; ? index</P>
<P>Enter Help [topic] for help.</P>
<P>&nbsp;@&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; COPY&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Mon, 16 Jun 2008 17:40:59 GMT</pubDate>
							</item>
							<item>
								<title>删除listener中被占用的2100、8080端口</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-293546</link>
								<description><![CDATA[<P>在网上搜索，有人说修改$ORACLE_HOME/apache/apache/conf/http.conf文件中的端口设置，可惜我没找到，看来不行。<BR>后来找到shahand版主的办法：<BR>SQL&gt; @?/rdbms/admin/catnoqm.sql<BR>重启listener服务，2100、8080就被释放了</P>
<P>本地测试成功，然后到服务...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Thu, 22 May 2008 17:53:13 GMT</pubDate>
							</item>
							<item>
								<title>10g的在线重定义实验</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-293481</link>
								<description><![CDATA[<P>参考杨大师的：<A href="http://space.itpub.net/4227/viewspace-168447">http://space.itpub.net/4227/viewspace-168447</A></P>
<P>10g在dbms_redefinition包中增加了COPY_TABLE_DEPENDENTS过程，用于索引、约束、触发器、统计信息和授权的表的在线重定义</P>
<P>实...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Thu, 22 May 2008 10:42:41 GMT</pubDate>
							</item>
							<item>
								<title>Discuz的安装</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-288381</link>
								<description><![CDATA[<P>昨天工作需要安装了Discuz，感觉它的功能很强大，所以使用它的论坛也很多啊！</P>
<P>我安装使用的软件包：<BR>Discuz_6.1.0_SC_UTF8.zip<BR>UCenter_1.0.0_SC_UTF8.zip<BR>ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz<BR>httpd-2.2.8.tar.gz<BR>mysql-5.0.22.tar...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Wed, 21 May 2008 13:34:29 GMT</pubDate>
							</item>
							<item>
								<title>在线重定义表</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-281012</link>
								<description><![CDATA[<P>我使用在线重定义表的原因是：修改表的某字段为LOB型、将大表修改为分区表、修改表的存储结构使其生效（pctfree、freelists）。<BR>对有主键的表做在线重定义：<BR>1.检查表是否可在线重定义<BR>SQL&gt; exec dbms_redefinition.can_redef_table('USER','T');<BR>无异常...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 20 May 2008 10:55:52 GMT</pubDate>
							</item>
							<item>
								<title>sqlplus环境设置</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-277818</link>
								<description><![CDATA[<P>发现一个比较全的sqlplus环境设置，在此记录，备查。</P>set appinfo ON<BR>set appinfo "SQL*Plus"<BR>set arraysize 15<BR>set autocommit OFF<BR>set autoprint OFF<BR>set autorecovery OFF<BR>set autotrace OFF<BR>set blockterminator "."<BR>set cmdsep OFF<BR...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Mon, 19 May 2008 17:07:30 GMT</pubDate>
							</item>
							<item>
								<title>VMware上安装Oracle 10g RAC for RHEL4</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-269264</link>
								<description><![CDATA[<P>参考文档：<BR><A href="http://shiyihai.itpub.net">http://shiyihai.itpub.net</A><BR>《使用 VMware Server 在 Oracle Enterprise Linux 上安装 Oracle RAC 10g》</P>
<P>OS环境：<BR>windows XP<BR>软件环境：<BR>VMware GSX Server 3.2.1<BR>Red Hat AS4.5<BR>Or...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Fri, 16 May 2008 11:30:32 GMT</pubDate>
							</item>
							<item>
								<title>使用sql loader导数据</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-267355</link>
								<description><![CDATA[<P>过几天需要导数据，今天先做个准备工作。由于要导的表结构不一样，数据量也不小，所以想到了sql loader。<BR>首先在网上找到如何将表中的数据生成文本文件，很简单用spool，但过程中还是遇到一些小问题。</P>
<P>SQL&gt; set heading off;<BR>SQL&gt; set lines 200;<...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Wed, 14 May 2008 17:47:58 GMT</pubDate>
							</item>
							<item>
								<title>RDA的安装使用</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-265351</link>
								<description><![CDATA[Oracle Remote Diagnostic Agent (RDA)<br>下载相应的包rda_4.11-080307.tar.gz<br><br># tar xvfz rda_4.11-080307.tar.gz<br># chown -R oracle:dba rda<br># su - oracle<br>$ cd rda<br><br>验证rda<br>$ ./rda.sh -cv<br><br>初始化rda<br>$ ./rda.sh -S<br>选择初始...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 13 May 2008 17:40:12 GMT</pubDate>
							</item>
							<item>
								<title>rhel5安装oracle10g</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-265241</link>
								<description><![CDATA[<P>简单记录下自己安装时遇到的一些问题。</P>
<P>1.准备好安装环境<BR>根据RHEL4上的安装方法，检查下列包是否安装<BR>binutils<BR>compat-db<BR>control-center<BR>gcc<BR>gcc-c++<BR>glibc<BR>glibc-common<BR>gnome-libs<BR>libstdc++<BR>libstdc++-devel<BR>make<BR...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 13 May 2008 10:05:32 GMT</pubDate>
							</item>
							<item>
								<title>CACTI安装配置</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-263140</link>
								<description><![CDATA[前段时间在网上找了很多cacti的安装配置文章学习，下面是我的参考后的安装配置：<BR>OS:Red Hat Enterprise Linux AS release 4 (Nahant Update 4)<BR>工具包：<BR>httpd-2.2.8.tar.gz<BR>mysql-5.0.22.tar.gz<BR>php-5.2.5.tar.gz<BR>cacti-0.8.7b.tar.gz<BR>rrdtool-1.0...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Thu, 08 May 2008 10:30:53 GMT</pubDate>
							</item>
							<item>
								<title>登录还是登陆</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-262846</link>
								<description><![CDATA[
			这两个词从字面上很好理解，登录是指将自己的名字或帐号等信息录入到某个系统中，然后进行相应权限的操作。登陆则是某人或军队到达了某个地方，一般是指从海上到达了陆地。<br>现在在很多IT技术中出现的“登陆”满天飞，有人说得很对，当使用拼音输入法时，"登录"、“...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Wed, 07 May 2008 13:48:20 GMT</pubDate>
							</item>
							<item>
								<title>什么是云计算</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-262797</link>
								<description><![CDATA[在网上找了几个简单易懂的解释：<br>云计算是一种新兴的共享基础架构的方法，它可以将巨大的系统池连接在一起以提供各种IT服务。<br>它使计算不仅仅局限在本地机器或远程服务器上，它通过架构一个分布的、可全球访问的资源结构，使数据中心在类似互联网的环境下运行计算。...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Wed, 07 May 2008 13:25:17 GMT</pubDate>
							</item>
							<item>
								<title>用netstat命令查看系统是否有病毒或其它异常</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-261571</link>
								<description><![CDATA[<P>在windows和各种*nux中都有netstat命令，只是命令用法略有不同，下面以windows和linux为例做介绍。<BR>病毒、木马在windows系统中真是多如牛毛，再加上一些什么钓鱼网站的，使很多人因此十分害怕使用电脑，更害怕在网上使用网银。其实要防止自己的信息或某某密码不被盗...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 06 May 2008 18:08:42 GMT</pubDate>
							</item>
							<item>
								<title>vi命令的常用操作</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-261561</link>
								<description><![CDATA[<P>vi -r filename ：在上次用vi编辑时发生系统崩溃，恢复filename</P>
<P>h ：光标左移一个字符<BR>l ：光标右移一个字符<BR>k ：光标上移一个字符<BR>j ：光标下移一个字符<BR>0 ：光标移至当前行首（数字零）<BR>$ ：光标移至当前行尾<BR>nG：光标移至第n行首<BR>n$：...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 06 May 2008 17:09:40 GMT</pubDate>
							</item>
							<item>
								<title>在RHEL5中开启XDMCP</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-261556</link>
								<description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 21pt"><FONT size=3><SPAN lang=EN-US><FONT face="Times New Roman">RHEL4</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New ...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 06 May 2008 16:30:54 GMT</pubDate>
							</item>
							<item>
								<title>调整linux系统时间和时区</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-261549</link>
								<description><![CDATA[<P>在网上找了一些资料，在这简单记录，备忘（就象DB一样数据丢失了来这里恢复）</P>
<P>修改时区：<BR># cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime<BR>修改为中国的东八区</P>
<P># vi /etc/sysconfig/clock<BR>ZONE="Asia/Shanghai"<BR>UTC=false<BR>ARC=...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 06 May 2008 15:52:40 GMT</pubDate>
							</item>
							<item>
								<title>ORA-00600: internal error code, arguments: [729], [4280], [space leak]</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-261538</link>
								<description><![CDATA[<P>前几天一朋友给我发了个ORA-00600，出错的原因是将10.2.0升级到10.2.0.3的过程中，前面升级一直都是很顺利的，但当执行了utlrp.sql后，第二次又执行了utlrp.sql（不知道他怎么搞的？）后，情况出现了。当shutdown时，出现ORA-00600: internal error code, arguments: [...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 06 May 2008 15:34:33 GMT</pubDate>
							</item>
							<item>
								<title>又一个复合索引的SQL调优</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-260439</link>
								<description><![CDATA[<P>昨天做了一个STATSPACK报告，今天看了一下，发现有这样一条SQL排在了逻辑读的前列：<BR>select * from (select row_.*,rownum rownum_ from (<BR>select * from (select ID,TOPIC,CATALOG_ID,POST_TIME, PLAYER_ID, TYPE from forum_thread where&nbsp; type=5 and cat...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Mon, 05 May 2008 18:14:46 GMT</pubDate>
							</item>
							<item>
								<title>Linux中iptables防火墙的简单配置</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-260235</link>
								<description><![CDATA[<P>1.清除filter中所有规则链的规则<BR># iptables -F</P>
<P>2.设置INPUT链的策略<BR># iptables -A INPUT -i lo -j ACCEPT<BR># iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT<BR># iptables -A INPUT -s 10.10.10.10 -p tcp -m state --state NE...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Mon, 05 May 2008 11:22:45 GMT</pubDate>
							</item>
							<item>
								<title>in和exists的对比</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-260044</link>
								<description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">首先我给出两个等价的</SPAN><SPAN lang=EN-US><FONT face="Times New Roman">SQL...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Sun, 04 May 2008 17:41:05 GMT</pubDate>
							</item>
							<item>
								<title>热点块问题中pctfree的设置</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-257139</link>
								<description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 21pt"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">一段时间前做了一个</SPAN><SPAN lang=EN-US><FONT face="Tim...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Wed, 30 Apr 2008 14:10:41 GMT</pubDate>
							</item>
							<item>
								<title>增加复合索引优化SQL的简单过程</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-256888</link>
								<description><![CDATA[<P>待优化SQL:<BR>select t2.emperor,t1.* from t1,t2 where t1.countryid=t2.id and t1.CountryId=1010 and t1.DistrictId=1 and playerId&lt;&gt;100</P>
<P>T1表上的索引:<BR>SQL&gt; select index_name,column_name from user_ind_columns where table_name='T1';</P...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Tue, 29 Apr 2008 17:36:45 GMT</pubDate>
							</item>
							<item>
								<title>连接RAC时的ORA-12545问题</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-255421</link>
								<description><![CDATA[<P>参考：<A href="http://yangtingkun.itpub.net/post/468/273645">http://yangtingkun.itpub.net/post/468/273645</A></P>
<P>我的环境：oracle 10g RAC for vmware<BR>在远端client(9i、11g都试过)连接10g RAC经常出现"ORA-12545: 因目标主机或对象不存在, 连接失败"，...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Mon, 28 Apr 2008 17:33:21 GMT</pubDate>
							</item>
							<item>
								<title>Linux ntp服务器的配置</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-250472</link>
								<description><![CDATA[<P>ntp服务器端(192.168.1.96)<BR>1. # rpm -ivh ntp-4.1.2-4.EL3.1.i386.rpm<BR>2. # vi /etc/ntp.conf<BR>注释一行<BR>restrict default ignore<BR>加入一行<BR>restrict 192.168.1.0 mask 255.255.255.0 notrust nomodify notrap</P>
<P>#cat /etc/ntp.conf</P>
<P>#...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Thu, 24 Apr 2008 14:19:04 GMT</pubDate>
							</item>
							<item>
								<title>Linux的软RAID</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-249091</link>
								<description><![CDATA[<P>[root@localhost ~]# uname -a<BR>Linux localhost.localdomain 2.6.9-55.EL #1 Fri Apr 20 16:35:59 EDT 2007 i686 i686 i386 GNU/Linux<BR>1.查看是否已有mdadm包：<BR>[root@localhost ~]# rpm -qa|grep mdadm<BR>mdadm-1.12.0-2</P>
<P>2.准备足够用的盘或LV<BR>准...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Wed, 23 Apr 2008 14:08:37 GMT</pubDate>
							</item>
							<item>
								<title>Linux上安装iscsi服务器</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-249077</link>
								<description><![CDATA[<P>1.服务器端：iscsitarget-0.4.16.tar.gz<BR>#tar xvfz iscsitarget-0.4.16.tar.gz<BR>#cd iscsitarget-0.4.16<BR>#make<BR>[root@localhost iscsitarget-0.4.16]# make<BR>Applying Patch compat-2.6.22-2.6.23.patch<BR>patching file kernel/block-io.c<BR>patching ...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Wed, 23 Apr 2008 13:46:42 GMT</pubDate>
							</item>
							<item>
								<title>Linux双网卡负载均衡</title>
								<link>http://space.itpub.net/?uid-17997-action-viewspace-itemid-249070</link>
								<description><![CDATA[<P>Linux双网卡负载均衡</P>
<P>[root@localhost ~]# uname -a<BR>Linux localhost.localdomain 2.6.9-55.EL #1 Fri Apr 20 16:35:59 EDT 2007 i686 i686 i386 GNU/Linux<BR>查看linux是否支持bonding，如下信息表示已支持<BR>[root@localhost ~]# modinfo bonding<BR>fi...]]></description>
								<category>blog</category>
								<author>byfree</author>
								<pubDate>Wed, 23 Apr 2008 13:32:19 GMT</pubDate>
							</item>
							
		</channel>
	</rss>