亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

oracle命令行刪除與創(chuàng)建用戶(hù)的代碼

 更新時(shí)間:2008年01月08日 13:01:38   作者:  
oracle命令行刪除與創(chuàng)建用戶(hù)的代碼
oracle命令行刪除用戶(hù): 
復(fù)制代碼 代碼如下:

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

oracle命令行創(chuàng)建用戶(hù): 
  
復(fù)制代碼 代碼如下:

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; 

相關(guān)文章

最新評(píng)論