ORACLE資料庫建立刪除使用者及修改密碼CMD命令

2021-10-05 23:43:46 字數 441 閱讀 9298

–建立使用者 test/1234

create user test identified by 1234;

grant dba to test; --授予dba許可權

–刪除使用者名為test使用者

drop user test cascade;

–撤銷dba許可權

revoke dba from test_online;

----修改使用者密碼:

windows伺服器:開啟cmd執行命令

輸入 sqlplus /nolog ----- 無使用者名稱登入

或sqlplus /system ----system登入(需要輸入密碼)

conn /as sysdba -----連線到資料本地資料

alter user system identified by 1234;----- 修改system 密碼為1234

Oracle資料庫建立 刪除使用者及使用者授權

建立使用者指定表空間並授權 create user testuser identified by testuser default tablespace tests data alter user testuseraccount unlock grant connect,resource to te...

oracle資料庫匯出資料及建立刪除使用者

一 oracle資料庫匯出 1.開啟pl sql,登入scott賬戶 2.在object中找到當前專案,選中我的專案,找到表 3.選中全部表,右鍵export data 4.選擇sql insert,按下圖勾選 5.檢視檔案 匯出oracle資料庫scott賬戶下的表成功。二 建立使用者 1.在pl...

建立oracle資料庫使用者

查詢表空間 select tablespace name,file id,file name,round bytes 1024 1024 0 total space from dba data files order by tablespace name 1.建立表空間 create tablesp...