1、建立表空間
create tablespace test_tablespace
logging
datafile 'd:test_data.dbf'
size 32m
autoextend on
next 32m maxsize unlimited
extent management local;
其中,test_tablespace為自定義的表空間名,d:test_data.dbf為自定義的資料存放位置,32m為自定義的表空間大小初始值,後期根據需要自增。
2、建立使用者
create user username identified by pwd
account unlock
default tablespace test_tablespace;
其中,username 為自定義使用者名稱,pwd為自定義密碼(口令),test_tablespace為預設表空間名。
3、授權
grant connect,resource to username;
grant dba to username;
分別把 connect,resource和dba許可權授予username使用者。 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...
oracle建立表空間,建立使用者
建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend onnext 32m maxsi...
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...