Oracle知识点简介(5)

来源:未知 责任编辑:责任编辑 发表时间:2013-12-01 14:21 点击:

  if updating('NAME') THEN
    DBMS_OUTPUT.PUT_LINE('更新了名字');
  end if;
end test1;
当执行:update stud set sex='男' where ID=3;时会输出“更新了”
当执行update stud set NAME='测试' where ID=3;时会输出“更新了”和“更新了名字”
 
再如:
create or replace trigger test1
  before
  update  on stud
declare
begin
  raise_application_error(-20001,'不让更新');--该触发器的作用是在更新之前告诉用户不让其更新。
end test1;
在数据字典中查看某个表中的触发器
select * from user_triggers where table_name='STUD';
禁用触发器
Alter trigger test1 disable
激活触发器
Alter trigger test1 enable
禁用表上所有的触发器
Alter table dept(表名) disable all triggers
启用表上所有的触发器
Alter table dept(表名) enable all triggers
当改变表结构时重新编译触发器
Alter trigger test1 compile;
删除触发器
drop trigger test1;
包:
包类似于java中的类,用于将pl/sql中的函数或者过程以及变量进行封装
包分为两部分
1)包说明:里边放置的包的公有组件,如变量,常量,过程等
创建语法:
create or replace package dd is
 
  -- Author  : RR
  -- Created : 2011/7/15 20:38:53
  -- Purpose :
 
  -- Public type declarations
  type <TypeName> is <Datatype>;
 
  -- Public constant declarations
  <ConstantName> constant <Datatype> := <Value>;
 
  -- Public variable declarations
  <VariableName> <Datatype>;
 
  -- Public function and procedure declarations
  function <FunctionName>(<Parameter> <Datatype>) return <Datatype>;
 
end dd;
2)包体
放置具体的实现代码
删除包
Drop package package_name

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • Table函数使用简介
  • Oracle数据库Constraint约束的常用操作及异常处理
  • Bulk Collect性能分析(zz)
  • export/import的使用
  • OCP043第十五讲 Database Security
  • ORACLE10gr2数据导入MySQL方案
  • oracle 让sys用户可以使用isqlplus
  • 在oracle数据库下使用iSQL*Plus DBA访问数据库
  • Oracle行列转换小结
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1