SQL指令碼建立表空間 使用者 密碼及授權

2021-09-01 21:25:52 字數 916 閱讀 8266

sqlplus / as sysdba

-------------------------------

--建立永久表空間和臨時表空間

create tablespace tbs_表空間

datafile 'pda' size 1000m autoextend on next 102400k maxsize unlimited

extent management local autoallocate

logging

online

segment space management auto;

-- 新建乙個使用者

create user 使用者名稱

identified by 密碼

default tablespace tbs_表空間

temporary tablespace temp

profile default;

commit;

-- 授角色許可權

grant connect to 使用者名稱 with admin option;

grant exp_full_database to 使用者名稱 with admin option;

grant imp_full_database to 使用者名稱 with admin option;

grant resource to 使用者名稱 with admin option;

grant select_catalog_role to 使用者名稱 with admin option;

-- 授系統許可權

grant select any dictionary to 使用者名稱 with admin option;

grant unlimited tablespace to 使用者名稱 with admin option;

commit;

oracle建立表空間及使用者

以system使用者登入後,建立表空間 connect system manager create tablespace 表空間名稱 datafile oracle base oradata oracle sid 資料檔案.dbf size 100m reuse autoextend on next...

oracle建立表空間及使用者

分為四步 第1步 建立臨時表空間 create temporary tablespace user temp tempfile d oracle oradata oracle9i user temp.dbf size 50m autoextend onnext 50m maxsize 20480m ...

Oracle建立使用者及表空間

drop tablespace local temp create temporary tablespace local temp size 32m autoextend on next 32m maxsize 2048m extent management local drop tablespac...