無論是linux系統,還是windows系統,只要登入oracle之後,所有操作命令都是一樣的。
如下:建立使用者 create user lxg identified by lxg default tablespace test;
授權 grant resource,connect,dba to test;
刪除表空間 drop tablespace "空間名" including contents and datafiles
刪除使用者 drop user "lxg" cascade
增加表空間 alter tablespace chinawater add datafile 'c:oracleoradataorcl9addchinawater.dbf' size 200m
建立表空間
create tablespace tfyj
logging
datafile 'e:\oracle\product\10.2.0\oradata\orcl\tfyj_data.dbf'
size 4096m
autoextend on
next 150m maxsize 20480m
extent management local;
oracle建立使用者常用語句 建立使用者,授權
1.建立表空間 create tablespace user data logging logging 是物件的屬性,建立資料庫物件時,oracle 將日誌資訊記錄到練級重做日誌檔案中。代表空間型別為永久型 datafile d oracle oradata oracle9i user data.d...
oracle建立表空間使用者許可權的語句
單純紀錄。an highlighted block 分為四步 第1步 建立臨時表空間 注意 c project oracletablespace 請指向正確的路徑並在下方進行替換 create temporary tablespace aaa temp tempfile c project orac...
Oracle 使用者建立
執行 cmd 進入 dos視窗 c sqlplus sys password as sysdba 使用sys使用者登入 sql create user username identified by password 建立使用者名稱和密碼 sql create tablespace ts userna...