-
設(shè)置連機或拖機狀態(tài) ALTER TABLESPACE tablespace_name ONLINE|OFFLINE; selct status from dba_tablespaces where tablespae_name = 'TEST1_TABLESPACE'; (tablespace名稱要大寫) 只讀或可讀寫狀態(tài)(只能在ONLINE狀態(tài)下修改) ALTER TABLESPACE tablespace_name READ ONLY|READ WRITE;查看全部
-
創(chuàng)建永久表空間 create tablespace test1_tablespace datafile 'test1file.dbf' size 10m; 創(chuàng)建臨時表空間 create temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10m; 查看路徑 desc dba_data_files select file_name from dba_data_files where tablespace_name = 'TEST1_TABLESPACE' select file_name from dba_tmp_files where tablespace_name = 'TEMPTEST1_TABLESPACE'查看全部
-
在創(chuàng)建表的時候設(shè)置約束。 在修改表時候添加約束。 更改約束的名稱 rename constraint old_name to new_name 刪除約束 disable|enable constraint 約束名 禁用。 drop constraint 約束名 直接刪除 drop primarykey刪除主鍵約束。查看全部
-
———數(shù)據(jù)庫由多個表空間構(gòu)成,表空間由數(shù)據(jù)文件構(gòu)成 表空間的分類 -永久表空間:表,視圖等永久存儲 -臨時表空間:存儲中間過程,暫時存放,自動釋放 -UNDO表空間:保存被修改前信息,數(shù)據(jù)回滾撤銷等查看全部
-
——啟用用戶語句 alter user username account unlock ——鎖定一個用戶 alter user username account lock查看全部
-
desc dba_users查看全部
-
唯一約束。值保持唯一性。 唯一約束和主鍵約束的區(qū)別 主鍵字段值必須是非空的 唯一字段值可以有一個空值 。主鍵約束一個表中只有一個,唯一約束一個表中可以有多個。 unique unique(列名); constraint 約束名 unique(列名);唯一約束的名字 un_開頭查看全部
-
disable|enabled constraint 約束名 drop constraint 約束名。查看全部
-
alter table 表名 add constraint 約束名 foreign key(列名) refer alter table 表名 add constraint 約束名 foreign key(列名) references tbuser1(列名);查看全部
-
constr 約束名 forreign key(列名)references 主表名(主鍵列名)[];查看全部
-
references 外鍵約束。查看全部
-
alter table 表名 add constraint 約束名 primary key(主鍵列名); alter table 表名 rename constraint 原來的名字 to 新名字??梢愿娜魏渭s束的名字。 disable|enable constraint constraint_name 禁用和解禁用 alter table 表名 drop constaint 約束名 刪除。 drop primary key();查看全部
-
非空約束 not null 創(chuàng)建表的時候設(shè)置非空約束。 修改表的時候添加非空約束。 修改表的時候去除非空約束。 去掉not 就將非空驗證去掉了。 altertable 表名 modify 列名 數(shù)據(jù)類型 空或者非空。查看全部
-
非空約束 主鍵約束 外鍵約束 唯一約束 檢查約束 。 約束的作用 定義規(guī)則 確保完整性。查看全部
-
刪除表中的數(shù)據(jù)有兩個truncate table 表名 刪除表中全部數(shù)據(jù)。 和delete from table_name[where conditions]查看全部
舉報
0/150
提交
取消