OFBiz安装的Oracle中导入数据的必须的sql语句

select 'alter table ' || table_name || ' disable constraint ' || constraint_name ||';' from user_constraints where constraint_type='R'  ;


select 'alter table ' || table_name || ' enable constraint ' || constraint_name ||';' from user_constraints where constraint_type='R'  ;

猜你喜欢

转载自jiasudu.iteye.com/blog/1885305
今日推荐