-
創(chuàng)建表空間查看全部
-
desc userinfo alter table userinfo add remarks varchar2(500); desc userinfo alter table userinfo modify remarks varchar2(300); alter table userinfo modify userpwd number(6,0); desc userinfo alter table userinfo drop column remarks; alter table userinfo rename column email to new_email; rename userinfo to new_userinfo; desc new_userinfo查看全部
-
設(shè)置用戶默認表空間和臨時表空間查看全部
-
字符型 char nchar 固定長度格式 varchar2 nvarchar2,可變長度格式 數(shù)值型: number(有效數(shù)字,小數(shù)點后的位數(shù)) number(5,2)---123.45 float(n) 日期型 DATE--精確到秒 TIMESTAMP--精確到小數(shù)秒 其他類型 BLOB--二進制存放4GB字節(jié)數(shù)據(jù) CLOB--字符串存放4GB字節(jié)數(shù)據(jù)查看全部
-
記錄 域和字段查看全部
-
drop tablespace gump_tablespace including contents;查看全部
-
alter tablespace gump_tablespace add datafile 'hehe_file.dbf' size 10M; select file_name from dba_data_files where tablespace_name='GUMP_TABLESPACE'; 原有一個創(chuàng)建時的數(shù)據(jù)文件,創(chuàng)建后即有新的數(shù)據(jù)文件,不可刪除第一個; alter tablespace gump_tablespace drop data datafile 'hehe_file.dbf';查看全部
-
表空間:狀態(tài)+數(shù)據(jù)文件 alter tablespace gump_tablespace offline; desc dba_tablespaces select status from dba_tablespaces where tablespace_name='GUMP_TABLESPACE'; alter tablespace gump_tablespace online; 以上是聯(lián)機/脫機狀態(tài) 在聯(lián)機狀態(tài)下可修改只讀/讀寫狀態(tài) alter tablespace gump_tablespace read only; select status from dba_tablespaces where tablespace_name='GUMP_TABLESPACE'; alter tablespace gump_tablespace read write; 默認是讀寫狀態(tài)。查看全部
-
可創(chuàng)建永久表空間和臨時表空間 CREATE tablespace gump_tablespace datafile 'gump1file.dbf' size 10M; CREATE temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10M; desc dba_data_files select file_name from dba_data_files where tablespace_name='GUMP_TABLESPACE'; select file_name from dba_temp_files where tablespace_name='TEMPTEST1_TABLESPACE'; 新的數(shù)據(jù)字典,dba_data_files查看全部
-
數(shù)據(jù)庫--表空間--數(shù)據(jù)文件 永久表空間:數(shù)據(jù)庫中要永久存儲的對象,表、視圖 臨時表空間:中間執(zhí)行的過程存儲,執(zhí)行完后釋放空間 UNDO表空間:保存數(shù)據(jù)被修改的舊值,確??蓤?zhí)行撤銷操作查看全部
-
decode函數(shù),作用類似case..when語句: select username,decode(username,'aaa','計算機部門','bbb','市場部門','其他') as 部門 from users;查看全部
-
case...when的第二種形式使用查看全部
-
case when 的第二種形式查看全部
-
如何使用case..when查看全部
-
case when語句查看全部
舉報
0/150
提交
取消