Home > Database > Mysql Tutorial > oracle数据库约束条件删除、取消、启用

oracle数据库约束条件删除、取消、启用

WBOY
Release: 2016-06-07 15:13:29
Original
1407 people have browsed it

欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 在进行数据库进行操作时,由于各个表的约束条件限制,进行数据批量操作很困难,下面是对oracle数据库约束条件语句进行操作,供大家参考! 删除所有外键约束 Sql代码 复制代码 select 'alter table '

欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入

  在进行数据库进行操作时,由于各个表的约束条件限制,进行数据批量操作很困难,下面是对oracle数据库约束条件语句进行操作,供大家参考!

  删除所有外键约束

  Sql代码 复制代码

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

  禁用所有外键约束

  Sql代码

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

  启用所有外键约束

  Sql代码

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

oracle数据库约束条件删除、取消、启用

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template