• 博客园Logo
  • 首页
  • 新闻
  • 博问
  • 专区
  • 闪存
  • 班级
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 简洁模式 ... 退出登录
    注册 登录
E流冷涧
开始归纳总结。
博客园    首页    新随笔    联系   管理    订阅  订阅
2011年9月8日
Oracle Audit
摘要: http://space.itpub.net/519536/viewspace-697205 阅读全文
posted @ 2011-09-08 16:10 wzc998 阅读(91) 评论(0) 推荐(0) 编辑
2011年8月16日
关于"cannot perform a DDL, commit or rollback inside a query or DML" 错误
摘要: 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 阅读全文
posted @ 2011-08-16 10:04 wzc998 阅读(1112) 评论(0) 推荐(0) 编辑
2011年8月12日
关于varchar2在pl/sql和schema级别的最大值
摘要: http://www.cublog.cn/u/30637/showart_1919003.htmlhttp://www.itpub.net/thread-1216548-1-1.html 阅读全文
posted @ 2011-08-12 16:46 wzc998 阅读(140) 评论(0) 推荐(0) 编辑
ORA-01031 权限不足错误的解决
摘要: 在做一个备份表数据的存储过程时遇到的错误。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用户)处理结束。 阅读全文
posted @ 2011-08-12 11:50 wzc998 阅读(503) 评论(0) 推荐(0) 编辑
通过代码备份存储过程,package body 和表数据 并还原
摘要: 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对数据进行转换,如下 阅读全文
posted @ 2011-08-12 11:13 wzc998 阅读(543) 评论(0) 推荐(0) 编辑
2011年6月10日
XSL
摘要: 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>在这里,我 阅读全文
posted @ 2011-06-10 10:53 wzc998 阅读(614) 评论(0) 推荐(0) 编辑
ASP
摘要: #include 命令#include 命令用于在多重页面上创建需重复使用的函数、页眉、页脚或者其他元素等。通过使用 #include 命令,我们可以在服务器执行 ASP 文件之前,把另一个ASP文件插入这个文件中。#include 命令用于在多重页面上创建需重复使用的函数、页眉、页脚或者其他元素等。关键词 virtual 指示路径以虚拟目录开始。<!-- #include virtual ="/html/header.inc" -->关键词 File 指示一个相对的路径。相对路径起始于含有引用文件的目录。<!-- #include file = &quo 阅读全文
posted @ 2011-06-10 10:24 wzc998 阅读(224) 评论(0) 推荐(0) 编辑
2011年5月5日
.net实现松耦合事件的三种方法
摘要: 松耦合事件实现方法有多种,本文重点描述使用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 阅读全文
posted @ 2011-05-05 15:05 wzc998 阅读(565) 评论(0) 推荐(0) 编辑
Log4net不同版本在app.config和web.config的配置区别
摘要: 整理一下,以防下次再浪费时间了。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 阅读全文
posted @ 2011-05-05 15:01 wzc998 阅读(7976) 评论(1) 推荐(0) 编辑
2011年3月24日
SQL*Loader FAQ
摘要: 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 阅读全文
posted @ 2011-03-24 17:26 wzc998 阅读(931) 评论(0) 推荐(0) 编辑
下一页
Copyright © 2022 wzc998
Powered by .NET 6 on Kubernetes