<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>好开发 &#187; oracle性能优化</title>
	<atom:link href="http://www.icartype.com/?cat=4&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.icartype.com</link>
	<description>被诅咒的程序猿</description>
	<lastBuildDate>Tue, 15 Oct 2019 01:49:00 +0000</lastBuildDate>
	<language>zh-CN</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>索引与sql优化问题汇总</title>
		<link>http://www.icartype.com/?p=193</link>
		<comments>http://www.icartype.com/?p=193#comments</comments>
		<pubDate>Wed, 30 Mar 2016 09:11:03 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=193</guid>
		<description><![CDATA[<span style="font-family: 微软雅黑;"><b>啊里新人（Q1）：</b>索引我一般都是只有主键，这玩意儿，是不是越少越好？</span>
<span style="font-family: 微软雅黑;"><span style="font-family: 微软雅黑;"><b>玄惭（A1）：</b>在日常的业务开发中，常见使用到索引的地方大概有两类： </span></span>
<span style="font-family: 微软雅黑;"><span style="font-family: 微软雅黑;"><b>第一类.</b>做业务约束需求，比如需要保证表中每行的单个字段或者某几个组合字段是唯一的，则可以在表中创建唯一索引; </span></span>
<span style="font-family: 微软雅黑;"><span style="font-family: 微软雅黑;">比如：需要保证test表中插入user_i[......]</span></span><p class='read-more'><a href='http://www.icartype.com/?p=193'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=193</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle两表关联更新</title>
		<link>http://www.icartype.com/?p=126</link>
		<comments>http://www.icartype.com/?p=126#comments</comments>
		<pubDate>Thu, 18 Jun 2015 08:01:27 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=126</guid>
		<description><![CDATA[oracle两张表关联更新

UPDATE detail a
SET settle_status = '7777'
WHERE EXISTS
(SELECT 1
FROM abc b
WHERE b.oppaccno = a.cracc_no

)]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=126</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>数据库压力测试工具tiobench,orion,lmbench,netperf</title>
		<link>http://www.icartype.com/?p=116</link>
		<comments>http://www.icartype.com/?p=116#comments</comments>
		<pubDate>Tue, 14 Apr 2015 03:02:40 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=116</guid>
		<description><![CDATA[这篇文章主要介绍了Tiobench,Orion,Lmbench,netperf这4种压力测试工具的安装及简单使用，只是一个入门级的教程，大牛请绕过。
<h1>1.          Tiobench 基于文件系统的IO压力测试</h1>
下载：

<a href="http://sourceforge.net/projects/tiobench/files/tiobench/0.3.3/tiobench-0.3.3.tar.gz/download">http://sourceforge.net/projects[......]</a><p class='read-more'><a href='http://www.icartype.com/?p=116'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=116</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>常见SQL性能优化</title>
		<link>http://www.icartype.com/?p=106</link>
		<comments>http://www.icartype.com/?p=106#comments</comments>
		<pubDate>Fri, 27 Mar 2015 08:23:48 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=106</guid>
		<description><![CDATA[1 通过ROWID访问表--索引
你可以采用基于ROWID的访问方式情况,提高访问表的效率, , ROWID包含了表中记录的物理位置信息..ORACLE采用索引(INDEX)实现了数据和存放数据的物理位置(ROWID)之间的联系. 通常索引提供了快速访问ROWID的方法,因此那些基于索引列的查询就[......]<p class='read-more'><a href='http://www.icartype.com/?p=106'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=106</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle-存储过程提示ORA-01031: 权限不足错误解决</title>
		<link>http://www.icartype.com/?p=99</link>
		<comments>http://www.icartype.com/?p=99#comments</comments>
		<pubDate>Thu, 26 Mar 2015 07:28:33 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=99</guid>
		<description><![CDATA[在调用存储过程，尤其是含有DDL或者动态SQL语句的过程中，经常出现此错误，详细解释如下：

默认情况下，在调用存储过程用户的角色是不起作用的，即在执行存储过程时只有Public权限。所以如果被调用的存储过程中如果有execute immediate 'create table..'语句，将会引[......]<p class='read-more'><a href='http://www.icartype.com/?p=99'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=99</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle执行计划：多表联合查询方式优化，Nested Loops，Hash Join 和 Sort Merge Join</title>
		<link>http://www.icartype.com/?p=95</link>
		<comments>http://www.icartype.com/?p=95#comments</comments>
		<pubDate>Thu, 26 Mar 2015 01:48:48 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=95</guid>
		<description><![CDATA[多表之间的连接有三种方式：<span lang="EN-US">Nested Loops</span>，<span lang="EN-US">Hash Join </span>和<span lang="EN-US"> Sort Merge Join</span>

一． NESTED LOOP:

对于被连接的数据子集较小的情况，嵌套循环连接是个较好的选择。在嵌套循环中，内表被外表驱动，外表返回的每一行都要在内表中检索找到与它匹配的行，因此整个[......]<p class='read-more'><a href='http://www.icartype.com/?p=95'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=95</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORACLE数值类型的性能优化技巧number,Int,float</title>
		<link>http://www.icartype.com/?p=28</link>
		<comments>http://www.icartype.com/?p=28#comments</comments>
		<pubDate>Mon, 16 Mar 2015 09:33:22 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[Int]]></category>
		<category><![CDATA[ORACLE数值类型的性能优化技巧number]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=28</guid>
		<description><![CDATA[那什么是数值类型？

比如常见的有 <span class="Apple-style-span">number</span>,Int,float,最常用的是<span class="Apple-style-span">number</span><span class="Apple-style-span">类型</span>

性能是如何考虑的呢？

使用时有哪些技巧呢？

这些是我们重点考虑的知识点.我们说精度越低<span class="Apple-style-span">,</span><span class="Apple-style-span">存储的空间越小</span><span class="Apple-style-span">,</span><span class="Apple-style-span">性能越高</span>,其实空间节约对于性能的提高是非常有限的。 有时，我们还需要利用空间[......]<p class='read-more'><a href='http://www.icartype.com/?p=28'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=28</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle性能优化技巧：max(),min()的高效写法</title>
		<link>http://www.icartype.com/?p=26</link>
		<comments>http://www.icartype.com/?p=26#comments</comments>
		<pubDate>Mon, 16 Mar 2015 09:31:05 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>
		<category><![CDATA[min()的高效写法]]></category>
		<category><![CDATA[oracle性能优化技巧：max()]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=26</guid>
		<description><![CDATA[<span class="Apple-style-span">1.索引的使用，会影响MAX和MIN的效率，</span>

索引有个最重要的特性，就是索引键值是顺序的，

最大值，最小值，这些都涉及到排序的，

能利用索引的值是顺序的功能，来提高效率，

索引是用来迅速定位数据的一种技术，它也是一个<span class="Apple-style-span">Oracle</span><span class="Apple-style-span">的对象，</span>

能利用索引值是顺序的特征，来提高[......]<p class='read-more'><a href='http://www.icartype.com/?p=26'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORACLE性能技巧测试：NVL与DECODE</title>
		<link>http://www.icartype.com/?p=23</link>
		<comments>http://www.icartype.com/?p=23#comments</comments>
		<pubDate>Mon, 16 Mar 2015 09:26:38 +0000</pubDate>
		<dc:creator><![CDATA[lidasheng]]></dc:creator>
				<category><![CDATA[oracle性能优化]]></category>

		<guid isPermaLink="false">http://www.icartype.com/?p=23</guid>
		<description><![CDATA[<span class="Apple-style-span">1.典型的SQL语句如下</span>

select decode(a,1,'yyy',2,'xxx') from t;

转换过程化后的语句是

IF a=1 THEN

'yyy'

ELSIF a=2 THEN

'xxx'

end if;

DECODE<span class="Apple-style-span">可以用</span><span class="Apple-style-span">CASE</span><span class="Apple-style-span">语[......]</span><p class='read-more'><a href='http://www.icartype.com/?p=23'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.icartype.com/?feed=rss2&#038;p=23</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
