<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Kevin_分类_06-Oracle</title><id>http://feed.cnblogs.com/blog/u/35666/category/199249/rss</id><updated>2012-06-03T14:39:27Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/category/199249.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/35666/category/199249/rss"/><entry><id>http://www.cnblogs.com/kevin-wang/archive/2010/05/30/1747463.html</id><title type="text">SQL开发好助手—SQL Assistant 5</title><summary type="text">支持多种数据库：MS SQL、MySQL、Oracle、DB2；下址地址：http://files.cnblogs.com/kevin-wang/SQLAssistant5.0.97.rar1.提供友好的语法格式化、智能提示；(这也是最让开发者喜欢的功能) 2.代码格式化： 3.代码鸟瞰图4.自动生成编程语言的语法格式 5.生成测试数据，保存成脚本文件或直接保存到数据库中 6.将数据导出为SQL...</summary><published>2010-05-30T08:18:00Z</published><updated>2010-05-30T08:18:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2010/05/30/1747463.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2010/05/30/1747463.html"/><content type="text">支持多种数据库：MS SQL、MySQL、Oracle、DB2；下址地址：http://files.cnblogs.com/kevin-wang/SQLAssistant5.0.97.rar1.提供友好的语法格式化、智能提示；(这也是最让开发者喜欢的功能) 2.代码格式化： 3.代码鸟瞰图4.自动生成编程语言的语法格式 5.生成测试数据，保存成脚本文件或直接保存到数据库中 6.将数据导出为SQL...</content></entry><entry><id>http://www.cnblogs.com/kevin-wang/archive/2009/07/11/1521499.html</id><title type="text">ORACLE:检查一个表(TABLE)/函数(FUNCTION)/过程(PROCEDRE)是否存在</title><summary type="text">1.当前用户下是否有某个表 select count(*) from user_tables where table_name = 'TABLE_NAME'; 注意，一般情况下，引号里面的table_name要全部用大写。 如果结果为1，表示有这个表，为0表示没有这个表。 2.某个用户下是否有某个表？ select count(*) from dba_tables where owner = '...</summary><published>2009-07-11T10:46:00Z</published><updated>2009-07-11T10:46:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/11/1521499.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/11/1521499.html"/><content type="text">1.当前用户下是否有某个表 select count(*) from user_tables where table_name = 'TABLE_NAME'; 注意，一般情况下，引号里面的table_name要全部用大写。 如果结果为1，表示有这个表，为0表示没有这个表。 2.某个用户下是否有某个表？ select count(*) from dba_tables where owner = '...</content></entry><entry><id>http://www.cnblogs.com/kevin-wang/archive/2009/07/11/1521498.html</id><title type="text">C#调用ORACLE存储过程返回结果集及函数</title><summary type="text">ORACLE段：首先在ORACLE建立PACKAGE和PACKAGEBODY，将在这里面定义函数和存储过程返回结果集。1：建立PACKAGE： [代码]说明：其实PACKAGE只是个声明罢了。我们在这里定义了一个存储过程返回结集和一个函数，返回字符串。2：建立PACKAGEBODY：[代码]说明：这里建立PACKAGEBODY是具体的说明和使用，将采用什么方式实现。。 C#段：在C#中代码将分为...</summary><published>2009-07-11T10:32:00Z</published><updated>2009-07-11T10:32:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/11/1521498.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/11/1521498.html"/><content type="text">ORACLE段：首先在ORACLE建立PACKAGE和PACKAGEBODY，将在这里面定义函数和存储过程返回结果集。1：建立PACKAGE： [代码]说明：其实PACKAGE只是个声明罢了。我们在这里定义了一个存储过程返回结集和一个函数，返回字符串。2：建立PACKAGEBODY：[代码]说明：这里建立PACKAGEBODY是具体的说明和使用，将采用什么方式实现。。 C#段：在C#中代码将分为...</content></entry><entry><id>http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520492.html</id><title type="text">How to use Oracle 11g ODP.NET UDT in an Oracle Stored Procedure's Where clause</title><summary type="text">摘自：http://www.codeproject.com/KB/database/ORACLE_UDT.aspx?display=PrintIntroduction This code shows how to use Oracle's User Defined Types such as VARRAY using ODP.NET in a WHERE clause of a query in...</summary><published>2009-07-10T05:45:00Z</published><updated>2009-07-10T05:45:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520492.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520492.html"/><content type="text">摘自：http://www.codeproject.com/KB/database/ORACLE_UDT.aspx?display=PrintIntroduction This code shows how to use Oracle's User Defined Types such as VARRAY using ODP.NET in a WHERE clause of a query in...</content></entry><entry><id>http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520490.html</id><title type="text">Record和PL/SQL表</title><summary type="text">Record和PL/SQL表 一，什么是记录Record和PL/SQL表？记录Record：由单行多列的标量类型构成的临时记录对象类型。类似于多维数组。PL/SQL表：由多行单列的索引列和可用列构成的临时索引表对象类型。类似于一维数组和键值对。都是用户自定义数据类型。二，Record + PL/SQL表 用途是什么？Record + PL/SQL表可以进行数据的多行多列存储。这样我们就可使用Rec...</summary><published>2009-07-10T05:42:00Z</published><updated>2009-07-10T05:42:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520490.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520490.html"/><content type="text">Record和PL/SQL表 一，什么是记录Record和PL/SQL表？记录Record：由单行多列的标量类型构成的临时记录对象类型。类似于多维数组。PL/SQL表：由多行单列的索引列和可用列构成的临时索引表对象类型。类似于一维数组和键值对。都是用户自定义数据类型。二，Record + PL/SQL表 用途是什么？Record + PL/SQL表可以进行数据的多行多列存储。这样我们就可使用Rec...</content></entry><entry><id>http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520486.html</id><title type="text">How to set user-defined-type as Oracle SP input parameter in .NET</title><summary type="text">摘自：http://forums.oracle.com/forums/thread.jspa?threadID=386484&amp;tstart=0 http://forums.oracle.com/forums/thread.jspa?threadID=911710&amp;tstart=29We have an Oracle SP that is being called in C#. ...</summary><published>2009-07-10T05:39:00Z</published><updated>2009-07-10T05:39:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520486.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520486.html"/><content type="text">摘自：http://forums.oracle.com/forums/thread.jspa?threadID=386484&amp;tstart=0 http://forums.oracle.com/forums/thread.jspa?threadID=911710&amp;tstart=29We have an Oracle SP that is being called in C#. ...</content></entry><entry><id>http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520485.html</id><title type="text">C#调用Oracle的存储过程，其参数为数组类型</title><summary type="text">---------------------------------------------------------------------------------------------- Create or replace package packtest as type string_array is table of varchar2(21) index by binary_integ...</summary><published>2009-07-10T05:36:00Z</published><updated>2009-07-10T05:36:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520485.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520485.html"/><content type="text">---------------------------------------------------------------------------------------------- Create or replace package packtest as type string_array is table of varchar2(21) index by binary_integ...</content></entry><entry><id>http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520482.html</id><title type="text">Calling Oracle stored procedures from Microsoft.NET</title><summary type="text">摘自：http://www.c-sharpcorner.com/UploadFile/john_charles/CallingOraclestoredproceduresfromMicrosoftdotNET06222007142805PM/CallingOraclestoredproceduresfromMicrosoftdotNET.aspxIntroduction This article ...</summary><published>2009-07-10T05:33:00Z</published><updated>2009-07-10T05:33:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520482.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520482.html"/><content type="text">摘自：http://www.c-sharpcorner.com/UploadFile/john_charles/CallingOraclestoredproceduresfromMicrosoftdotNET06222007142805PM/CallingOraclestoredproceduresfromMicrosoftdotNET.aspxIntroduction This article ...</content></entry><entry><id>http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520480.html</id><title type="text">如何调用 Oracle 存储过程在 Visual Basic.NET 使用 Microsoft Oracle 托管提供程序</title><summary type="text">摘自：http://support.microsoft.com/kb/321718创建 Oracle 表 此示例使用在 Oracle 中定义的表 Scott/Tiger 架构。 默认，Oracle Scott/Tiger 架构附带标准 Oracle 安装。如果不存在此架构，必须运行以下的"创建表和插入"脚本，表： CREATE TABLE DEPT (DEPTNO NUMBER(2,0) NOT ...</summary><published>2009-07-10T05:31:00Z</published><updated>2009-07-10T05:31:00Z</updated><author><name>Kevin-wang</name><uri>http://www.cnblogs.com/kevin-wang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520480.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevin-wang/archive/2009/07/10/1520480.html"/><content type="text">摘自：http://support.microsoft.com/kb/321718创建 Oracle 表 此示例使用在 Oracle 中定义的表 Scott/Tiger 架构。 默认，Oracle Scott/Tiger 架构附带标准 Oracle 安装。如果不存在此架构，必须运行以下的"创建表和插入"脚本，表： CREATE TABLE DEPT (DEPTNO NUMBER(2,0) NOT ...</content></entry></feed>
