oracle建立使用者指令碼
2009-05-14 22:52
create user dfl
identified by dfl
default tablespace users
temporary tablespace temp
profile default
account unlock;
-- 2 roles for dfl
grant dba to dfl with admin option;
grant connect to dfl with admin option;
alter user dfl default role all;
-- 1 system privilege for dfi
grant unlimited tablespace to dfl with admin option;
建立了乙個dfl的使用者 並授予許可權。
oracle建立表空間和使用者指令碼
利用管理員 不是normal,先建立表空間,再建立使用者,並將新建表空間的操作許可權給使用者 建立表空間 size 100m autoextend on next 10m maxsize unlimited logging extent management local segment space ...
mysql 建立使用者指令碼 Mysql使用者建立指令碼
我試圖自動化mysql使用者建立過程。我想到建立乙個包含mysql使用者建立語句的臨時檔案,那麼我會這樣稱呼 mysql u root proot 這裡是我的臨時檔案的內容 drop database if exists mytestdatabase create database mytestda...
Oracle 使用者建立
執行 cmd 進入 dos視窗 c sqlplus sys password as sysdba 使用sys使用者登入 sql create user username identified by password 建立使用者名稱和密碼 sql create tablespace ts userna...