摘要:
http://space.itpub.net/519536/viewspace-697205 阅读全文
摘要:
error scenario:update a set field1 = functionA() where ...function functionA return varchar2asbegin...--may beraise_application_error(-20000,'TEST');...EXCEPTIONWHEN OTHERS THEN log_to_table(...) Commit;end functionA;Most of the time, functionA will not cause any problem. It log into log tab 阅读全文
摘要:
http://www.cublog.cn/u/30637/showart_1919003.htmlhttp://www.itpub.net/thread-1216548-1-1.html 阅读全文
摘要:
在做一个备份表数据的存储过程时遇到的错误。procedure backuptestisv_sql varchar2(100);beginv_sql := 'create table bk1 as select * from bkt';execute immediate v_sql;end backuptest;1,用系统管理员登陆oracle2,grant create any table to xxxxx(执行用oracle用户)处理结束。 阅读全文
摘要:
Table data--buckup tabledatacreate table Table_BUCKUP as(select * from Table1);--roolback table datadrop table Table1;create table Table1 as(select * from Table_BUCKUP);drop table Table_BUCKUP;当表中存在long类型字段是会有异常 ORA-00997: 非法使用 LONG 数据类型, 遇到这种问题使用to_lob或或sys.dbms_metadata_util.long2varchar对数据进行转换,如下 阅读全文
摘要:
HTML vs XMLHTML标记只是简单的表示内容的显示形式,而与表示的内容没有任何关联,为文档的进一步处理带来极大的不便。<HTML><BODY><TABLE border=1 cellspacing=0><TH>姓名<TD>禹希初<TH>性别<TD>男<TH>生日<TD>1977.5<TR><TH>技能<TD colspan=5>数据库设计与维护、WEB开发</TABLE></BODY></HTML>在这里,我 阅读全文
摘要:
#include 命令#include 命令用于在多重页面上创建需重复使用的函数、页眉、页脚或者其他元素等。通过使用 #include 命令,我们可以在服务器执行 ASP 文件之前,把另一个ASP文件插入这个文件中。#include 命令用于在多重页面上创建需重复使用的函数、页眉、页脚或者其他元素等。关键词 virtual 指示路径以虚拟目录开始。<!-- #include virtual ="/html/header.inc" -->关键词 File 指示一个相对的路径。相对路径起始于含有引用文件的目录。<!-- #include file = &quo 阅读全文
摘要:
松耦合事件实现方法有多种,本文重点描述使用spring.net来实现。并同时给出其他实现方案。一,spring.netSpring.Objects.Events.IEventRegistry接口封装了事件注册中心,spring容器通过Spring.Objects.Events.Support.EventRegistry对象代理实现了这个事件注册中心。于是我们可以使用如下几个方法把事件注册到容器中。void PublishEvents(object sourceObject);void Subscribe(object subscriber);void Subscribe(object subs 阅读全文
摘要:
整理一下,以防下次再浪费时间了。app.config配置方法(Log4net v1.2.0 )1,app.config中<configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /></configSections><log4net> <!-- Define some output appenders -->。。。 <!-- Setup 阅读全文
摘要:
What is SQL*Loader and what is it used for?SQL*Loader is a bulk loader utility used for moving data from external files into theOracle database. Its syntax is similar to that of theDB2load utility, but comes with more options. SQL*Loader supports various load formats, selective loading, and multi-ta 阅读全文