<?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>八二八空间</title>
			    <link>http://space.itpub.net/10435225</link>
			    <description></description>
			    <copyright>Copyright(C) 八二八空间</copyright>
			    <generator>SupeSite/X-Space</generator>
			    <lastBuildDate>Sun, 12 Oct 2008 17:40:13 GMT</lastBuildDate><item>
								<title>小岛点滴</title>
								<link>http://space.itpub.net/10435225/viewspace-364667</link>
								<description><![CDATA[也许在外面漂久了，最近总会不时的想想家里的点滴，那是一个魂牵梦萦的小岛<BR>也许拼拼凑凑的的图片中能依稀能看到我的想念<BR><BR>望夫石的黄昏<BR><BR>以前我总不能理解望夫石是个什么东西，在我眼里或许更像是一个乌龟的头（Ps：这照片角度拍的不好）<BR>依稀记得下面...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 24 Jun 2008 11:53:32 GMT</pubDate>
							</item>
							<item>
								<title>DBA-unix-shell</title>
								<link>http://space.itpub.net/10435225/viewspace-331125</link>
								<description><![CDATA[<P>　　这篇文章介绍了DBA每天在监控Oracle数据库方面的职责，讲述了如何通过shell脚本来完成这些重复的监控工作。本文首先回顾了一些DBA常用的Unix命令，以及解释了如何通过Unix Cron来定时执行DBA脚本。同时文章还介绍了8个重要的脚本来监控Oracle数据库： </P>
<P>　　...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Wed, 04 Jun 2008 09:24:52 GMT</pubDate>
							</item>
							<item>
								<title>oracle--分析SQL具体案例</title>
								<link>http://space.itpub.net/10435225/viewspace-330938</link>
								<description><![CDATA[<STRONG>具体案例分析：<BR><BR>环境：oracle 817 + linux + 阵列柜</STRONG><BR>swd_billdetail 表5000万条数据<BR>SUPER_USER 表2800条数据<BR>连接列上都有索引，而且super_user中的一条对应于swd_billdetail表中的很多条记录<BR>表与索引都做了分析。<BR><BR><B>实际应...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:36:09 GMT</pubDate>
							</item>
							<item>
								<title>oracle--如何干预执行计划（使用hints提示）</title>
								<link>http://space.itpub.net/10435225/viewspace-330937</link>
								<description><![CDATA[<STRONG>如何干预执行计划 - - 使用hints提示<BR></STRONG>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;基于代价的优化器是很聪明的，在绝大多数情况下它会选择正确的优化器，减轻了DBA的负担。但有时它也聪明反被聪明误，选择了很差的执行计划，使某个语句的执行变得奇慢无比...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:36:09 GMT</pubDate>
							</item>
							<item>
								<title>oracle--如何分析执行计划</title>
								<link>http://space.itpub.net/10435225/viewspace-330936</link>
								<description><![CDATA[<STRONG>例1：<BR></STRONG>&nbsp; &nbsp;假设LARGE_TABLE是一个较大的表，且username列上没有索引，则运行下面的语句：<BR>SQL&gt; SELECT * FROM LARGE_TABLE where USERNAME = ‘TEST’;<BR>Query Plan<BR>-----------------------------------------<BR>SELECT STATEM...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:36:03 GMT</pubDate>
							</item>
							<item>
								<title>oracle--如何产生执行计划</title>
								<link>http://space.itpub.net/10435225/viewspace-330935</link>
								<description><![CDATA[要为一个语句生成执行计划，可以有3种方法：<BR><B>1)．最简单的办法</B><BR><BR>Sql&gt; set autotrace on<BR>Sql&gt; select * from dual;<BR>执行完语句后，会显示explain plan 与 统计信息。<BR>这个语句的优点就是它的缺点，这样在用该方法查看执行时间较长的sql语句...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:35:56 GMT</pubDate>
							</item>
							<item>
								<title>通过分析SQL语句的执行计划优化SQL 六</title>
								<link>http://space.itpub.net/10435225/viewspace-330933</link>
								<description><![CDATA[<P align=left><STRONG>第6章 其它注意事项<BR><BR></STRONG>1. 不要认为将optimizer_mode参数设为rule，就认为所有的语句都使用基于规则的优化器<BR>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;不管optimizer_mode参数如何设置，只要满足下面3个条件，就一定使用CBO。<BR>&n...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:26:30 GMT</pubDate>
							</item>
							<item>
								<title>通过分析SQL语句的执行计划优化SQL 五</title>
								<link>http://space.itpub.net/10435225/viewspace-330929</link>
								<description><![CDATA[<STRONG>第5章 ORACLE的执行计划<BR>背景知识：</STRONG><BR>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;为了更好的进行下面的内容我们必须了解一些概念性的术语：<BR><B>共享sql语句</B><BR><BR>&nbsp; &nbsp; 为了不重复解析相同的SQL语句(因为解析操作比较费资源，会导致性...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:26:30 GMT</pubDate>
							</item>
							<item>
								<title>通过分析SQL语句的执行计划优化SQL 四</title>
								<link>http://space.itpub.net/10435225/viewspace-330912</link>
								<description><![CDATA[<DIV class=t_msgfont id=message3480425><B>第4章 ORACLE的优化器</B><BR><BR>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;优化器有时也被称为查询优化器，这是因为查询是影响数据库性能最主要的部分，不要以为只有SELECT语句是查询。实际上，带有任何WHERE条件的DML(INSERT、...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:26:25 GMT</pubDate>
							</item>
							<item>
								<title>通过分析SQL语句的执行计划优化SQL 三</title>
								<link>http://space.itpub.net/10435225/viewspace-330910</link>
								<description><![CDATA[<STRONG>第3章&nbsp;&nbsp;SQL语句处理的过程<BR><BR></STRONG>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;在调整之前我们需要了解一些背景知识，只有知道这些背景知识，我们才能更好的去调整sql语句。<BR>本节介绍了SQL语句处理的基本过程，主要包...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:26:25 GMT</pubDate>
							</item>
							<item>
								<title>通过分析SQL语句的执行计划优化SQL 二</title>
								<link>http://space.itpub.net/10435225/viewspace-330908</link>
								<description><![CDATA[&nbsp;<B>第2章 有效的应用设计</B><BR>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;我们通常将最常用的应用分为2种类型：联机事务处理类型(OLTP)，决策支持系统(DSS)。<BR><BR><B>联机事务处理(OLTP)</B><BR>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;该类型的应用是高吞吐量，...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:26:20 GMT</pubDate>
							</item>
							<item>
								<title>通过分析SQL语句的执行计划优化SQL 一</title>
								<link>http://space.itpub.net/10435225/viewspace-330906</link>
								<description><![CDATA[<STRONG>第1章 性能调整综述<BR></STRONG>&nbsp; &nbsp; <BR>&nbsp; &nbsp; Oracle数据库是高度可调的数据库产品。本章描述调整的过程和那些人员应与Oracle服务器的调整有关，以及与调整相关联的操作系统硬件和软件。本章包括以下方面:<BR>l&nbsp; &nbsp;&nbsp; &nbsp;&nb...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 03 Jun 2008 09:26:13 GMT</pubDate>
							</item>
							<item>
								<title>生产库ORA-01555解析</title>
								<link>http://space.itpub.net/10435225/viewspace-324327</link>
								<description><![CDATA[<FONT face=宋体>&nbsp;</FONT>
<P>19号生产库在执行同步程序的时候出现了ORA-01555的错误，刚开始以为是UNDO的问题，可是UNDO表空间我是设置自动增长的，现在的表空间大小是15个G，已经使用的11G，使用率73%。&nbsp;<BR>区管理是：本地管理，自动分配。&nbsp;<BR>按道理...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 23:04:28 GMT</pubDate>
							</item>
							<item>
								<title>删除UNDO表空间后空间的释放问题</title>
								<link>http://space.itpub.net/10435225/viewspace-324326</link>
								<description><![CDATA[<P align=left><FONT face=宋体></P><FONT face=Arial></FONT>
<DIV class=lh3 id=veryContent style="FONT-SIZE: 12px; OVERFLOW: hidden; WIDTH: 100%"></DIV>
<P>今天早上到联通的时候，CC跟我说库是不是有问题啊，怎么连接变的很慢啊。<BR>我进系统TOP一下很正常啊....]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 23:04:26 GMT</pubDate>
							</item>
							<item>
								<title>关于oracle版本升级的BUG</title>
								<link>http://space.itpub.net/10435225/viewspace-324325</link>
								<description><![CDATA[<P align=left><FONT face=宋体>由于oracle9i的版本过多，升级版本的时候可能造成exp的中间视图损坏，导致exp失败。<BR>&nbsp;<BR>1.ORA-00942:&nbsp;table&nbsp;or&nbsp;view&nbsp;does&nbsp;not&nbsp;exist<BR>这个问题之前在江西的生产库遇到过，一般是升级服务器版本会...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 23:04:22 GMT</pubDate>
							</item>
							<item>
								<title>some oracle craftsmanship</title>
								<link>http://space.itpub.net/10435225/viewspace-324324</link>
								<description><![CDATA[<P align=left><FONT face=宋体>1.&nbsp;删除表的注意事项&nbsp;&nbsp;&nbsp;<BR>在删除一个表中的全部数据时，须使用TRUNCATE&nbsp;TABLE&nbsp;表名;因为用DROP&nbsp;TABLE，DELETE&nbsp;*&nbsp;FROM&nbsp;表名时，TABLESPACE表空间该表的占用空间并未释放，反复几次DROP...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 23:04:22 GMT</pubDate>
							</item>
							<item>
								<title>库表维护文档</title>
								<link>http://space.itpub.net/10435225/viewspace-324323</link>
								<description><![CDATA[<FONT face=宋体>&nbsp;</FONT>
<P>1.常见的问题<BR>目前存在的问题描述：<BR>1）库表/索引大小分配及其举例<BR>a.初始段很大，next段很小<BR>&nbsp;&nbsp;TABLESPACE NMCPMTS<BR>&nbsp;&nbsp;PCTUSED&nbsp;&nbsp;&nbsp; 40<BR>&nbsp;&nbsp;PCTFREE&nbsp;&nbsp;&nbsp; 10...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 23:04:13 GMT</pubDate>
							</item>
							<item>
								<title>关于分区表和索引</title>
								<link>http://space.itpub.net/10435225/viewspace-324316</link>
								<description><![CDATA[<P>&nbsp;</P>
<P>什么时候使用分区：<BR>1、&nbsp;大数据量的表，比如大于2GB。一方面2GB文件对于３２位os是一个上限，另外备份时间长。<BR>2、&nbsp;包括历史数据的表，比如最新的数据放入到最新的分区中。典型的例子：历史表，只有当前月份的数据可以被修改，而其他月...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:39:33 GMT</pubDate>
							</item>
							<item>
								<title>关于触发器</title>
								<link>http://space.itpub.net/10435225/viewspace-324314</link>
								<description><![CDATA[<P>触发器</P>
<P>是特定事件出现的时候，自动执行的代码块。类似于存储过程，但是用户不能直接调用他们。</P>
<P>功能：<BR>1、&nbsp;允许/限制对表的修改<BR>2、&nbsp;自动生成派生列，比如自增字段<BR>3、&nbsp;强制数据一致性<BR>4、&nbsp;提供审计和日志记录<BR>5、...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:39:30 GMT</pubDate>
							</item>
							<item>
								<title>关于PL/SQL简介</title>
								<link>http://space.itpub.net/10435225/viewspace-324313</link>
								<description><![CDATA[<P>PL/SQL简介：</P>
<P>概念：<BR>优点：性能，可移植</P>
<P>块特性：</P>
<P>DECLARE<BR>&nbsp;声明变量、常量的程序块<BR>&nbsp;声明部分不能是oracle的保留字，help reserved words<BR>BEGIN<BR>&nbsp;执行语句部分的程序块，至少有一句执行语句。比如null;<BR>EX...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:35:57 GMT</pubDate>
							</item>
							<item>
								<title>关于Oracle 中的OOP概念</title>
								<link>http://space.itpub.net/10435225/viewspace-324311</link>
								<description><![CDATA[<P>Oracle 中的OOP概念：<BR>对象类型，可变数组，嵌套表，对象表，对象视图</P>
<P>对象类型：</P>
<P>优点：<BR>1）&nbsp;更容易与Java, C++编写的对象应用程序交互<BR>2）&nbsp;获取便捷。一次对象类型请求就可以从多个关系表中获取信息，通过一次网络往复即可返回</...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:35:57 GMT</pubDate>
							</item>
							<item>
								<title>关于index</title>
								<link>http://space.itpub.net/10435225/viewspace-324310</link>
								<description><![CDATA[<P>索引：<BR>１、&nbsp;ROWID的概念<BR>２、&nbsp;索引的概念：<BR>３、&nbsp;唯一索引<BR>４、&nbsp;组合索引<BR>５、&nbsp;位图索引<BR>６、&nbsp;基于函数的索引</P>
<P>一、&nbsp;ROWID的概念<BR>存储了row在数据文件中的具体位置：64位编码的数据，A-Z, a-z, 0-9, ...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:35:50 GMT</pubDate>
							</item>
							<item>
								<title>关于集合和成员函数</title>
								<link>http://space.itpub.net/10435225/viewspace-324307</link>
								<description><![CDATA[<P>集合和成员函数</P>
<P>PL/SQL表:<BR>有时也被称为索引表（index-by tables），可以在PL/SQL中使用，能够模仿数组的非永久表。<BR>用法：<BR>1、&nbsp;定义一个PL/SQL表类型<BR>2、&nbsp;声明这种类型的变量。<BR>3、&nbsp;将记录添加到PL/SQL表中，并采用与引用数组元...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:32:12 GMT</pubDate>
							</item>
							<item>
								<title>关于异常和游标管理</title>
								<link>http://space.itpub.net/10435225/viewspace-324309</link>
								<description><![CDATA[<P>异常和游标管理</P>
<P>游标：<BR>用来查询数据库，获取记录集合（结果集）的指针，可以让开发者一次访问一行结果集，在每条结果集上作操作。</P>
<P>分类：<BR>静态游标：<BR>分为显式游标和隐式游标。<BR>REF游标：<BR>&nbsp;是一种引用类型，类似于指针。</P>
<P...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:32:11 GMT</pubDate>
							</item>
							<item>
								<title>关于过程,函数,程序包</title>
								<link>http://space.itpub.net/10435225/viewspace-324302</link>
								<description><![CDATA[<P>过程，函数，程序包</P>
<P>之前学习的PL/SQL块是匿名的，不能将其存储到数据库中。<BR>我们可以命名我们的PL/SQL块，并为他们确定参数，存储在数据库中。这样可以从任何数据库客户端或者工具引用和运行他们，比如SQL*PLUS, Pro*C, JDBC。这些命名的PL/SQL块成为存储过...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:32:03 GMT</pubDate>
							</item>
							<item>
								<title>关于object</title>
								<link>http://space.itpub.net/10435225/viewspace-324300</link>
								<description><![CDATA[<P><BR>同义词 synonym</P>
<P>CREATE [PUBLIC]SYNONYM synonym For schema.object</P>
<P>隐藏对象的名称和所有者:<BR>select count(*) from hr.employees;<BR>create synonym emp for hr.employees;&nbsp;&nbsp; --默认属于donny用户，是donny的私有对象private<BR>se...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:32:03 GMT</pubDate>
							</item>
							<item>
								<title>关于PGA</title>
								<link>http://space.itpub.net/10435225/viewspace-324299</link>
								<description><![CDATA[<P>PGA 内存的管理 <BR>一、PGA的概念<BR>服务进程启动的时候，被创建的非共有的内存领域。只能被创建的进程所访问。<BR>专用模式：一个Session一个服务进程<BR>共有模式：多个Session一个服务进程，服务进程与Dispatcher无关。</P>
<P><BR>二、PGA包含的内容<BR>PRIVATE...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Thu, 29 May 2008 22:30:47 GMT</pubDate>
							</item>
							<item>
								<title>在Oracle中如何实现读锁 二</title>
								<link>http://space.itpub.net/10435225/viewspace-321816</link>
								<description><![CDATA[<FONT face=宋体>上一篇文章给出了一种简单的方法，但是缺点也十分明显，就是要求用户必须采用调用函数的方式才能实现读锁。<BR><FONT size=3>很多情况下，上面的条件是无法实现的，这就要求必须有一种方法对于所有的访问情况都试用。</FONT></FONT><BR><FONT face="宋体 ...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Wed, 28 May 2008 14:57:48 GMT</pubDate>
							</item>
							<item>
								<title>在Oracle中如何实现读锁 一</title>
								<link>http://space.itpub.net/10435225/viewspace-321815</link>
								<description><![CDATA[<FONT face=宋体>“<FONT color=black>怎么样让一个表,一个时间只能一个人读”，简单概括一下就是建立起读锁的机制。而且这个读锁还不能是共享锁，而必须是有个独占锁。</FONT><BR><FONT style="FONT-SIZE: 10.5pt"><FONT size=3>考虑到Oracle中根本不存在读锁，那么必须将...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Wed, 28 May 2008 14:57:48 GMT</pubDate>
							</item>
							<item>
								<title>关于oracle大表迁移</title>
								<link>http://space.itpub.net/10435225/viewspace-311537</link>
								<description><![CDATA[<P>相关信息如下：<BR>数据库版本：9.2.0.4<BR>导出数据库：db1<BR>导入数据库：db2<BR><BR><BR>逻辑导出语句如下：<BR>exp user1/password@db1 file=TABLE1.dmp log=TABLE1.log tables=table1 buffer=10485760 constraints=n compress=n statistics=none <BR><BR>imdexes...]]></description>
								<category>blog</category>
								<author>linjia828</author>
								<pubDate>Tue, 27 May 2008 09:33:59 GMT</pubDate>
							</item>
							
		</channel>
	</rss>