不需要重新配置!只是關機重啟后,oracle的服務也就關閉了,再次連接要先打開oracle服務,也就是在services里把oracle監聽開起來,那只是開服務,不是配置!一般配置一次測試成功了就不需要再配置了。
創新互聯公司是專業的可克達拉網站建設公司,可克達拉接單;提供網站設計制作、網站建設,網頁設計,網站設計,建網站,PHP網站建設等專業做網站服務;采用PHP框架,可快速的進行可克達拉網站開發網頁制作和功能擴展;專業做搜索引擎喜愛的網站,專業的做網站團隊,希望更多企業前來合作!
一般來說,oracle數據庫安裝后,里面有很多個默認賬號和密碼,比較常用的是:賬號:scott 密碼:tiger 賬號:system 密碼:manager 賬號:sys 密碼:任意字符。
當我們想創建一個賬號時,可以使用sys登錄sysdba后,創建用戶(需要授權),代碼如下
create user 用戶名 identified by "密碼";
授權:grant create session to 用戶名;
grant create table to 用戶名;
grant create tablespace to 用戶名;
grant create view to 用戶名;
我們一般使用的是用scott登錄sysdba,這時候有可能出現賬戶未解鎖的狀態,這時候可以用
alter user scott account unlock;
來解鎖賬戶。解鎖之后可能會要求你改密碼:可以用
alter user scott identified by tiger;
再登錄
conn scott/tiger;
默認的:最高權限用戶:system 密碼:manager
管理員權限用戶:sys 密碼:change_on_install
普通用戶:scott 密碼:tiger
登陸管理員或超級管理員用戶可以自己建立屬于自己的用戶 :
命令:create user userName identified by password;
創建用戶名為: userName, 密碼為 password 的用戶
分配權限:
grant dba to userName; --授予DBA權限
grant unlimited tablespace to userName;--授予不限制的表空間
grant select any table to userName; --授予查詢任何表
grant select any dictionary to userName;--授予 查詢 任何字典
create user [username] identified by [password] 創建新的用戶
grant 權限1、權限2...to 用戶 給創建用戶權限
ex:grant create session to [username] 此時只能連接到數據庫
grant connect,resource to [username] 此時權限能滿足要求
alter user [username] identified by [password] 修改用戶密碼
alter user [username] password expired 下次登錄時提示修改密碼
alter user [username] account lock 鎖住用戶
alter user [username] account unlock 解鎖鎖用戶
grant select,delete on scott.emp to [username] 把scott下emp表的兩個權限給用戶
revoke select ,delete on scott.emo from [username] 回收權限
//創建用戶并指定表空間
create user username identified by password
default tablespace user_data
temporary tablespace user_temp;
//給用戶授予權限
grant connect,resource to username;
//以后以該用戶登錄,創建的任何數據庫對象都屬于user_temp 和user_data表空間,
這就不用在每創建一個對象給其指定表空間了
撤權:
revoke 權限... from 用戶名;
刪除用戶命令
drop user user_name cascade;
在進行procedure執行的時候,用的是PL/SQL工具中的test,調試方法進行執行,因為有輸入參數,但是報了個錯:
“note:debugging requires the debug connect session system privilege”.
原因是用戶權限不夠,使用以下命令授予權限:
GRANT debug any procedure, debug connect session TO username
其實只需要授予debug connect session 就可以了,已經過測試。
本文名稱:oracle怎么配密碼,oracle怎么設置密碼
本文鏈接:http://vcdvsql.cn/article22/hspicc.html
成都網站建設公司_創新互聯,為您提供Google、網站改版、建站公司、網站導航、域名注冊、網站策劃
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯