建立表空間是用create tablespace命令完成的,
create tablespace sp001 datafile 'd:/sp001.dbf' size 20m uniform size 128k
說明: 執行完上述命令後,會建立名稱為data001的表空間,並為該錶空間建立名稱為
data01.dbf的資料檔案,區的大小為128k,
使用資料表空間
create table mypart(deptno number(4),dname varchar2(14),loc varchar2(13),loc
varchar2(13) ) tablespace sp001;
修改表空間的狀態
alter tablespace 表空間 read only; //設為唯讀
alter tablespace 表空間名 offline ;//使表空間離線
alter tablespace 表空間名 online;//使表空間聯機
alter tablespace 表空間名 read write;//使表空間可讀寫
(1) 知道表空間名,顯示該錶空間包括的所有表
select * from all_tables where tablespace_name ='表空間名'
(2)知道表空間名,檢視該錶屬於哪個表空間
select tablespace_name , table_name from user_tables where table_name ='emp'
刪除表空間
一般情況下,由特權使用者或是dba表操作,如果是其他使用者操作,那麼要求要求使用者具有drop
tablespace系統許可權
例 : drop tablespace '表空間' including contents and datafiles;
說明: including contents 表示刪除表空間時,刪除該空間的所有資料庫物件。而datafiles
表示將資料庫檔案也刪除。
擴充套件表空間
(1) 增加資料檔案
sql>alter tablespace sp01 add datafile 'd:/test/sp01.dbf' size 20m
(2) 增加資料檔案的大小
sql>alter tablespace 表空間名 'd:/test/sp01.dbf' resize 20m;
這裡需要注意的是資料檔案的大小不要超過500m.
(3) 設定檔案的自動增長
sql>alter tablespace 表空間名 'd"/test/sp01.dbf' autoextend on next 10m maxsize
500m;
移動資料檔案
一般情況下是指從乙個磁碟下移動到另乙個磁碟中。
步驟:(1)確定資料檔案所在的表空間
select tablespace_name from dba_data_files where file_name ='d:/sp001.dbf';
(2) 使表空間離線
確保資料檔案的一致性,將表空間轉變為offline的狀態
alter tablespace sp01 offline;
(3)使用命令移動資料檔案到指定的目標位置
host move d:/sp001.dbf c: /sp001.dbf
(4) 執行alter tablespace 命令
在物理上移動了資料後,還必須執行alter tablespace 命令對資料庫檔案進行邏輯修改
sql>alter tablespace sp01 rename datafile 'd:/test/sp01.dbf' to 'c:/test/sp01.db'
(5)使表空間聯機
在移動了資料檔案後,為了使使用者可以訪問該錶空間,必須將其轉變為online狀態:
sql>alter tablespace data01 online;
建立表的事例:
create table goods(goodsid char(8) primary key,--主鍵
goodsname varchar2(30),
unitprice number(10,2) check (unitprice >0),
category varchar2(8),
provider varchar2(30));
create table customer(customerid char(8) primary key,--主鍵
name varchar2(50) not null,
address varchar2(50),
email varchar2(50) unique,--唯一
*** char(2) default '男' check (*** in('男','女')),
cardid char(18));
create table purchase(customerid char(8)references customer(customerid), --外來鍵
goodid char(8) references goods(goodsid),
nums number(10) check(nums between 1 and 30));
向表中的字段新增索引
alter table goods modify goodname not null;
alter table customer add constraint sss unique(cardid);
alter table customer add costraint aaa check(address in('東城','西城'));
//sss和aaa都是預定義取得別名(就是指臨時定義的)
刪除約束
當不再需要某個約束時,可以刪除。
alter table 表名 drop constraint 約束名稱
在刪除主鍵約束的時候,可能有錯誤,比如:
alter table 表名 drop primary key;
這是因為如果在兩張表存在主從關係,那麼在刪除主表的主鍵約束時,必須帶上cascade選項
比如 alter table 表名 drop primary key cascade;
oracle表空間操作
建立表空間 oracle中的tablespace 表空間 就相當於sqlserver的database create tablespace data01 datafile d oracle ora92 oradata db data01.dbf size 200m uniform size 128k...
表空間相關操作
1 檢視表在那個表空間 select tablespace name,table name from user talbes where table name test 2 獲取使用者的預設表空間 select username,default tablespace from dba users w...
Oracle 表空間操作
建立表空間 create temporary tablespace tablespace name tempfile datafile 表空間中資料檔名 xx.dbf size 資料檔案大小 xx datafile 表空間中資料檔名,沒有指定路徑則預設安裝在oracle安裝目錄下 temporary...