<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Dev2Dev论坛 - Oracle</title>
    <link>http://dev2dev.us/bbs/forumdisplay.php?fid=11</link>
    <description>Latest 20 threads of Oracle</description>
    <copyright>Copyright(C) Dev2Dev论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Thu, 09 Sep 2010 09:25:23 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://dev2dev.us/bbs/images/logo.gif</url>
      <title>Dev2Dev论坛</title>
      <link>http://dev2dev.us/bbs/</link>
    </image>
    <item>
      <title>Oracle 导入导出单个表！</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1452</link>
      <description><![CDATA[导入：<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;  想从备份的dmp文件中导入某些表的时候,可以用如下imp命令，格式:<br />
<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;  imp username/password@本地net服务名 file=xxx.dmp fromuser=xx touser=xx tables=(tablename) <br />
<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;  us]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Tue, 02 Feb 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>关于oracle 锁</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1451</link>
      <description><![CDATA[查看锁住的对象<br />
select t2.username,t2.sid,t2.serial#,t2.logon_time<br />
from v$locked_object t1,v$session t2<br />
where t1.session_id=t2.sid order by t2.logon_time;<br />
&amp;#8211;查看被锁住的表<br />
select b.owner,b.object_name,a.session_id,a.locked_mode<br]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Tue, 02 Feb 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>oracle 两个时间之间的差 时间长度  时间差 间隔</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1450</link>
      <description><![CDATA[在oracle 中假设 你的时间类型形如 ：2008-5-28 11:18:12&amp;#160; <br />
select time1-time2 from t_notedata t 出现的结果形如： 0.161446759259259 <br />
这个值是以天为单位 所以如果你想转为以<br />
时为单位：select （time1-time2）*24 from t_notedata t<br />
分为单位：select （time1 ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Tue, 02 Feb 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle分区小技巧</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1449</link>
      <description><![CDATA[今天在Oracle 10g 创建分区的时候遇到 ID 字段为 YYYYMMDDHH24MI + SN + 8位流水号 的表，需要按照时间进行分区，没有其他的时间字段啦<br />
刚开始想的是能不能用 range(substr(id, 0 ,6)) 来分区啊，尝试结果永远都是语法错误，缺少右括号；放弃range 分区，尝试 list 分区 ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Tue, 02 Feb 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle 8i/9i中的执行计划稳定性</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1448</link>
      <description><![CDATA[本文翻译自Jonathan Lewis的文章. Plan Stability in Oracle 8i/9i, 可以到此下载这篇文章的word版本. Stored Outlines in Oracle 8<br />
Oracle 8i/9i中的执行计划稳定性<br />
找出如何使用&amp;#8221;存储概要&amp;#8221;来提高应用的性能的方法,即使你无法修改源代码,调整索引或者胡乱 ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Tue, 02 Feb 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle优化全攻略一（Oracle SQL Hint）</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1447</link>
      <description><![CDATA[其实Oracle的优化器有两种优化方式,<br />基于规则的优化方式(Rule-Based Optimization，简称为RBO)<br />基于代价的优化方式(Cost-Based Optimization，简称为CBO)<br />所以hint也不例外，除了/*+rule*/其他的都是CBO优化方式<br />RBO方式：<br />&amp;nbsp; 优化器在分析SQL语句时,所遵循的是Orac ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Tue, 02 Feb 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>oracle中的union</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1453</link>
      <description><![CDATA[UNION 指令的目的是将两个 SQL  语句的结果合并起来,可以查看你要的查询结果.<br />
例如:<br />
SELECT Date FROM Store_Information<br />
UNION<br />
SELECT Date FROM Internet_Sales<br />
注意:union用法中,两个select语句的字段类型匹配,而且字段个数要相同,如上面的例子,在实际的软件开发过程 ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Tue, 02 Feb 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>oracle 下的sql跟踪及‘相关问题</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1445</link>
      <description><![CDATA[oracle版本 10g 以上步骤 &amp;nbsp;&amp;nbsp;1 pl/sql &amp;nbsp;以system登录 执行sql select sid,username,osuser,process,program,machine from v$session 查看需要跟踪的session&amp;nbsp;&amp;nbsp;2 &amp;nbsp;假设需要跟踪的为 140 &amp;nbsp;执行sql&amp;nbsp;exec dbms_monitor.session_trac .]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Tue, 02 Feb 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle的选择：NetBeans、JDeveloper和Eclipse</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1399</link>
      <description><![CDATA[Oracle完成Sun的并购后，IDE工具市场会有不少变化，那就是Oracle同时拥有JDeveloper和NetBeans，而且Oracle也是Eclipse最大的支持者之一。一个人同时拥有者三个IDE工具，那么必定会做出取舍，这也是Oracle的一贯风格（在Oracle收购BEA后，完全将自己的OC4J放弃啦），只 ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 07:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle Archive Log Mode</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1404</link>
      <description><![CDATA[General<br />
<br />
<br />
Note: Archive logging is essential for production databases where the loss of a transaction might be fatal. It is generally considered unnecessary in development and test environments.<br />
<br />
<br />
 <br />
<br />
<br />
]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 07:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle数据库中分区表的建立方法</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1401</link>
      <description><![CDATA[Oracle提供了分区技术以支持VLDB(Very Large DataBase)。分区表通过对分区列的判断，把分区列不同的记录，放到不同的分区中。分区完全对应用透明。<br />
Oracle的分区表可以包括多个分区，每个分区都是一个独立的段（SEGMENT），可以存放到不同的表空间中。查询时可以通过查 ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 07:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle调优(入门与提高)</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1400</link>
      <description><![CDATA[         在过去的十年中， Oracle 已经成为世界上最专业的数据库之一。对于 IT 专家来说，就是要确保利用 Oracle 的强大特性来提高他们公司的生产力。最有效的方法之一是通过 Oracle 调优。它有大量的调整参数和技术来改进你的 Oracle 数据库的性能。<br />
Oracle  ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 07:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle   sequence</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1398</link>
      <description><![CDATA[Oracle提供了sequence对象,由系统提供自增长的序列号,通常用于生成数据库数据记录的自增长主键或序号的地方.  下面介绍一下关于sequence 的生成,修改,删除等常用的操作:  1. 创建 Sequence  使用如下命令新建sequence(用户需要有CREATE SEQUENCE 或者CREATE ANY SEQUENC ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 07:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle与SQL的区别</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1368</link>
      <description><![CDATA[着信息技术的飞速发展，数据处理不仅在数量上要求越来越大，而且在质量上也要求越来越高。Oracle数据库在大多数企业中受到广泛使用，而SQL Server数据库也因为和Windows的联系，在企业中的使用也是非常广泛。<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  操作系统的稳定对数据库来 ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>ORACLE自增列</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1367</link>
      <description><![CDATA[ORACLE 如何设自增列？<br />
2008-05-01 11:34<br />
<br />
<br />
<br />
<br />
<br />
方法： <br />
就建个序列，oracle里面有一个序号器,生成语法如下: <br />
            -- Create sequence <br />
            create sequence ASM_SEELOG_SEQ <br />
            minvalue 1 <br />
]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>lsnrclt start 出错！TNS-12537, TNS-12560,TNS-00507 解决方法，oracle监听启动出错。</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1366</link>
      <description><![CDATA[dragon/home/oracle/product/network/admin&gt;lsnrctl start<br />
LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 14-7月 -2009 01:51:48<br />
Copyright (c) 1991, 2007, Oracle. All rights reserved.<br />
Starting /home/oracle/product/bin/tnslsnr: please]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>ubuntu使用(二)安装oracle数据库client工具</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1365</link>
      <description><![CDATA[ubuntu使用(二)安装oracle数据库client工具<br />
<br />
工具还是参考以前的，用小而轻巧的。<br />
参考以前的BLOG：http://hi.baidu.com/luohuazju/blog/item/6a8b32cca2f75d1801e928ea.html<br />
安装SQL DEVELOPER下载地址：<br />
http://www.oracle.com/technology/software/products/sql/inde ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>ORACLE 各个版本的下载地址(转)</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1364</link>
      <description><![CDATA[下载OTN上的这些软件，你需要一个OTN免费帐号，不过如果通过迅雷进行下载，就不用登陆OTN了：<br />
<br />
Oracle9i Database Release 2 Enterprise/Standard/Personal Edition for Windows NT/2000/XP<br />
http://download.oracle.com/otn/nt/oracle9i/9201/92010NT_Disk1.zip<br />
http:// ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Sun, 31 Jan 2010 01:30:02 +0000</pubDate>
    </item>
    <item>
      <title>Oracle公布Java发展策略</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1237</link>
      <description><![CDATA[甲骨文已经完成了对SUN公司的收购，于1月27日发布了对Sun各项业务的整合规划。总体上说，Oracle要成为软硬件一体化的整体解决方案的厂商。 以下就其对备受关注的Java方面的策略做个介绍。<br />
 <br />
Java SE:1）推出JDK SE 7， 它将包括多个新的功能，如提高开发人员的效率， ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Fri, 29 Jan 2010 01:30:03 +0000</pubDate>
    </item>
    <item>
      <title>Re: Oracle Completes Acquisition of Sun</title>
      <link>http://dev2dev.us/bbs/viewthread.php?tid=1242</link>
      <description><![CDATA[从Apache那里看到的：<br />
等到半夜，收到来自不同 头头们的N封email，收购果然在今晚结束了。擦，从此以后真的没有Sun这个公司了，还是有点不敢相信，这么伟大的一个公司就这么真的完蛋了。<br />
Oracle  News<br />
北京时间半夜一点，太平洋时间早晨九点，看看偶们新CEO的现场直播， ...]]></description>
      <category>Oracle</category>
      <author>robot</author>
      <pubDate>Fri, 29 Jan 2010 01:30:03 +0000</pubDate>
    </item>
  </channel>
</rss>