<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/JOE4011" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/JOE4011" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 08 Oct 2010 09:59:00 GMT</lastBuildDate><title>BEHINDLENS</title><description>圣地拉萨-因为年轻，所以冲动！！</description><link>http://blog.csdn.net/blogrss.aspx?username=JOE4011</link><item><title>oracle中使用job定时完成任务</title><link>http://blog.csdn.net/JOE4011/archive/2010/10/08/5927906.aspx</link><description>&lt;br /&gt;1、把init.ora中如下两个参数打开&lt;br /&gt;JOB_QUEUE_INTERVAL=60&lt;br /&gt;JOB_QUEUE_PROCESSES=4&lt;br /&gt;job_queue_keep_connections=true&lt;br /&gt;\\位置位于:D:\oracle\admin\alpha\pfile下的init.ora文件内&lt;br /&gt;2、定义job&lt;br /&gt; variable job number;&lt;br /&gt; begin&lt;br /&gt;   sys.dbms_job.submit(job =&gt; :job,  --job编号，唯一标识&lt;br /&gt;                       what =&gt; 'begin  --job内容，调用存储过程，以begin和end开头&lt;br /&gt;         insert_t2;&lt;br /&gt;         end;',&lt;br /&gt;         --本次执行完后，下一次执行job时间&lt;br /&gt;                       next_date =&gt; to_date('05-01-2005 10:22:05'&lt;img src=&quot;http://www1.feedsky.com/t1/420979605/JOE4011/csdn.net/s.gif?r=http://blog.csdn.net/JOE4011/archive/2010/10/08/5927906.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979605/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979605/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 08 Oct 2010 17:59:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2010/10/08/5927906.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2010/10/08/5927906.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979605/1110761</fs:itemid></item><item><title>ORACLE 存储过程 使用DBLINK 连接远程数据库</title><link>http://blog.csdn.net/JOE4011/archive/2010/09/17/5889801.aspx</link><description>&lt;br /&gt;由于项目需要，需在存储过程中连接远程数据库完成数据的抽取工作。做个记录^^&lt;br /&gt;&lt;br /&gt;在此文件下&lt;br /&gt;G:\oracle_test\product\10.2.0\db_1\NETWORK\ADMIN\tnsnames.ora&lt;br /&gt;添加：&lt;br /&gt;link =&lt;br /&gt;  (DESCRIPTION=&lt;br /&gt;   (ADDRESS_LIST=&lt;br /&gt;    (ADDRESS = (PROTOCOL = TCP)(HOST = 数据库IP)(PORT = 1521)))(FAILOVER=yes)(LOAD_BALANCE=yes)&lt;br /&gt;    (CONNECT_DATA =(SERVER = DEDICATED)&lt;br /&gt;     (SERVICE_NAME = 数据库SID)(failover_mode=(type=select)(method=basic))&lt;br /&gt;    )&lt;br /&gt;  )&lt;br /&gt;&lt;br /&gt;查看当前用户有哪些权限&lt;br /&gt;select * from user_sys_privs;&lt;br /&gt;使用&lt;img src=&quot;http://www1.feedsky.com/t1/420979606/JOE4011/csdn.net/s.gif?r=http://blog.csdn.net/JOE4011/archive/2010/09/17/5889801.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979606/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979606/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 17 Sep 2010 02:03:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2010/09/17/5889801.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2010/09/17/5889801.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979606/1110761</fs:itemid></item><item><title>oracle 授权</title><link>http://blog.csdn.net/JOE4011/archive/2010/09/17/5889799.aspx</link><description>&lt;br /&gt;grant&lt;br /&gt;&lt;br /&gt;      alter any cluster 修改任意簇的权限 &lt;br /&gt;　　alter any index 修改任意索引的权限 &lt;br /&gt;　　alter any role 修改任意角色的权限 &lt;br /&gt;　　alter any sequence 修改任意序列的权限 &lt;br /&gt;　　alter any snapshot 修改任意快照的权限 &lt;br /&gt;　　alter any table 修改任意表的权限 &lt;br /&gt;　　alter any trigger 修改任意触发器的权限 &lt;br /&gt;　　alter cluster 修改拥有簇的权限 &lt;br /&gt;　　alter database 修改数据库的权限 &lt;br /&gt;　　alter procedure 修改拥有的存储过程权限 &lt;br /&gt;　　alter profile 修改资源限制简表的权限 &lt;br /&gt;　　alter resource cost 设置佳话资源开销的权限 &lt;br /&gt;　　alter rollback segment 修改回滚段的权限 &lt;br /&gt;　　alter seque&lt;img src=&quot;http://www1.feedsky.com/t1/420979607/JOE4011/csdn.net/s.gif?r=http://blog.csdn.net/JOE4011/archive/2010/09/17/5889799.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979607/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979607/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 17 Sep 2010 01:57:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2010/09/17/5889799.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2010/09/17/5889799.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979607/1110761</fs:itemid></item><item><title>oracle时间应用整理</title><link>http://blog.csdn.net/JOE4011/archive/2009/02/13/3886256.aspx</link><description>&lt;br /&gt;oracle时间应用整理&lt;br /&gt;&lt;br /&gt;格式化特定时间:::::::::::::::::&lt;br /&gt;DateFormat format = new SimpleDateFormat(&quot;yyyy-MM-dd&quot;);&lt;br /&gt;Date utilDate = new Date();&lt;br /&gt;java.sql.Date sqlDate = null;&lt;br /&gt;utilDate = format.parse(newValue.getString(&quot;startTime&quot;)); &lt;br /&gt;sqlDate = new java.sql.Date(utilDate.getTime());&lt;br /&gt;newValue.put(&quot;startTime&quot;, sqlDate);&lt;br /&gt;格式化当前日期::::::::::::::::::&lt;br /&gt;paramMap.put(&quot;createDateTime&quot;,new java.sql.Date(System.currentTimeMillis()));&lt;br /&gt;格式化当前日期时间::::::::::::::::::&lt;br /&gt;new&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979608/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979608/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Feb 2009 11:21:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2009/02/13/3886256.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2009/02/13/3886256.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979608/1110761</fs:itemid></item><item><title>SqlDeveloper启动时的一个错误修正</title><link>http://blog.csdn.net/JOE4011/archive/2009/01/22/3849816.aspx</link><description>&lt;br /&gt;使用 SqlDeveloper v1.5.0.54.40版本，启动时报 Unable to create an instance of the Java Virtual Machine Located at path: c:\java\jdk\jre\bin\client\jvm.dll 错误&lt;br /&gt;解决方法：&lt;br /&gt;&lt;br /&gt;修改&lt;br /&gt;&lt;br /&gt;...\sqldeveloper\bin\sqldeveloper.conf 文件，&lt;br /&gt;&lt;br /&gt;其中增加一行：&lt;br /&gt;&lt;br /&gt;AddVMOption -Xmx256M&lt;br /&gt;或者减少Heap的值&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979609/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979609/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 22 Jan 2009 10:30:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2009/01/22/3849816.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2009/01/22/3849816.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979609/1110761</fs:itemid></item><item><title>Temp表空间增长过大处理</title><link>http://blog.csdn.net/JOE4011/archive/2009/01/12/3759335.aspx</link><description>&lt;br /&gt;一般遇到TEMP空间增长过大，最直接有效的办法就是重建TEMP表间。&lt;br /&gt;创建中转临时表空间&lt;br /&gt;create  temporary  tablespace  TEMP2  TEMPFILE  'D:\oracle10g\product\10.2.0\oradata\orcl\temp02.dbf'  SIZE  512M  REUSE  AUTOEXTEND  ON  NEXT  640K  MAXSIZE  UNLIMITED;&lt;br /&gt;改变缺省临时表空间  为刚刚创建的新临时表空间temp2&lt;br /&gt;alter  database  default  temporary  tablespace  temp2;&lt;br /&gt;删除原来临时表空间&lt;br /&gt;drop  tablespace  temp  including  contents &lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979610/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979610/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 12 Jan 2009 13:37:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2009/01/12/3759335.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2009/01/12/3759335.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979610/1110761</fs:itemid></item><item><title>JAVA解析XML文件四种方式</title><link>http://blog.csdn.net/JOE4011/archive/2008/09/27/2988077.aspx</link><description>&lt;br /&gt;1.介绍&lt;br /&gt;1）DOM（JAXP Crimson解析器）&lt;br /&gt;DOM是用与平台和语言无关的方式表示XML文档的官方W3C标准。DOM是以层次结构组织的节点或信息片断的集合。这个层次结构允许开发人员在树中寻找特定信息。分析该结构通常需要加载整个文档和构造层次结构，然后才能做任何工作。由于它是基于信息层次的，因而DOM被认为是基于树或基于对象的。DOM以及广义的基于树的处理具有几个优点。首先，由于树在内存中是持久的，因此可以修改它以便应用程序能对数据和结构作出更改。它还可以在任何时候在树中上下导航，而不是像SAX那样是一次性的处理。DOM使用起来也要简单得多。&lt;br /&gt;2）SAX&lt;br /&gt;SAX处理的优点非常类似于流媒体的优点。分析能够立即开始，而不是等待所有的数据被处理。而且，由于应用程序只是在&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979611/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979611/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 27 Sep 2008 14:34:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2008/09/27/2988077.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2008/09/27/2988077.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979611/1110761</fs:itemid></item><item><title>SAXReader解析XML</title><link>http://blog.csdn.net/JOE4011/archive/2008/09/18/2948317.aspx</link><description>SAXReader解析XML,忽略DTD验证&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979612/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979612/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 18 Sep 2008 17:40:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2008/09/18/2948317.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2008/09/18/2948317.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979612/1110761</fs:itemid></item><item><title>使用MAVEN进行工程自动化构建(2)</title><link>http://blog.csdn.net/JOE4011/archive/2008/05/06/2402040.aspx</link><description>使用MAVEN进行工程自动化构建(2)&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979613/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979613/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 06 May 2008 16:45:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2008/05/06/2402040.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2008/05/06/2402040.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979613/1110761</fs:itemid></item><item><title>使用MAVEN进行工程自动化构建(1)</title><link>http://blog.csdn.net/JOE4011/archive/2008/05/06/2402003.aspx</link><description>使用MAVEN进行工程自动化构建(1)&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/JOE4011/420979614/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/JOE4011/420979614/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 06 May 2008 16:41:00 +0800</pubDate><author>镜后人生</author><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2008/05/06/2402003.aspx</guid><dc:creator>镜后人生</dc:creator><fs:srclink>http://blog.csdn.net/JOE4011/archive/2008/05/06/2402003.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/JOE4011/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/JOE4011/~1110763/420979614/1110761</fs:itemid></item></channel></rss>
