oracle中使用on delete cascade和on delete set null來建立外鍵其面我們介紹了建立外鍵約束時如果使用oracle預設的建立方式,在刪除被參照的資料時,將無法被刪除,這一點在oracle9i中給了我們更多靈活的選擇,我們可是使用on delete cascade和 on delete set
轉載--http://www.eygle.com/archives/2006/02/oracle_howto_get_oracle_dbid.html在進行資料庫恢複的過程中,很多時候我們需要知道Oracle資料庫的DBID,通常有以下幾種方法可以獲得資料庫的DBID.1.查詢v$database獲得由於DBID在控制檔案和資料檔案中都存在記錄,所以如果能夠mount資料庫就可以查詢v$database視圖獲得. SQL> alter database mount;Database
一.Workspace Manager 組件說明 在說明之前,我們先用如下SQL查看一下DB中的組件:SQL> col comp_id for a15SQL> col version for a15SQL> col comp_name for a30SQL> select comp_id,comp_name,versionfrom dba_registry ; COMP_ID COMP_NAME VERSION-
一. 官網對Unique Constraints說明http://download.oracle.com/docs/cd/E11882_01/server.112/e16508/datainte.htm#CNCPT1642 uniquekey constraint requires that every value in a column or set of columns beunique. No rows of a table may have duplicate
在Oracle Linux 6.1 上安裝Oracle 11.2.0.3, 在運行runInstaller 時報錯。 具體如下:[root@dave mnt]# xhost +access control disabled, clients canconnect from any host[root@dave mnt]# su - oracle[oracle@dave ~]$ cd /u01/software/database/[oracle@dave database]$ lsdoc
1.字串拼接update tbl_main d set d.area_id='0'||d.area_id2.預存程序及遊標create or replace procedure PRC_INSET_DEAL asbegin declare cursor main_depart is select * from main_bak ; temp main_bak%rowtype; begin open main_depart; loop fetch
Technorati 標籤: oracle--以SYS使用者建立目錄dir_dump,檔案就儲存在這個目錄下SQL> create directory dir_dump as '/data/cmssdb';Directory created.--授權對應的操作帳號讀和寫的許可權,這裡是operatorSQL> grant read on directory dir_dump to operator;Grant succeeded.SQL> grant write on