自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

使用oracle命令行創(chuàng)建及刪除用戶的方法

數(shù)據(jù)庫 Oracle
oracle命令行可以實現(xiàn)很多我們需要的功能,下文就為您介紹如何使用oracle命令行創(chuàng)建及刪除用戶,如果您感興趣的話,不妨一看。

oracle命令行相信大家都有一定的了解,下面就為您詳細介紹使用oracle命令行創(chuàng)建及刪除用戶的方法,希望對您能夠有所幫助。

oracle命令行刪除用戶:

  1. connect / as sysdba;   
  2. shutdown abort;   
  3. startup;   
  4. drop user user1 cascade;   
  5. exit  

oracle命令行創(chuàng)建用戶:

  1. create user user1   
  2. identified by values 'fa091872a2cc669c'   
  3. default tablespace user1   
  4. temporary tablespace temp   
  5. profile default   
  6. account unlock;   
  7. -- 4 roles for user1   
  8. grant recovery_catalog_owner to user1 with admin option;   
  9. grant resource to user1 with admin option;   
  10. grant dba to user1 with admin option;   
  11. grant connect to user1 with admin option;   
  12. alter user user1 default role all;   
  13. -- 3 system privileges for user1   
  14. grant select any dictionary to user1 with admin option;   
  15. grant unlimited tablespace to user1 with admin option;   
  16. grant alter any procedure to user1 with admin option;  

 

 

 

【編輯推薦】

查看Oracle表空間大小的方法

Oracle創(chuàng)建視圖的語法

oracle創(chuàng)建表空間的語句寫法

oracle重建索引的實現(xiàn)

利用with語句提高Oracle查詢效率

責(zé)任編輯:段燃 來源: 互聯(lián)網(wǎng)
相關(guān)推薦

2010-11-16 13:40:52

Oracle命令行

2011-04-08 15:22:56

Oracle導(dǎo)入導(dǎo)出命令

2010-11-19 10:26:19

Oracle創(chuàng)建用戶

2009-10-26 18:09:31

Oracle用戶解鎖

2021-07-08 08:56:30

Linux命令刪除用戶

2010-11-16 11:50:21

oracle命令行登錄

2010-11-24 16:35:01

MYSQL命令行

2010-10-14 09:52:35

MySQL命令行

2009-08-11 09:26:06

2010-10-29 10:33:55

ORACLE默認(rèn)用戶

2011-09-05 15:09:07

Ubuntuw3m

2011-08-30 16:14:38

命令行Oracle服務(wù)

2017-04-10 13:26:00

Linux命令技巧

2017-04-12 13:29:08

Linux命令行工具

2017-03-27 14:40:01

Linux命令行工具技巧

2017-04-05 14:10:55

Linux命令行工具技巧

2017-06-15 10:32:56

OracleDBV命令行工具

2009-08-09 09:27:41

linux命令行瀏覽器linux打開瀏覽器命linux命令行

2010-11-16 11:55:31

Oracle命令行

2009-09-22 14:17:05

點贊
收藏

51CTO技術(shù)棧公眾號