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

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

Jun 07, 2016 pm 03:13 PM
oracle delete Cancel enable database condition constraint

欢迎进入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数据库约束条件删除、取消、启用

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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How long will Oracle database logs be kept? How long will Oracle database logs be kept? May 10, 2024 am 03:27 AM

How long will Oracle database logs be kept?

Oracle database server hardware configuration requirements Oracle database server hardware configuration requirements May 10, 2024 am 04:00 AM

Oracle database server hardware configuration requirements

How much memory does oracle require? How much memory does oracle require? May 10, 2024 am 04:12 AM

How much memory does oracle require?

How much memory is needed to use oracle database How much memory is needed to use oracle database May 10, 2024 am 03:42 AM

How much memory is needed to use oracle database

Oracle scheduled tasks execute the creation step once a day Oracle scheduled tasks execute the creation step once a day May 10, 2024 am 03:03 AM

Oracle scheduled tasks execute the creation step once a day

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

Detailed tutorial on establishing a database connection using MySQLi in PHP

How much memory does an oracle database require? How much memory does an oracle database require? May 10, 2024 am 02:09 AM

How much memory does an oracle database require?

How to start the listening program in oracle How to start the listening program in oracle May 10, 2024 am 03:12 AM

How to start the listening program in oracle

See all articles