oracle中建立表空間和建立使用者
1,資料庫,表空間,使用者名稱,表資料的關係
乙個資料庫對應多個表空間,乙個表空間對應多個表資料
乙個表空間對應多個使用者,乙個使用者對應多個表
oracle中建立乙個表空間
create tablespace wbc --建立表空間
datafile 'c:/waterboss.dbf' --表空間對應的資料檔案位址和檔名
size 100m --設定資料檔案的大小
autoextend on --設定表空間自動遞增的大小
next 10m
//當用資料空間建立好了以後,建立使用者
create user wbc --建立使用者
identified by itcast --設定密碼
default tablespace wbc --設定使用者屬於那乙個資料空間
//給使用者設定許可權
grant dba to wbc
1,資料庫,表空間,使用者名稱,表資料的關係
乙個資料庫對應多個表空間,乙個表空間對應多個表資料
乙個表空間對應多個使用者,乙個使用者對應多個表
oracle中建立乙個表空間
create tablespace wbc --建立表空間
datafile 'c:/waterboss.dbf' --表空間對應的資料檔案位址和檔名
size 100m --設定資料檔案的大小
autoextend on --設定表空間自動遞增的大小
next 10m
//當用資料空間建立好了以後,建立使用者
create user wbc --建立使用者
identified by itcast --設定密碼
default tablespace wbc --設定使用者屬於那乙個資料空間
//給使用者設定許可權
grant dba to wbc
oracle建立表空間和表
oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫中建表,必須先建立該資料庫的使用者,並且為該使...
oracle中建立使用者和表空間
表空間 建立表空間 create tablespace sunnycoffee datafile e oracletest sunnycoffee ts.dbf size 10m autoextend on 刪除表空間 drop tablespace sunnycoffee including co...
PLSQL來Oracle建立表空間和建立使用者
建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend on next 32m maxs...