2013年10月14日

Oracle数据库游标的类型

摘要: 游标是SQL的一个内存工作区,由系统或用户以变量的形式定义。游标的作用就是用于临时存储从数据库中提取的数据块。Oracle数据库的Cursor类型包含三种: 静态游标:分为显式(explicit)游标和隐式(implicit)游标;REF游标:是一种引用类型,类似于指针。--测试数据create table student(sno number primary key,sname varchar2(10));declare i number:=1;beginwhile i<=50 loop insert into student(sno,sname) values (i,'nam 阅读全文

posted @ 2013-10-14 14:48 AssassinAnn 阅读(4405) 评论(0) 推荐(0) 编辑

Oracle Dataguard三种保护模式概述(转)

摘要: Oracle的DataGuard技术有三种实现模式,分别是max performance、max availability、max protection这三种模式。以下是来自Oracle文档的摘要信息:In some situations, a business cannot afford to lose data. In other situations, the availability of the database may be more important than the loss of data. Some applications require maximum databas 阅读全文

posted @ 2013-10-14 10:11 AssassinAnn 阅读(642) 评论(0) 推荐(0) 编辑

导航