oracle触发器与数据导入导出的简单使用
Posted 呆萌小码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle触发器与数据导入导出的简单使用相关的知识,希望对你有一定的参考价值。
exp cjtxx/[email protected]/orcl file=d:\cjtxx.dmp owner=cjtxx [tables=tablename] imp cjttest/[email protected]/orcl file=d:\cjtxx.dmp full=y insert into bdf2_user_position(id_,position_id_,username_) values(:new.username_,‘ptjs‘,:new.username_);
触发器根据新插入的表记录,新增另一条表信息
create or replace trigger test after insert on bdf2_user for each row declare -- local variables here begin insert into bdf2_user_position(id_,position_id_,username_) values(:new.username_,‘ptjs‘,:new.username_); end test;
以上是关于oracle触发器与数据导入导出的简单使用的主要内容,如果未能解决你的问题,请参考以下文章