建立使用者sql:
--檢視表空間的位置和物理檔案
select tablespace_name,file_id,file_name,bytes/(1024*1024)total_space from dba_data_files;
--先檢視dbf檔案的位置
--建立表空間
create tablespace "spoon"
datafile 'd:\software\oracle11g\oradata\orcl\spoon01.dbf' size 100 m autoextend on next 100
--建立使用者並分配表空間
create user "spoon" identified by "123456" default tablespace "spoon";
grant "dba" to "spoon";
alter user "spoon" default role "dba"
刪除沒有用的使用者sql:
drop user spoon cascade;
drop tablespace spoon including contents and datafiles;
有時候提示不能刪除正在連線的使用者,需要將會話斷掉,再刪除
alter system kill session '24,15141';
alter system kill session '45,31654';
alter system kill session '158,63176';
建立oracle使用者及刪除使用者
建立使用者 create user 使用者名稱 identified by 密碼 default tablespace 表空間名 temporary tablespace 臨時表空間名 profile default quota unlimited on 表空間名 grant revoke obje...
Oracle 建立使用者 刪除使用者 給使用者授權
oracle 一般情況下只建乙個庫,是針對使用者而言的,每個oracle使用者都有乙個名字和口令,並擁有一些由其建立的表 檢視和其他資源。所以要掌握穿件使用者,刪除使用者,給使用者授權,許可權等操作 建立使用者 create user username identified by password ...
Oracle建立使用者 表空間和刪除使用者命令
create tablespace tablespace01 datafile tablespace01 data.dbf size 268435456 autoextend on next 2097152 maxsize 34359721984 blocksize 8192 nologging d...