<?xml version="1.0" encoding="gb2312"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="zh-cn">
    
    <title>Rake's Blog</title> 
<link rel="alternate" type="text/html" href="http://rake.itpub.net" /> 
 
<modified>Thu,23 02 2012 07:29:53</modified> 
<tagline></tagline> 
<generator url="http://www.plogworld.net/" version="1.0.1">pLog</generator> 
 
<copyright>Copyright (c) rake</copyright> 
    
 <entry> 
 <id>tag:post:blog.itpub.net,Sun,28 08 2005 21:34:16</id>
 <title>Oracle概念：临时表</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/39374" /> 
  
 <modified>Sun,28 08 2005 21:34:16</modified> 
 <issued>Sun,28 08 2005 21:34:16</issued> 
 <created>Sun,28 08 2005 21:34:16</created> 
 <summary type="text/plain"> 临时表特性... 2临时表的分类及创建... 21、会话特有的临时表... 22、事务特有的临时表... 23、DDL语法注释... 2临时表的删除... 31、删除会话特有的临时表... 32、删除事务特有的临时表... 3临时表的表空间的分配... 3参考资料 3临时表特性1、数据库中的所有会话均可以访问同一临时表，但只有插入数据到临时表中的会话才能看到它本身插入的数据。2、可以把临时表指定为事务相关（默认）或者是会话相关：3、如果临时表中有记录的话，是无法删除表的。即无法drop table。4、虽然临时表不产生 &quot;REDO&quot; ,但却是要产生 &quot;UNDO&quot; 的临时表的分类及...</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
Oracle数据库
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 临时表特性... 2临时表的分类及创建... 21、会话特有的临时表... 22、事务特有的临时表... 23、DDL语法注释... 2临时表的删除... 31、删除会话特有的临时表... 32、删除事务特有的临时表... 3临时表的表空间的分配... 3参考资料 3临时表特性1、数据库中的所有会话均可以访问同一临时表，但只有插入数据到临时表中的会话才能看到它本身插入的数据。2、可以把临时表指定为事务相关（默认）或者是会话相关：3、如果临时表中有记录的话，是无法删除表的。即无法drop table。4、虽然临时表不产生 &quot;REDO&quot; ,但却是要产生 &quot;UNDO&quot; 的临时表的分类及...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Thu,25 08 2005 18:13:11</id>
 <title>SQL连接，标准语法</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/39110" /> 
  
 <modified>Thu,25 08 2005 18:13:11</modified> 
 <issued>Thu,25 08 2005 18:13:11</issued> 
 <created>Thu,25 08 2005 18:13:11</created> 
 <summary type="text/plain"> 1) inner join 内连接2) natural join3) Left outer join……-- test table prepare.DROP TABLE test_join_1;CREATE TABLE test_join_1(TITLE VARCHAR2(4) );INSERT INTO test_join_1 VALUES('1');INSERT INTO test_join_1 VALUES(NULL);INSERT INTO test_join_1 VALUES('2');INSERT INTO test_join_1 VALUES(NULL);INSERT INTO test_join_1 VALUES('3'); INSERT INTO test_join_1 VALUES('5'); COMMIT;DROP TABLE test_join_2;CREATE TABLE test_join_2(TITLE VARCHAR2(4));INSERT INTO test_join_2 VALUES('1');INSERT INTO test_join_2...</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
SQL & PL/SQL
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 1) inner join 内连接2) natural join3) Left outer join……-- test table prepare.DROP TABLE test_join_1;CREATE TABLE test_join_1(TITLE VARCHAR2(4) );INSERT INTO test_join_1 VALUES('1');INSERT INTO test_join_1 VALUES(NULL);INSERT INTO test_join_1 VALUES('2');INSERT INTO test_join_1 VALUES(NULL);INSERT INTO test_join_1 VALUES('3'); INSERT INTO test_join_1 VALUES('5'); COMMIT;DROP TABLE test_join_2;CREATE TABLE test_join_2(TITLE VARCHAR2(4));INSERT INTO test_join_2 VALUES('1');INSERT INTO test_join_2...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Wed,24 08 2005 20:56:04</id>
 <title>Oracle recursion query for TREE with </title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/39009" /> 
  
 <modified>Wed,24 08 2005 20:56:04</modified> 
 <issued>Wed,24 08 2005 20:56:04</issued> 
 <created>Wed,24 08 2005 20:56:04</created> 
 <summary type="text/plain"> 目 录一、测试准备二、实现各种查询要求三、要点总结-- Tirle : Recursion query for TREE with &quot;connect by/start with&quot;-- Author : Rake Gao-- Create Date : 2005-08-22-- Version : 2.0-- Last Modify : 2005-08-22目 录一、测试准备二、实现各种查询要求三、要点总结正 文一、测试准备1、先假设有如下部门结构。1/ 2 3 |4 5 6 7 82、然后建立测试表和数据。drop table t_dept_temp;create table t_dept_temp(DEPT_ID NUMBER(2) NOT NULL,PARENT_ID NUMBER(2) ,DEPT_NAME VARCHAR2(10) ,AMOUNT NUMBER(3) --人数);delete t_dept_temp;...</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
SQL & PL/SQL
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 目 录一、测试准备二、实现各种查询要求三、要点总结-- Tirle : Recursion query for TREE with &quot;connect by/start with&quot;-- Author : Rake Gao-- Create Date : 2005-08-22-- Version : 2.0-- Last Modify : 2005-08-22目 录一、测试准备二、实现各种查询要求三、要点总结正 文一、测试准备1、先假设有如下部门结构。1/ 2 3 |4 5 6 7 82、然后建立测试表和数据。drop table t_dept_temp;create table t_dept_temp(DEPT_ID NUMBER(2) NOT NULL,PARENT_ID NUMBER(2) ,DEPT_NAME VARCHAR2(10) ,AMOUNT NUMBER(3) --人数);delete t_dept_temp;...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Wed,27 07 2005 20:51:15</id>
 <title>Oracle的字典表和动态数据字典视图</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/36359" /> 
  
 <modified>Wed,27 07 2005 20:51:15</modified> 
 <issued>Wed,27 07 2005 20:51:15</issued> 
 <created>Wed,27 07 2005 20:51:15</created> 
 <summary type="text/plain"> Oracle的字典表和动态数据字典视图基本上可以分为三个层次。1.X$表2.GV$和V$视图3.GV_$,V_$视图和V$,GV$同义词X$表 --&gt; GV$和V$视图 --&gt; GV_$,V_$视图 --&gt;V$,GV$同义词探索数据字典,提高自学习Oracle能力作者:eygle出处:http://blog.eygle.com日期:January 10, 2005--------------------------------------------------------------------------------我们知道Oracle通过数据字典来管理和展现数据库信息，这些信息至关重要。正确理解这部分内容有助于加强我们的oracle学习能力。接下来我们介绍一下怎样通过数据库本身来学习研究数据库。首...</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
Oracle数据库
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 Oracle的字典表和动态数据字典视图基本上可以分为三个层次。1.X$表2.GV$和V$视图3.GV_$,V_$视图和V$,GV$同义词X$表 --&gt; GV$和V$视图 --&gt; GV_$,V_$视图 --&gt;V$,GV$同义词探索数据字典,提高自学习Oracle能力作者:eygle出处:http://blog.eygle.com日期:January 10, 2005--------------------------------------------------------------------------------我们知道Oracle通过数据字典来管理和展现数据库信息，这些信息至关重要。正确理解这部分内容有助于加强我们的oracle学习能力。接下来我们介绍一下怎样通过数据库本身来学习研究数据库。首...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Sun,24 04 2005 18:24:20</id>
 <title>Oracle分析函数的使用</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/27507" /> 
  
 <modified>Sun,24 04 2005 18:24:20</modified> 
 <issued>Sun,24 04 2005 18:24:20</issued> 
 <created>Sun,24 04 2005 18:24:20</created> 
 <summary type="text/plain"> Oracle分析函数的使用</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
Oracle数据库
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 Oracle分析函数的使用</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Sun,24 04 2005 12:16:40</id>
 <title>SQL查询，返回[N，M]条记录</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/27463" /> 
  
 <modified>Sun,24 04 2005 12:16:40</modified> 
 <issued>Sun,24 04 2005 12:16:40</issued> 
 <created>Sun,24 04 2005 12:16:40</created> 
 <summary type="text/plain"> SQL查询，返回[N，M]条记录得到前n条记录... 2直接选择前n条记录。... 2选出前n条记录后再排序... 2选出前n条最大的记录。（先排序，再选择）... 2得到最后n条记录... 2方法一：集合之差... 2方法二：子查询... 3得到表的n～m条记录... 3取得某列中第n大的行... 3使用dense_rank()函数... 3SQL技巧 返回[N，M]条记录数据库版本 ：ORACLE9i文档创建日期：2005-3-1文档创建人 ：Rake Gao得到前n条记录... 2直接选择前n条记录。... 2选出前n条记录后再排序... 2选出前n条最大的记录。（先排序，再选择）... 2得到最后n条记录... 2方法一：集合...</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
SQL & PL/SQL
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 SQL查询，返回[N，M]条记录得到前n条记录... 2直接选择前n条记录。... 2选出前n条记录后再排序... 2选出前n条最大的记录。（先排序，再选择）... 2得到最后n条记录... 2方法一：集合之差... 2方法二：子查询... 3得到表的n～m条记录... 3取得某列中第n大的行... 3使用dense_rank()函数... 3SQL技巧 返回[N，M]条记录数据库版本 ：ORACLE9i文档创建日期：2005-3-1文档创建人 ：Rake Gao得到前n条记录... 2直接选择前n条记录。... 2选出前n条记录后再排序... 2选出前n条最大的记录。（先排序，再选择）... 2得到最后n条记录... 2方法一：集合...</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Sun,17 04 2005 22:38:24</id>
 <title>Oracle9i LogMiner日志分析工具入门</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/26787" /> 
  
 <modified>Sun,17 04 2005 22:38:24</modified> 
 <issued>Sun,17 04 2005 22:38:24</issued> 
 <created>Sun,17 04 2005 22:38:24</created> 
 <summary type="text/plain"> Oracle9i LogMiner日志分析工具入门</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
Oracle数据库
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 Oracle9i LogMiner日志分析工具入门</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Tue,05 04 2005 12:09:51</id>
 <title>oracle“SQL Trace”简介</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/25044" /> 
  
 <modified>Tue,05 04 2005 12:09:51</modified> 
 <issued>Tue,05 04 2005 12:09:51</issued> 
 <created>Tue,05 04 2005 12:09:51</created> 
 <summary type="text/plain"> oracle“SQL Trace”简介</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
Oracle数据库
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 oracle“SQL Trace”简介</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Mon,04 04 2005 17:35:42</id>
 <title>初识ORACLE的审计功能</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/24963" /> 
  
 <modified>Mon,04 04 2005 17:35:42</modified> 
 <issued>Mon,04 04 2005 17:35:42</issued> 
 <created>Mon,04 04 2005 17:35:42</created> 
 <summary type="text/plain"> 初识ORACLE的审计功能</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
Oracle数据库
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 初识ORACLE的审计功能</content> 
</entry> 

 <entry> 
 <id>tag:post:blog.itpub.net,Sun,06 02 2005 10:58:25</id>
 <title>恭喜！您的Blog已经建立。</title> 
 <link rel="alternate" type="text/html" href="http://rake.itpub.net/post/4038/17712" /> 
  
 <modified>Sun,06 02 2005 10:58:25</modified> 
 <issued>Sun,06 02 2005 10:58:25</issued> 
 <created>Sun,06 02 2005 10:58:25</created> 
 <summary type="text/plain"> 恭喜！您的Blog已经建立。</summary> 
 <author> 
  
 <name>rake</name> 
 <url>http://rake.itpub.net</url> 
 <email>rake.gao@ebaotech.com</email> 
</author> 
<dc:subject>
初始分类
</dc:subject> 
 <content type="text/html" mode="escaped" xml:lang="zh-cn" xml:base="http://rake.itpub.net"> 
 恭喜！您的Blog已经建立。</content> 
</entry> 
     </feed>



