通過pl sql建立Oracle新使用者

2021-06-04 18:01:16 字數 726 閱讀 6334

建立使用者和為使用者分配許可權

dba賬號登入pl/sql developer

1、選擇users-->new,在開啟的面板中輸入般性使用者資訊

2、在role privileges中,增加connect,resource兩個role(一般普通使用者適用),如要dba角色則同時選擇dba項。

3、在system privileges中,增加create any view和unlimited tablespace兩個system privilege

pl/sql**  

-- create the user   

create user dm  

identified by ""

default tablespace users  

temporary tablespace temp  

profile default  

password expire;  

-- grant/revoke role privileges   

grant connect to dm;  

grant dba to dm;  

grant resource to dm;  

-- grant/revoke system privileges   

grant create any view to dm;  

grant unlimited tablespace to dm; 

Oracle通過plsql備份還原資料

1.首先使用plsql 登入到你本機上的 oracle,選擇你自己想要備份的資料庫 我這裡選的是 scott 使用者下的 orcl 資料庫 2.登入後進入到下圖,我這裡有這幾張表,我列出了其中部分表的內容 3,接下來就是開始做備份的功能了 3.1 選擇 tools 工具 export user ob...

用PLSQL建立Oracle使用者

具體步驟 1.首先以你安裝oracle的時候設定的sysdba 使用者 登陸到plsql 2.右鍵urse new 在彈出的視窗中 general中 填寫 name跟password 3.切換到role privileges role選擇connet 勾選default 4.切換到 system p...

通過配置讓plsql連上oracle資料庫

通過配置讓plsql連上oracle資料庫 一 先安裝oracle11g win32的客戶端 切記一定是32位的客戶端 目前只有32位的plsql 二 解壓plsql 注意plsql在系統的路徑名不能帶有中文和空格 三 在目錄.oracle11g client product 11.2.0 clie...