<?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>lottery009的个人空间</title>
			    <link>http://space.itpub.net/644902</link>
			    <description></description>
			    <copyright>Copyright(C) lottery009的个人空间</copyright>
			    <generator>SupeSite/X-Space</generator>
			    <lastBuildDate>Sat, 30 Aug 2008 17:04:09 GMT</lastBuildDate><item>
								<title>Oracle维护常用SQL语句整理四(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159247</link>
								<description><![CDATA[<u><font color="#800080">Oracle维护常用SQL语句整理四</font></u><br><p>IV) 性能相关内容   <br />   <br />-----------------------------------------------------------------------<br />1、捕捉运行很久的SQL </p><p>column username format a12 <br />column opn...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 05 Sep 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>Oracle维护常用SQL语句整理三</title>
								<link>http://space.itpub.net/644902/viewspace-159248</link>
								<description><![CDATA[<u><font color="#0000ff">Oracle维护常用SQL语句整理三</font></u><br><p>III) 进程相关内容</p><p>-----------------------------------------------------------------------<br />1、 求当前会话的SID，SERIAL#</p><p>SELECT Sid, Serial#<br />FROM V$session<br />W...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 05 Sep 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>Oracle维护常用SQL语句整理二</title>
								<link>http://space.itpub.net/644902/viewspace-159249</link>
								<description><![CDATA[<u><font color="#0000ff">Oracle维护常用SQL语句整理二</font></u><br><p>II) 空间状态相关内容</p><p>-----------------------------------------------------------------------<br />1、查看表空间的名称及大小 </p><p>SELECT t.Tablespace_Name, Round(SUM(Bytes / (...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 05 Sep 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>搞懂oracle字符集</title>
								<link>http://space.itpub.net/644902/viewspace-159244</link>
								<description><![CDATA[<span class="javascript" id="text8331247" style="FONT-SIZE: 12px"><font face="Verdana">搞懂oracle字符集</font></span><br><p><font face="verdana, arial, helvetica" size="2"><span class="javascript" id="text8331247" style="FONT-SIZE: 12px">搞懂oracle字符...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Sat, 01 Sep 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>判断字段中是否包含中文的方法(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159245</link>
								<description><![CDATA[判断字段中是否包含中文的方法(转)<br><p>SQL&gt; create table test(a varchar2(10));<br /><br />Table created.<br /><br />SQL&gt; insert into test values('鸟');<br /><br />1 row created.<br /><br />SQL&gt; commit;<br /><br />Commit complete.<br /><br />SQ...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Sat, 01 Sep 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>oracle9i 怎样自动通过trigger捕获DML 语句(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159246</link>
								<description><![CDATA[<span class="bold"><span class="smalltxt"><strong><font face="Comic Sans MS">oracle9i 怎样自动通过trigger捕获DML 语句(转)</font></strong></span></span><br>SQL&gt; desc t1 <br />  Name                                                  Null?    Type <br /...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Sat, 01 Sep 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>果想随机抽取其中4条记录</title>
								<link>http://space.itpub.net/644902/viewspace-159243</link>
								<description><![CDATA[<p>果想随机抽取其中4条记录</p><p>create table t as select * from all_objects where rownum &lt;= 5000;<br />set timing on</p><p>select object_name, object_id<br /> from ( select object_name, object_id<br />                  from t<br />                 ...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Tue, 28 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>物化视图的快速刷新</title>
								<link>http://space.itpub.net/644902/viewspace-159242</link>
								<description><![CDATA[<p>原文出处</p><p><a href="http://yangtingkun.itpub.net/post/468/14245">http://yangtingkun.itpub.net/post/468/14245</a></p><br><font face="宋体"><div class="storytext"><p style="TEXT-INDENT: 24pt"><span style="FONT-SIZE: 12pt; FONT-FAMILY: 宋体">物化视...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Mon, 27 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>solaris 下oracle的自启动关闭脚本</title>
								<link>http://space.itpub.net/644902/viewspace-159241</link>
								<description><![CDATA[<p>在/etc/init.d  dbora_start.sh<br />#!/bin/sh<br />ORA_HOME=/export/home/oracle/product/9.2.0<br />ORA_OWNER=oracle<br />su - $ORA_OWNER -c &quot;lsnrctl start&quot;<br />su - $ORA_OWNER -c &quot;sqlplus /nolog @$ORA_HOME/dbstart.sql&quot;</p><p>dbor...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 22 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>sqlldr 装载换行符(使用str属性)</title>
								<link>http://space.itpub.net/644902/viewspace-159240</link>
								<description><![CDATA[<p>sqlldr 装载换行符(使用str属性)<br />  windows可以使用:<br />  SQL&gt; select utl_raw.cast_to_raw('|'||chr(13)||chr(10)) from dual;<br /> UTL_RAW.CAST_TO_RAW('|'||CHR(13)||CHR(10))<br /> ---------------------------------------------------------------...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Fri, 17 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>用dbv和RMAN检查数据文件中的坏块(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159238</link>
								<description><![CDATA[用dbv和RMAN检查数据文件中的坏块<br>1.使用dbv检查<br /><table><tbody><tr><td width="500" bgcolor="#999999"><pre>D:oradataeygle&gt;dbv file=EYGLE.DBF blocksize=8192

DBVERIFY: Release 10.1.0.4.0 - Production on 星期六 6月 11 17:36:37 2005

Copyright ...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Thu, 16 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>Oracle中模拟及修复数据块损坏(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159239</link>
								<description><![CDATA[Oracle中模拟及修复数据块损坏(转)<br><p class="style6">1.插入数据</p><table width="557" border="0"><tbody><tr><td class="style6" width="551" bgcolor="#000000"><p class="style5"> </p><blockquote class="style5"><p>E:Oracleora92in&gt;sqlplus &quot;/ as sy...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Thu, 16 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>SQLLDR装载换行符的小问题(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159233</link>
								<description><![CDATA[<p>SQLLDR装载换行符的小问题(转)</p><br><p style="TEXT-INDENT: 21pt"><span lang="EN-US" style="FONT-FAMILY: 宋体">Tom</span><span style="FONT-FAMILY: 宋体">在<span lang="EN-US">EXPERT ONE ON ONE ORACLE</span>中的数据装载一章详细介绍了<span lang="EN-US">...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 15 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>Oracle Tuning的一些总结1(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159234</link>
								<description><![CDATA[Oracle Tuning的一些总结1<br>关于Oracle的性能调整，一般包括两个方面，一是指Oracle数据库本身的调整，比如SGA、PGA的优化设置，二是连接Oracle的应用程序以及SQL语句的优化。做好这两个方面的优化，就可以使一套完整的Oracle应用系统处于良好的运行状态。<br />本文主要...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 15 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>Oracle Tuning的一些总结2(zt) (转)</title>
								<link>http://space.itpub.net/644902/viewspace-159235</link>
								<description><![CDATA[Oracle Tuning的一些总结2(zt)<br>(转)<p>2.2.3 等待事件分析<br />接下来，statspack报告中描述的是等待事件（Wait Events），这是Oracle中比较复杂难懂的概念。<br />Oracle 的等待事件是衡量Oracle 运行状况的重要依据及指标。<br />等待事件的概念是在Oracle7.0.1.2 中...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 15 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>软解析、硬解析的一个小测试 (转)</title>
								<link>http://space.itpub.net/644902/viewspace-159236</link>
								<description><![CDATA[软解析、硬解析的一个小测试<br>SQL&gt; SELECT NAME,VALUE FROM V$MYSTAT A,V$STATNAME B WHERE A.STATISTIC#=B.STATISTIC#<br />2 AND NAME LIKE 'parse count%'<br />3 ;<br /><br />NAME VALUE<br />---------------------------------------------------------------...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 15 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>探索数据字典,提高自学习Oracle能力(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159237</link>
								<description><![CDATA[探索数据字典,提高自学习Oracle能力(转)<br>首页 技术基础 备份恢复 SQL优化 诊断案例 BLOG 留言板 服务 生活 网摘 阅读 下载 相册 eRss English 探索数据字典,提高自学习Oracle能力作者:eygle 出处:http://www.eygle.com/blog 日期:January 10, 2005 浏览次数: 1370 本文...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 15 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>如何查看数据库的默认表空间，与临时表空间。(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159232</link>
								<description><![CDATA[<p>如何查看数据库的默认表空间，与临时表空间。</p><br><p>如何查看数据库的默认表空间，与临时表空间。 </p><p><font face="verdana, arial, helvetica" size="2"><span class="javascript" id="text8127307" style="FONT-SIZE: 12px">Oracle系统表查询<br /><br />数据...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Tue, 14 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>ORA-01555错误浅析(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159224</link>
								<description><![CDATA[ORA-01555错误浅析 (转)<br>ORA-01555是常见的oracle错误。相信绝大部分dba都遇到过这个错误。平时面试的时候我也比较喜欢问这个问题，一方面问题比较基础，每个人都有work on it的经验，可以谈谈自己的想法，另一方面容易由此问题引申到其他更为复杂一点的问题。平时在论...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 08 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>本地表空间管理可以避免产生碎片？(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159225</link>
								<description><![CDATA[本地表空间管理可以避免产生碎片？ (转)<br>字典管理表空间：<br />当满足一个空间要求时，数据库不再合并相邻的自由范围（除非别无选择），而是寻找表空间最大的自由范围来使用。这样讲逐渐形成越来越多的、离散的、分隔的、较小的自由空间（即碎片）<br /><br />本地表空...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 08 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>一次隐藏较隐蔽的SQL优化问题----不要轻易的忽视count(列)</title>
								<link>http://space.itpub.net/644902/viewspace-159226</link>
								<description><![CDATA[一次隐藏较隐蔽的SQL优化问题----不要轻易的忽视count(列)<br><a href="mailto:xjwyq28@hotmail.com">xjwyq28@hotmail.com</a> 原创<br /><br /><br />1. 场景说明:<br /><br /><br />stockpile ----IC卡的供求信息<br />xh-- 型号-----字符型<br />index SP_XH, 是函数in...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 08 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>我的面试题，大家也可以看看(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159227</link>
								<description><![CDATA[我的面试题，大家也可以看看<br>只列出了技能问题，其它问题暂不列出，大家看看吧。。。<br /><br /><br />技能问题<br /><br />数据库切换日志的时候，为什么一定要发生检查点？这个检查点有什么意义？<br /><br />表空间管理方式有哪几种，各有什么优劣。<br /><br />本...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 08 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>smon进程互为死锁案例--oracle一个bug处理(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159228</link>
								<description><![CDATA[smon进程互为死锁案例--oracle一个bug处理<br>以下这篇文章发表在我的blog上。<br />贴到这里与大家共享。<br /><br />=====================<br />环境：<br /><br />OS: AIX 5.2<br /><br />DB: oracle9206 RAC<br /><br />两个实例上面smon进程都在等待enqueue事件。从...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 08 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>数据库open时检查点执行的过程(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159229</link>
								<description><![CDATA[数据库open时检查点执行的过程<br>eygle的文章中说：<br /><br />数据库在open阶段，要有两次检查过程：<br /><br />1：第一次检查数据文件头中的检查点计数（checkpoint cnt）是否和控制文件中的检查点计数（checkpoint cnt）一致。<br /><br />2：第二次检查数据文件头的...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 08 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>起个题目：关于数据文件恢复(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159230</link>
								<description><![CDATA[起个题目：关于数据文件恢复<br><p>这是一个假设的例子（给出的条件并不一定都须用上）：<br /><br /><br /><br />周二晚，有一个 联机拷贝os文件的脚本，依次执行下面伪代码<br /><br />backup controlfile;<br /><br /><br />set feedback,head,echo,term... off<br />s...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 08 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>请问v$sqlarea,v$sql,v$sqltext这三个视图提供的sql语句有什么区别？(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159231</link>
								<description><![CDATA[请问v$sqlarea,v$sql,v$sqltext这三个视图提供的sql语句有什么区别？<br><p>对这三个视图的区别一直很迷惑，有时候通过他们查出的某个session正在执行的sql语句是一样的，有时候又不一样。<br />尝试查看v_$fixed_view_definition中的取数口径，发现引用了一些x$表，三个视...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Wed, 08 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>让sqlplus 里的show parameter 直接显示oracle隐含参数(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159223</link>
								<description><![CDATA[让sqlplus 里的show parameter 直接显示oracle隐含参数<br>好久没写过东西了。今天心情不错，写了一个。没怎么排版，大家随便看看。a<br /><br />Oracle 启动用到了初始化参数，通常我们都可以在sqlplus里用show parameter 来获得。而Oracle为了debug 或者解决一些特殊的问...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Tue, 07 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>Rman Crosscheck删除失效归档(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159222</link>
								<description><![CDATA[<p>Rman Crosscheck删除失效归档(转)</p><br><p>当手工删除了归档日志以后，Rman备份会检测到日志缺失，从而无法进一步继续执行。<br />所以此时需要手工执行crosscheck过程，之后Rman备份可以恢复正常。</p><div id="a000118more"><div id="more"><p>1.Crosscheck日志</p...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Thu, 02 Aug 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>传输表空间(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159221</link>
								<description><![CDATA[<p>传输表空间(转)</p><br><p style="TEXT-INDENT: 21pt"><span lang="EN-US" style="FONT-FAMILY: 宋体">Oracle</span><span style="FONT-FAMILY: 宋体">的传输表空间是指，可以将一个数据库上的一个或多个表空间的全表数据文件拷贝到另一个数据库服务器上，通过导入的方...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Tue, 17 Jul 2007 00:00:00 GMT</pubDate>
							</item>
							<item>
								<title>使用Oracle10g新特性,跨越Resetlogs时间点进行恢复(转)</title>
								<link>http://space.itpub.net/644902/viewspace-159218</link>
								<description><![CDATA[使用Oracle10g新特性,跨越Resetlogs时间点进行恢复<br>使用Oracle10g新特性,跨越Resetlogs时间点进行恢复<br />作者:eygle<br />出处:<a href="http://blog.eygle.com/">http://blog.eygle.com</a><br />日期:April 05, 2005<br /><br />在Oracle10g以前，在进行了不完全恢...]]></description>
								<category>blog</category>
								<author>lottery009</author>
								<pubDate>Mon, 09 Jul 2007 00:00:00 GMT</pubDate>
							</item>
							
		</channel>
	</rss>