1 using System; 2 using
System.Collections.Generic; 3 using System.Text; 4 using System.IO; 5 using
System.Diagnostics; 6 7 namespace Utility...
分类:
其他好文 时间:
2014-05-17 00:50:37
阅读次数:
249
原文http://knowyouknowme.iteye.com/blog/574974一、decode在Oracle/PLSQL中,decode具有和
IF-THEN-ELSE 一样的功能。decode函数语法如下:decode( expression , search , result [, s...
分类:
数据库 时间:
2014-05-16 20:41:51
阅读次数:
540
第三章 share pool 调整1、sga 组成部分1)database
buffer2)redolog buffer3)share pool
:共享池,存放最近最常使用的sql和plsql语句及解析计划和数据字典信息---library cache: 存放最近最常使用的sql及plsql 语句....
分类:
其他好文 时间:
2014-05-16 19:08:16
阅读次数:
489
/*
程序包:对相关存储过程,函数,变量,游标和异常等对象的封装
有声明和主体组成
优点:1.模块化;2.更轻松的应用程序设计;3.信息隐藏;4.性能更佳
*/
/*
触发器:当特定事件出现事自动执行的存储过程,不能被显试地调用
功能:1.自动生成数据;2.自定义复杂的安全权限;3.提供审计和日志记录;4.启用复杂的业务逻辑
*/...
分类:
数据库 时间:
2014-05-15 15:00:55
阅读次数:
430
/*
函数:可以有返回值得命名的PL/SQL子程序,必须有返回值
关键字:function return
*/...
分类:
数据库 时间:
2014-05-15 14:49:18
阅读次数:
359
Generating Files with the TextTransform Utility
\Program Files\Common Files\Microsoft Shared\TextTemplating\11.0C:\Program Files
(x86)\Common Files\mi...
分类:
其他好文 时间:
2014-05-15 10:14:13
阅读次数:
212
Generating Files with the TextTransform Utility
\Program Files\Common Files\Microsoft Shared\TextTemplating\11.0C:\Program Files
(x86)\Common Files\mi...
分类:
其他好文 时间:
2014-05-15 10:06:28
阅读次数:
994
存储过程:过程是用于完成特定任务的子程序(代码的集合)
/*
子程序的优点:1.模块化,将程序分解为逻辑模块;
2.可重用性,可以被任意数目的程序调用;
3,可维护性,简化维护操作;
4.安全性:通过设置权限,是数据
*/...
分类:
数据库 时间:
2014-05-15 05:11:50
阅读次数:
317
using System;using System.Collections.Generic;using
System.Text;using System.Data;using System.Xml;using System.IO;using
System.Web;namespace Utility{...
分类:
Web程序 时间:
2014-05-14 09:54:50
阅读次数:
324
create table mytest(name varchar(20),password varchar(30));
create or replace procedure sp_pro2 is
begin
insert into mytest values('fc','123');
end;
查看错误信息
show error
如何调用...
分类:
数据库 时间:
2014-05-13 07:41:24
阅读次数:
464