oracle 怎么 监控数据变化
展开全部
实现:
1. 在plsqldev 中编译java代码 调用接口(具体的语法百度即可) 访问地址是:192.168.12.57:8088/Jfinaltest/show
[sql] view plain copy
create or replace and compile java source named jxdClient as
import java.net.*;
public class Demo {
public static void main(String[] args) {
try {
URL url = new URL("http://192.168.12.57:8088/Jfinaltest/show");
URLConnection rulConnection = url.openConnection();
rulConnection.connect();
rulConnection.getInputStream();
} catch (Exception e) {
e.printStackTrace();
}
}
}
2. 生成存储过程
[sql] view plain copy
create or replace procedure prc_hehe as language java name 'Demo.main(java.lang.String[])';
3. 编写触发器调用存储过程(pre_hehe)
[sql] view plain copy
create or replace trigger jxd7_trigger_wf_nodeinstance
after update or insert
on jxd7_wf_nodeinstance
for each row
begin
if inserting then
prc_hehe;
elsif updating then
prc_hehe;
elsif deleting then
prc_hehe;
end if;
end;
小结:每次表中的数据发生变化的时候,都会执行触发器中的存储过程,存储过程会调用程序的接口,之后程序处理业务逻辑。减少了代码量,保证了数据处理的实时性,减少了程序的压力
1. 在plsqldev 中编译java代码 调用接口(具体的语法百度即可) 访问地址是:192.168.12.57:8088/Jfinaltest/show
[sql] view plain copy
create or replace and compile java source named jxdClient as
import java.net.*;
public class Demo {
public static void main(String[] args) {
try {
URL url = new URL("http://192.168.12.57:8088/Jfinaltest/show");
URLConnection rulConnection = url.openConnection();
rulConnection.connect();
rulConnection.getInputStream();
} catch (Exception e) {
e.printStackTrace();
}
}
}
2. 生成存储过程
[sql] view plain copy
create or replace procedure prc_hehe as language java name 'Demo.main(java.lang.String[])';
3. 编写触发器调用存储过程(pre_hehe)
[sql] view plain copy
create or replace trigger jxd7_trigger_wf_nodeinstance
after update or insert
on jxd7_wf_nodeinstance
for each row
begin
if inserting then
prc_hehe;
elsif updating then
prc_hehe;
elsif deleting then
prc_hehe;
end if;
end;
小结:每次表中的数据发生变化的时候,都会执行触发器中的存储过程,存储过程会调用程序的接口,之后程序处理业务逻辑。减少了代码量,保证了数据处理的实时性,减少了程序的压力
壹寰(深圳)科技文化有限公司
2021-03-27 广告
2021-03-27 广告
不同公司提供的方案也不一样。以上回答如果还觉得不够详细,可以来咨询下壹寰(深圳)科技文化有限公司。91数据恢复是壹寰(深圳)科技文化有限公司旗下专业数据恢复品牌,91数据恢复专注于勒索病毒数据恢复、勒索病毒数据修复、数据库修复、数据库解密恢...
点击进入详情页
本回答由壹寰(深圳)科技文化有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |