<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园__分类_oracle</title><id>http://feed.cnblogs.com/blog/u/47054/category/218256/rss</id><updated>2012-05-31T17:09:37Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dooom/category/218256.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/47054/category/218256/rss"/><entry><id>http://www.cnblogs.com/dooom/archive/2010/10/02/1841322.html</id><title type="text">Oracle Text 实现全文搜索</title><summary type="text">1。普通数据搜索1.创建表 Test 并添加数据。[代码]2.为文本建立索引 Oracle Text 索引有三种， (1)Context,应用于比大/长的文本搜索。(2)Ctxcat 应用于多字段的文本查询，性能比Context好,且CtxCat 索引是事务性的，直线DML后数据库会自动同步索引，不香Context要用到 Ctx_dll.sync_index 同步。(3)CtxRule [代码] ...</summary><published>2010-10-02T07:16:00Z</published><updated>2010-10-02T07:16:00Z</updated><author><name>clound</name><uri>http://www.cnblogs.com/dooom/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dooom/archive/2010/10/02/1841322.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dooom/archive/2010/10/02/1841322.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/dooom/archive/2010/09/07/1820828.html</id><title type="text">ORA-12560: TNS: 协议适配器错误的解决方法</title><summary type="text">也可以通过 tnsping oracle_sid 来判断监听器是否配置 Case:Microsoft Windows [版本 5.2.3790](C) 版权所有 1985-2003 Microsoft Corp.C:\Documents and Settings\user1&gt;lsnrctlLSNRCTL for 32-bit Windows: Version 9.2.0.7.0 - Prod...</summary><published>2010-09-07T09:26:00Z</published><updated>2010-09-07T09:26:00Z</updated><author><name>clound</name><uri>http://www.cnblogs.com/dooom/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dooom/archive/2010/09/07/1820828.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dooom/archive/2010/09/07/1820828.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/dooom/archive/2010/09/07/1820826.html</id><title type="text">oracle 中批量数据的处理（转载）</title><summary type="text"># FileName :oracle_pl/sql.txt# Write By : hgc 整理# Create Date : 2007-07-03# Last Modify : 2007-07-25# Description :介紹Oracle 10G pl/sql# source: 精通 oracle 10G pl/sql 編程第三章 pl/sql基礎3.1 pl/sql塊有三個組成部分﹐定義...</summary><published>2010-09-07T09:24:00Z</published><updated>2010-09-07T09:24:00Z</updated><author><name>clound</name><uri>http://www.cnblogs.com/dooom/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dooom/archive/2010/09/07/1820826.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dooom/archive/2010/09/07/1820826.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/dooom/archive/2010/08/30/1676735.html</id><title type="text">Oracle 适用函数：获取字符串的第一个拼音字母</title><summary type="text">代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&gt;createorreplacefunctionFN_GETSPELLCODING(P_NAMEINVARCHAR2)RETURNVARCHAR2ASV_COMPAREVARCHAR2(100);V_R...</summary><published>2010-08-30T09:05:00Z</published><updated>2010-08-30T09:05:00Z</updated><author><name>clound</name><uri>http://www.cnblogs.com/dooom/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dooom/archive/2010/08/30/1676735.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dooom/archive/2010/08/30/1676735.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/dooom/archive/2010/08/18/1802768.html</id><title type="text">Oracle 配置连接 HubbleDotNet</title><summary type="text">一个项目中要用到全文搜索，数据库是使用Oracle9I，使用Oracle Text 做了个Demo，效果不理想，主要是分词那块。打算用HubbleDotNet+盘古分词，网上很多HubbleDotNet连接Sql 数据库的实例，这边分享下我配置Oracle连接的例子。 安装HubbleDotNet就不介绍了，可以去eaglet博客中找找相关资源。 （1）创建HubbleDotNet 连接Oracl...</summary><published>2010-08-18T11:11:00Z</published><updated>2010-08-18T11:11:00Z</updated><author><name>clound</name><uri>http://www.cnblogs.com/dooom/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dooom/archive/2010/08/18/1802768.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dooom/archive/2010/08/18/1802768.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/dooom/archive/2010/01/16/1649507.html</id><title type="text">oracle  rank（）用法</title><summary type="text">原来表数据现在需求是 每位userinfoid发表的最新一条数据[代码]结果为（最后一列会给出排序字段的等级）进一步处理一下就可以了[代码]如果查询的时间有是相同的那么给出的排序字段等级就会相同这个时候我们可以使用 dense_rank（）参考http://space.itpub.net/13379967/viewspace-481811</summary><published>2010-01-16T09:36:00Z</published><updated>2010-01-16T09:36:00Z</updated><author><name>clound</name><uri>http://www.cnblogs.com/dooom/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dooom/archive/2010/01/16/1649507.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dooom/archive/2010/01/16/1649507.html"/><content type="text">原来表数据现在需求是 每位userinfoid发表的最新一条数据[代码]结果为（最后一列会给出排序字段的等级）进一步处理一下就可以了[代码]如果查询的时间有是相同的那么给出的排序字段等级就会相同这个时候我们可以使用 dense_rank（）参考http://space.itpub.net/13379967/viewspace-481811</content></entry><entry><id>http://www.cnblogs.com/dooom/archive/2010/01/09/1642848.html</id><title type="text">Oracle 查询表 视图 序列 表数据条数等信息查询</title><summary type="text">这几天做性能优化，网上找了些资料。有时候需要导出某用户下的所有table、view、sequence、trigger等信息，下面的SQL可以将这些信息select出来：[代码]想查找表的数据条数试试这个[代码] 如果没有值，那就创建个函数代码create or replace function count_rows(table_name ...</summary><published>2010-01-09T03:49:00Z</published><updated>2010-01-09T03:49:00Z</updated><author><name>clound</name><uri>http://www.cnblogs.com/dooom/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dooom/archive/2010/01/09/1642848.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dooom/archive/2010/01/09/1642848.html"/><content type="text">这几天做性能优化，网上找了些资料。有时候需要导出某用户下的所有table、view、sequence、trigger等信息，下面的SQL可以将这些信息select出来：[代码]想查找表的数据条数试试这个[代码] 如果没有值，那就创建个函数代码create or replace function count_rows(table_name ...</content></entry></feed>
