建立資料庫使用者

2021-08-08 11:35:03 字數 534 閱讀 4568

--建立表空間

create tablespace 表空間名 datafile 'd:\表空間名.dbf' size 20m autoextend on next 10m;

--建立臨時表空間

create temporary tablespace 臨時表空間名 tempfile 'd:\myself.ldf' size 10m autoextend on next 5m;

--建立使用者名稱,建立使用者時如果沒有指定表空間,預設分配user表空間,temp臨時表空間

create user 使用者名稱 identified by 密碼 default tablespace 表空間 temporary tablespace 臨時表空間名;

--分配許可權

grant dba to 使用者名稱;

--c撤銷許可權

revoke dba from 使用者名稱

資料庫使用者建立

今天需要導乙個新庫熟悉工程 想當然的以為 create user username identified by password 建立乙個使用者之後,再用imp命令匯入就可以了。沒想到系統報錯,提示使用者不可見。拿pl sql訪問的時候也報錯說,使用者無法連線。糾結啊.心想,為什麼orcl的預設賬戶...

mysql建立資料庫,建立使用者

建立資料庫 create database test use test 建立使用者 create user test identified by test 給使用者賦權 grant all on test.to test 建立資料庫 命令 create database databasename 例...

建立oracle資料庫使用者

查詢表空間 select tablespace name,file id,file name,round bytes 1024 1024 0 total space from dba data files order by tablespace name 1.建立表空間 create tablesp...