程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> 關於Oracle數據庫 >> oracle命令行刪除與創建用戶的代碼

oracle命令行刪除與創建用戶的代碼

編輯:關於Oracle數據庫
oracle命令行刪除用戶: 
代碼如下:

 connect / as sysdba;  
 shutdown abort;  
 startup;  
 drop user user1 cascade;  
 exit

oracle命令行創建用戶: 
  代碼如下:

create user user1  
  identified by values 'fa091872a2cc669c'  
  default tablespace user1  
  temporary tablespace temp  
  profile default  
  account unlock;  
  -- 4 roles for user1   
  grant recovery_catalog_owner to user1 with admin option;  
  grant resource to user1 with admin option;  
  grant dba to user1 with admin option;  
  grant connect to user1 with admin option;  
  alter user user1 default role all;  
  -- 3 system privileges for user1   
  grant select any dictionary to user1 with admin option;  
  grant unlimited tablespace to user1 with admin option;  
  grant alter any procedure to user1 with admin option; 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved