<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Fans Or Not</title>
	<atom:link href="http://www.orafans.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.orafans.net</link>
	<description>寒山问拾得</description>
	<lastBuildDate>Thu, 20 Oct 2011 01:28:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Oracle Fusion Applications，你准备好了吗？ by Oracle ERP将告别PL/SQL开发？ &#124; Fans Or Not</title>
		<link>http://www.orafans.net/2010/10/oracle-fusion-apps.html/comment-page-1#comment-208</link>
		<dc:creator>Oracle ERP将告别PL/SQL开发？ &#124; Fans Or Not</dc:creator>
		<pubDate>Thu, 20 Oct 2011 01:28:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=693#comment-208</guid>
		<description>[...] Oracle ERP领域主要有三套产品：Oracle EBS，Fusion Applications，JDE，其中似乎已经明确的是，未来将只有Fusion Applications，原因可以参考去年的一篇文章。 [...]</description>
		<content:encoded><![CDATA[<p>[...] Oracle ERP领域主要有三套产品：Oracle EBS，Fusion Applications，JDE，其中似乎已经明确的是，未来将只有Fusion Applications，原因可以参考去年的一篇文章。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 《失控》 by pandeng</title>
		<link>http://www.orafans.net/2011/08/out-of-control.html/comment-page-1#comment-199</link>
		<dc:creator>pandeng</dc:creator>
		<pubDate>Sun, 28 Aug 2011 14:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=789#comment-199</guid>
		<description>今天路上正好看完这本书，大杂烩</description>
		<content:encoded><![CDATA[<p>今天路上正好看完这本书，大杂烩</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on APEX 4 中的文件上传功能 by Zeeno</title>
		<link>http://www.orafans.net/2010/08/apex-4-upload-file.html/comment-page-1#comment-192</link>
		<dc:creator>Zeeno</dc:creator>
		<pubDate>Wed, 15 Jun 2011 04:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=649#comment-192</guid>
		<description>@thank_you : APEX版本更新很快，我也发现好几个版本都有不同的bug，你说的charset字段空白的问题，我记得好像4.x的某个版本是存在这个问题的。

至于文件名乱码，可能是你的应用、数据编码造成的，统一成utf-8应该能避免这个问题。</description>
		<content:encoded><![CDATA[<p>@thank_you : APEX版本更新很快，我也发现好几个版本都有不同的bug，你说的charset字段空白的问题，我记得好像4.x的某个版本是存在这个问题的。</p>
<p>至于文件名乱码，可能是你的应用、数据编码造成的，统一成utf-8应该能避免这个问题。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on APEX 4 中的文件上传功能 by thank you</title>
		<link>http://www.orafans.net/2010/08/apex-4-upload-file.html/comment-page-1#comment-191</link>
		<dc:creator>thank you</dc:creator>
		<pubDate>Wed, 15 Jun 2011 04:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=649#comment-191</guid>
		<description>博主，上传文件之后，attach_charset字段并没有自动处理，怎么是空的，
然后下载文件的时候，中文文件名就乱码了，请问这怎么解决啊，谢谢</description>
		<content:encoded><![CDATA[<p>博主，上传文件之后，attach_charset字段并没有自动处理，怎么是空的，<br />
然后下载文件的时候，中文文件名就乱码了，请问这怎么解决啊，谢谢</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on APEX 4 中的文件上传功能 by feiyafei</title>
		<link>http://www.orafans.net/2010/08/apex-4-upload-file.html/comment-page-1#comment-190</link>
		<dc:creator>feiyafei</dc:creator>
		<pubDate>Thu, 19 May 2011 00:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=649#comment-190</guid>
		<description>非常感谢博主的快速回复,我之前有尝试使用convert函数,可以解决问题:

CONVERT(UTL_RAW.CAST_TO_VARCHAR2(DBMS_LOB.SUBSTR(FB.BLOB_CONTENT,
                                                         DBMS_LOB.GETLENGTH(FB.BLOB_CONTENT),
                                                         1)),
                &#039;AL32UTF8&#039;,
                &#039;ZHT16BIG5&#039;)

不过dbms_lob.substr和varchar2都有长度限制,所以当blob文件比较大的时候比较麻烦.

另外,标准的功能的确可以设定file character set,我一直想办法查看标准功能的源码,以参考如何实现,只是不知该如何下手.</description>
		<content:encoded><![CDATA[<p>非常感谢博主的快速回复,我之前有尝试使用convert函数,可以解决问题:</p>
<p>CONVERT(UTL_RAW.CAST_TO_VARCHAR2(DBMS_LOB.SUBSTR(FB.BLOB_CONTENT,<br />
                                                         DBMS_LOB.GETLENGTH(FB.BLOB_CONTENT),<br />
                                                         1)),<br />
                &#8216;AL32UTF8&#8242;,<br />
                &#8216;ZHT16BIG5&#8242;)</p>
<p>不过dbms_lob.substr和varchar2都有长度限制,所以当blob文件比较大的时候比较麻烦.</p>
<p>另外,标准的功能的确可以设定file character set,我一直想办法查看标准功能的源码,以参考如何实现,只是不知该如何下手.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on APEX 4 中的文件上传功能 by Zeeno</title>
		<link>http://www.orafans.net/2010/08/apex-4-upload-file.html/comment-page-1#comment-189</link>
		<dc:creator>Zeeno</dc:creator>
		<pubDate>Thu, 19 May 2011 00:26:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=649#comment-189</guid>
		<description>可以先转换编码后上传，或者程序里增加判断和转换功能，比如用utl_raw.convert进行转换。
P.S: APEX管理界面有个上传的功能，由用户自行选择文本编码后上传，你可以参考该设计的。</description>
		<content:encoded><![CDATA[<p>可以先转换编码后上传，或者程序里增加判断和转换功能，比如用utl_raw.convert进行转换。<br />
P.S: APEX管理界面有个上传的功能，由用户自行选择文本编码后上传，你可以参考该设计的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on APEX 4 中的文件上传功能 by feiyafei</title>
		<link>http://www.orafans.net/2010/08/apex-4-upload-file.html/comment-page-1#comment-188</link>
		<dc:creator>feiyafei</dc:creator>
		<pubDate>Wed, 18 May 2011 12:27:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=649#comment-188</guid>
		<description>请教一下楼主字符集问题如何处理？我目前在做到一个页面需要上传big5（繁体中文）字符集的csv文件，数据库的字符集是utf8。</description>
		<content:encoded><![CDATA[<p>请教一下楼主字符集问题如何处理？我目前在做到一个页面需要上传big5（繁体中文）字符集的csv文件，数据库的字符集是utf8。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 用友U8印象记 by shirley</title>
		<link>http://www.orafans.net/2011/04/ufida-u8-impress.html/comment-page-1#comment-182</link>
		<dc:creator>shirley</dc:creator>
		<pubDate>Fri, 22 Apr 2011 05:47:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=756#comment-182</guid>
		<description>只要用友能一直拥有一支强大的技术团队，在中国市场，总会有他的一席之地：）</description>
		<content:encoded><![CDATA[<p>只要用友能一直拥有一支强大的技术团队，在中国市场，总会有他的一席之地：）</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EBS 11i升级到R12 by Zeeno</title>
		<link>http://www.orafans.net/2010/07/ebs-11i-upgrade-r12.html/comment-page-1#comment-181</link>
		<dc:creator>Zeeno</dc:creator>
		<pubDate>Mon, 21 Feb 2011 08:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=631#comment-181</guid>
		<description>@5iewang :
可以参考《Oracle E-Business Suite Upgrade Guide, Release 11i to 12.1.3》,我这里的就是列出了每个步骤中的常见问题和注意事项。</description>
		<content:encoded><![CDATA[<p>@5iewang :<br />
可以参考《Oracle E-Business Suite Upgrade Guide, Release 11i to 12.1.3》,我这里的就是列出了每个步骤中的常见问题和注意事项。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EBS 11i升级到R12 by 5iewang</title>
		<link>http://www.orafans.net/2010/07/ebs-11i-upgrade-r12.html/comment-page-1#comment-180</link>
		<dc:creator>5iewang</dc:creator>
		<pubDate>Mon, 21 Feb 2011 08:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.orafans.net/?p=631#comment-180</guid>
		<description>你好，我最近也想做个测试 做个 从11.5.10 升级到 r12 ，你能不能把 详细的步骤拿出来分享一下 谢谢 ！！</description>
		<content:encoded><![CDATA[<p>你好，我最近也想做个测试 做个 从11.5.10 升级到 r12 ，你能不能把 详细的步骤拿出来分享一下 谢谢 ！！</p>
]]></content:encoded>
	</item>
</channel>
</rss>

