建表空間
語法:create tablespacetablespace_namedatafiledatafile_pathsize 2048m autoextend on;
tablespace_name:表空間的名稱
datafile_path:資料檔案的儲存路徑,必須有讀寫的許可權,可以用chmod設定
size:表空間大小
舉例:create tablespace oacloud datafile '/oracle_data_file/oacloud.dbf' size 2048m;
建使用者
語法:create useruser_nameidentified byuser_pwddefault tablespacetablespace_name;
user_name:使用者名稱
user_pwd:使用者密碼
tablespace_name:上一步建的表空間
舉例:create user dtoa identified by dtoa default tablespace oacloud;
給使用者授權
grant connect,resource to dtoa;
grant dba to dtoa;
檢視表空間
select t.tablespace_name, round(sum(bytes / (1024 * 1024)), 0) ts_size
from dba_tablespaces t, dba_data_files d
where t.tablespace_name = d.tablespace_name
group by t.tablespace_name;
檢視表空間物理檔案位址
select tablespace_name,
file_id,
file_name,
round(bytes / (1024 * 1024), 0) total_space
from dba_data_files
order by tablespace_name;
刪除表空間
drop tablespace mid_data including contents and datafiles
資料檔案被服務占用所以刪不掉,停掉服務再刪除。
ORACLE建表空間及使用者
檢查自己的身份是否是sysdba sql show user user is sys 如果不是,使用 sql sqlplus nolog sql conn as sysdba 一 sql create user 使用者名稱 default tablespace 表空間名 identified by ...
Oracle 建使用者 表空間指令碼
建表空間 create tablespace 使用者 datafile d oradatadev 使用者 dbf size 200m autoextend onnext 50m maxsize 4096m extent management local create temporary tables...
Oracle資料庫 建庫 建表空間,建使用者
oracle資料庫 建庫 建表空間,建使用者 oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫...