`
文章列表
Oracle 10g数据库闪回知识 初始定义:表名==XX create table XX (   ID    VARCHAR2(22),   VALUE VARCHAR2(22) ) 1. Drop 操作闪回 Drop table XX;--删除表 select * from recyclebin;--查看回收站,发现XX表 flashback table XX to before drop;--闪回到被丢弃前的状态 select * from recyclebin;--查看回收站,未发现XX表 2. Delete,add,update操作闪回 select systimestamp ...
--如何使用复合数据类型 --一、pl/sql记录 --1、在select into中自定义pl/sql记录 declare -- 自定义记录变量类型 type comtype_record_type is record( id communitytype.community_type_id%type, name communitytype.name%type ); --自定义变量 comtype_record comtype_record_type; begin select ct.community_type_id,ct.name into comtype_rec ...
--while循环控制语句 declare i int:=1; begin while i<=10 loop dbms_output.put_line('当前循环体内i的值:'||i); i:=i+1; end loop; end; 当前循环体内i的值:1 当前循环体内i的值:2 当前循环体内i的值:3 当前循环体内i的值:4 当前循环体内i的值:5 当前循环体内i的值:6 当前循环体内i的值:7 当前循环体内i的值:8 当前循环体内i的值:9 当前循环体内i的值:10 --for循环控制语句 递增 begin for i in 1..10 loop ...
1、oracle将多行变成一行 select d.datagetsource_id,wmsys.wm_concat(d.catagory_id) from datagetsource2catagory d group by d.datagetsource_id 2、oracle将表数据导入导出 C:\Documents and Settings\Administrator>exp irdp/irdp file=e:/数据库备份/irdp_bak_200911020927_forUpdate.dmp full-y 导出数据库的语句,最后的是full-y,不是full= ...
--该循环至少会执行一次,且循环体内必须写有跳出循环体的跳出语句 declare v_i int:=1; begin loop dbms_output.put_line('当前循环体内i的值:'||v_i); exit when v_i = 10; v_i:=v_i+1; end loop; end;
declare v_community_type_name communitytype.name%type; begin select c.name into v_community_type_name from communitytype c where c.community_type_id = '&community_type_id'; case when v_community_type_name = '电子图书' then dbms_output.put_line('查询到电子图书'); when v_community_type_name = '新 ...
declare v_count number(6,2); begin select count(1) into v_count from communitytype t where t.community_type_id = 'AcademicRes'; if v_count > 1 then dbms_output.put_line('查询到多条'); elsif v_count > 0 then dbms_output.put_line('查询一条'); else dbms_output.put_line('失败'); end if; end;
dhtmlx官方框架——dhtmlxGrid和dhtmlxTabbar示例、简单例子
ejb3.0学习资料PDF格式
css文档
MyEclipse快捷键操作说明 一、 Alt+Shift+R 重命名 用途:首先该快捷键可以方便的对java类进行重命名,省去了我们点击右键,然后点击Refactor,然后点击Rename,再修改类名这一系列操作,比较实用。还有另外一个功能就是如果一个类中,有一个变量在该类的各个方法中都广泛的用到,此时想改变这个变量的名称的时候,需要将用到这个变量的方法中的名字全部修改一遍,很是麻烦,这个快捷键功能可以让我们只修改其中一个变量,然后在该类中其他地方用到该变量的地方自动改变。 例子: 1、 对java类进行重命名 首先打开包路径视图(Package Explorer),并选中其中某一个java ...
一、简介: BeanUtils提供对 Java反射和自省API的包装。其主要目的是利用反射机制对JavaBean的属性进行处理。我们知道,一个JavaBean通常包含了大量的属性,很 多情况下,对JavaBean的处理导致大量get/set代码堆积,增加了代码长度和阅读代码的难度。 二、用法: BeanUtils是这个包里比较常用的一个工具类,这里只介绍它的copyProperties()方法。该方法定义如下: public static void copyProperties(java.lang.Object dest,java.lang.Object orig) throws ja ...
1、定时调度Quartz: http://www.terracotta.org/dl/quartz-oss-sign-up 2、Spring: http://www.springsource.org/download 3、jquery-easyui: http://jquery-easyui.wikidot.com/document:pagination 4、jQuery在线参考文档: http://jquery-api-zh-cn.googlecode.com/svn/trunk/index.html 5、Ibatis的jar包下载: http://ibatis.apache.org/ ...
1、首先建立数据库表 oracle: -- -- A hint submitted by a user: Oracle DB MUST be created as "shared" and the -- job_queue_processes parameter  must be greater than 2, otherwise a DB lock -- will happen.   However, these settings are pretty much standard after any -- Oracle install, so most users ne ...
把附件下载下来,直接导入到MyEclipse即可
Global site tag (gtag.js) - Google Analytics