-
alter user sb. account unlock/lock;查看全部
-
運算符和表達式查看全部
-
column(col) column_name heading new_name;設置字段在查詢時顯示的名字 column(col) column_name format dataformat;設置字段在查詢時顯示的格式 column(col) column_name clear;取消以上設置查看全部
-
distinct 表示不顯示重復的數(shù)據(jù)查看全部
-
truncate table table_name;截斷表,效率較高 delete from table_name where... 都可刪除表數(shù)據(jù)查看全部
-
在插入數(shù)據(jù)時復制數(shù)據(jù)查看全部
-
在建表是復制數(shù)據(jù)查看全部
-
查詢某個表空間的數(shù)據(jù)文件: select file_name where dba_data_files where tablespace_name = 'TEST1_TABLESPACE';查看全部
-
刪除數(shù)據(jù)文件查看全部
-
增加數(shù)據(jù)文件查看全部
-
查詢表空間名時,通常應該大寫: selct status from dba_tablespaces where tablespae_name = 'TEST1_TABLESPACE';查看全部
-
設置表空間聯(lián)機或脫機狀態(tài): alter tablespace tablespace_name online/offline; 聯(lián)機狀態(tài)下表空間可使用查看全部
-
可在dba_data_file查詢自己創(chuàng)建的表空間查看全部
-
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m; 大小10M的永久表空間 create temporary tablespace temptest1_tablespace tempfile 'tempfile1.dbf' size 10m; 大小10M的臨時表空間查看全部
-
創(chuàng)建表空間: create tablespace tablespace_name datafile 'xx.dbf' size xx; 默認會存放在Oracle的安裝目錄下查看全部
舉報
0/150
提交
取消