<?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://blog.ywxyn.com/index.php/archives/tag/oracle/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.ywxyn.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Dec 2011 05:23:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<item>
		<title>测试带有业务逻辑的trigger</title>
		<link>http://blog.ywxyn.com/index.php/archives/361</link>
		<comments>http://blog.ywxyn.com/index.php/archives/361#comments</comments>
		<pubDate>Wed, 09 Dec 2009 09:25:20 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=361</guid>
		<description><![CDATA[业务是这样： 触发过来的记录有以下一些判断约束： 新增：无约束，新增一条数据变动。 修改： 1） 如果变动表中存在同一记录的新增变动记录，但该新增变动记录处理状态为未处理，如果过滤状态为未过滤，则更新该新增变动记录的接受时间为当前时间；如果过滤状态为已过滤，则不做任何处理。 2） 如果变动表中存在同一记录的修改变动记录，但该修改变动记录处理状态为未处理，则更新该修改变动记录（更新接收时间为当前时间），并设置该修改变动记录的过滤状态为未过滤。 3） 其他情况，添加一条修改的变动记录。 删除： 1） 如果变动表中存在同一记录的新增变动记录，但该新增变动记录处理状态为未处理，则删除该新增变动记录。 2） 如果变动表中存在同一记录的修改变动记录，但该修改变动记录处理状态为未处理，则删除该修改变动记录，并添加一条删除的变动记录（或者更新该修改变动记录为删除变动记录，接受时间为当前时间，过滤状态为未过滤）。 3） 其他情况，添加一条删除的变动记录。 触发器的代码为： 难点解析： １、跨用户执行操作，需要增加权限 ２、判断另一用户下的表的内容，需要使用cursor，并对cursor中的字段进行判断 ３、判断cursor是否为null，这个我不知道语法应该怎么写，用另外再取了一次数据，增加了连接次数 ４、删除的时候要用:old.docid，不能用:new.docid]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/361/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>绿色oracle客户端</title>
		<link>http://blog.ywxyn.com/index.php/archives/358</link>
		<comments>http://blog.ywxyn.com/index.php/archives/358#comments</comments>
		<pubDate>Fri, 04 Dec 2009 13:26:06 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=358</guid>
		<description><![CDATA[以后不再需要安装oracle客户端了，需要两个dll文件，oci.dll和oraociei11.dll，只要扔到system32文件夹下就可以了。当连接数据库的时候，在Web.Config中的配置改为以下配置就ＯＫ了。 那用到的两个dll是从哪里来的呢？答案是从oracle官方网站上下载，下载地址为：instantclient-basic-win32-11.1.0.7.0.zip解压并找到上面讲的两个dll就ＯＫ了。在我写这个blog的时候，发现了其他的朋友也有写好的，地址分别是： 〔原创〕Windows下面怎样配置 Oracle10g即时客户端（绿色安装ORACLE客户端） 免安装的Oracle客户端 &#8211; Oracle Instant Client介绍与配置 可以参考上面两个朋友的文章。]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/358/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用EnterpriseLibrary与odp.net开发翻页程序</title>
		<link>http://blog.ywxyn.com/index.php/archives/333</link>
		<comments>http://blog.ywxyn.com/index.php/archives/333#comments</comments>
		<pubDate>Thu, 26 Nov 2009 13:08:43 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[.Net方面]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=333</guid>
		<description><![CDATA[EnterpriseLibrary,odp.net 企业库]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/333/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>client使用c#和odp.net连接server oracle</title>
		<link>http://blog.ywxyn.com/index.php/archives/326</link>
		<comments>http://blog.ywxyn.com/index.php/archives/326#comments</comments>
		<pubDate>Wed, 25 Nov 2009 15:30:16 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=326</guid>
		<description><![CDATA[The provider is not compatible with the version of Oracle client odp.net]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/326/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ora-01157 无法标识 锁定数据文件 的解決</title>
		<link>http://blog.ywxyn.com/index.php/archives/324</link>
		<comments>http://blog.ywxyn.com/index.php/archives/324#comments</comments>
		<pubDate>Sun, 22 Nov 2009 07:03:24 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=324</guid>
		<description><![CDATA[ora-01157]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/324/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>創建oracle trigger提示ora:01031錯誤的解決辦法</title>
		<link>http://blog.ywxyn.com/index.php/archives/321</link>
		<comments>http://blog.ywxyn.com/index.php/archives/321#comments</comments>
		<pubDate>Sat, 21 Nov 2009 13:09:42 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=321</guid>
		<description><![CDATA[有這樣一個需求：用戶A在表空間ts1下，用戶B在表空間ts2下，要求在用戶B下創建一個trigger，這個trigger的主要功能是修改用戶A中的表。 trigger如下： 但編譯的時候提示： 既然提示權限不足，那麼我想一定是用戶B中的trigger對用戶A中的表是無權操作的，終於在google的幫助下，找到了解答，見解決問題的blog 解決方法如下： 這樣就解決了]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/321/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>解决System.Data.OracleClient需要Oracle 客户端软件8.1.7或更高版本</title>
		<link>http://blog.ywxyn.com/index.php/archives/240</link>
		<comments>http://blog.ywxyn.com/index.php/archives/240#comments</comments>
		<pubDate>Sat, 10 Oct 2009 15:02:22 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=240</guid>
		<description><![CDATA[公司的一个项目要求服务器使用windows2008操作系统和oracle数据库，于是安装完成Windows2008后，就把去年下载的oracle10g复制到服务器上安装，没想到出错，弹出一个提示，上面一堆问号。后来一查才得知，Windows2008需要安装特定的oracle版本。于是到oracle官网上下载了win32_11gR1_database.zip，可以运行在Windows2008上 下面是从oracle官上网复制来的。注：下载oracle数据库要先登录oracle网站的。 Oracle Database 11g Release 1 Standard Edition, Standard Edition One, and Enterprise Edition (11.1.0.7.0) Microsoft Windows Server 2008 (32-bit) (1.9 GB) &#124; See All (Including Client, Clusterware) Microsoft Windows Server 2008 x64 (1.9 GB) &#124; See All (Including Client, Clusterware) (11.1.0.6.0) Microsoft Windows (32-bit) (1.7 GB) &#124; See All (Including Client, Examples, Gateways, [...]]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/240/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle10g创建数据表的索引</title>
		<link>http://blog.ywxyn.com/index.php/archives/238</link>
		<comments>http://blog.ywxyn.com/index.php/archives/238#comments</comments>
		<pubDate>Sat, 10 Oct 2009 14:05:38 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>
		<category><![CDATA[索引]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=238</guid>
		<description><![CDATA[oracle10g创建数据表的索引]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/238/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle数据库导入导出方式</title>
		<link>http://blog.ywxyn.com/index.php/archives/235</link>
		<comments>http://blog.ywxyn.com/index.php/archives/235#comments</comments>
		<pubDate>Sat, 10 Oct 2009 09:25:33 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=235</guid>
		<description><![CDATA[Oracle数据库导入导出方式]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/235/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle获取表的记录数、翻页存储过程、创建表空间</title>
		<link>http://blog.ywxyn.com/index.php/archives/233</link>
		<comments>http://blog.ywxyn.com/index.php/archives/233#comments</comments>
		<pubDate>Sat, 10 Oct 2009 03:17:55 +0000</pubDate>
		<dc:creator>寻道者</dc:creator>
				<category><![CDATA[oracle]]></category>
		<category><![CDATA[创建表空间]]></category>
		<category><![CDATA[翻页存储过程]]></category>
		<category><![CDATA[获取表的记录数、删除重复记录]]></category>

		<guid isPermaLink="false">http://blog.ywxyn.com/?p=233</guid>
		<description><![CDATA[oracle获取表的记录数、翻页存储过程、创建表空间]]></description>
		<wfw:commentRss>http://blog.ywxyn.com/index.php/archives/233/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

