Oracle 中啟動 Scott 用戶 的方法 , 在 Oracle11gR2, (g 代表‘網絡’的意思) 數據庫中 Scott 這個用戶 安裝時是被鎖定的,安裝 Oracle的時候 ,你可以直接選擇 給該用戶 解鎖,如果忘記了解鎖, 後期可以使用 sqlplus工具 通過命令 將其 解鎖。
默認的scott用戶是被鎖定的,先解鎖就能登陸使用 數據庫了。
使用下面的語句解鎖scott:[sql] view plaincopy alter user scott account unlock;
解鎖之後可能會要求你該密碼:[sql] view plaincopy alter user scott identified by tiger;
再登陸:[sql] view plaincopy sqlplus scott/tiger
之後 就可以登陸了。
注意:用命令行啟用帳戶 先解鎖後 一定要設密碼 不然還是無法登陸 最後要進行提交。
補全給出示范操作吧:
[sql] view plaincopy使用 system 用戶 登錄 Oracle 數據庫, 輸入命令: show user; 該條命令執行結果為: 顯示當前登錄的用戶。
SQL*Plus: Release 10.2.0.1.0 - Production on 星期日 3月 4 13:54:32 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
連接到:Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production With the Partitioning, OLAP and Data Mining options
SQL> show user;USER 為 "SYSTEM" SQL>
使用 sys 用戶登錄 Oracle 數據庫, 輸入命令:conn as sysdba; 該條命令執行後提示:輸入用戶名,之後提示輸入密碼,系統核對正確後,便可以連接了。
SQL> conn as sysdba;請輸入用戶名: sys輸入口令: ****已連接。
SQL> show user;USER 為 "SYS"
使用 show user; 命令查看當前登錄的用戶。
SQL> show user;USER 為 "SYS"
使用 sys 啟用 Scott用戶: 輸入命令:SQL> alter user scott account unlock;用戶已更改。
SQL> alter user scott identified by tiger;用戶已更改。
SQL> conn scott;輸入口令: *****已連接。
SQL> show user;USER 為 "SCOTT" SQL>
使用 Oracle 命令 查看當前數據庫中已存在的 所有用戶 命令如下:
[sql] view plaincopy select username from dba_users;
原文出自【比特網】,轉載請保留原文鏈接:http://soft.chinabyte.com/database/456/12286456.shtml