oracle資料庫維護操作4

來源:互聯網
上載者:User

標籤:span   int   pre   style   oracle   drop   恢複   books   dba   

--添加、修改與刪除約束--1.添加約束alter table tableadd[constraint constraint]constraint_type(column1[,column2,…])[constraint_parameters];alter table books modify title not null;--添加非空約束--2.修改約束ALTER TABLE tableMODIFY[CONSTRAINT constraint][PRIMARY KEY]|[UNIQUE(column1[,column2,…])][constraint_parameters];--3.重新命名約束alter table table rename constraint old_name to new_name;--4.刪除約束ALTER TABLE table    DROP[CONSTRAINT constraint]    [PRIMARY KEY]|[UNIQUE(column1[,column2,…])]    [CASCADE][KEEP|DROP INDEX]set constraints all deferred;--對所有可以延遲的約束進行延遲檢查set constraints all immediate;--恢複所有延遲檢查的約束為立即檢查--查詢約束資訊all_constraints--包含目前使用者可以訪問的所有約束定義資訊user_constraints--包含目前使用者擁有的所有約束的定義資訊dba_constraints--包含當前資料庫中所有約束的定義資訊all_cons_columns--包含目前使用者可以訪問的約束列資訊user_cons_columns--包含目前使用者擁有的約束列的資訊dba_cons_columns--包含當前資料庫所有約束列的資訊

 

oracle資料庫維護操作4

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.