Oracle HR 範例使用者的建立 10g,11g均可,oracle11g
Oracle HR 範例使用者的建立 10g,11g均可
先將附件(見文章尾部)上的 10 個 .sql 檔案放入這個路徑中 :
$ORACLE_HOME/demo/schema/human_resources
Script Name |
Description |
hr_analz.sql |
Collects statistics on the tables in the schema. |
hr_code.sql |
Creates procedural objects in the schema. |
hr_comnt.sql |
Creates comments for each object in the schema. |
hr_cre.sql |
Creates the HR objects. |
hr_dn_c.sql |
Adds the distinguished name column used by Oracle Internet Directory to the employees and departments tables. |
hr_dn_d.sql |
Drops the Oracle Internet Directory distinguished name column from employees and departments . |
hr_drop.sql |
Drops the HR schema and all its objects. |
hr_idx.sql |
Creates indexes on the HR tables. |
hr_main.sql |
Main script for the HR schema; calls other scripts. |
hr_popul.sql |
Populates the objects. |
然後在 SQL*PLUS 上執行 hr_main.sq 這個檔案。
a) SQL>@?/demo/schema/human_resources/hr_main.sql
b) Specify password for HR as parameter 1:
c) Enter value for 1: hr
d) Specify default tablespeace for HR as parameter 2:
e) Enter value for 2: users
f) Specify temporary tablespace for HR as parameter 3:
g) Enter value for 3: temp
h) Specify password for SYS as parameter 4:
i) Enter value for 4:runner
j) Specify log path as parameter 5:
k) Enter value for 5: C:/oracle/product/10.1.0/db_1/RDBMS/log (如果是Linux下的話就$ORACLE_HOME/rdbms/log)
可以通過此命令來查看 HR 使用者是否已經建立成功。
desc dba_users;
Select username, account_status from dba_users;
附件地址:
http://download.csdn.net/detail/fuzhangpeng/7712823
Oracle 10g hr 使用者建立指令碼順序
估計你在網上下載的這個應該是這麼用的,引用的頁面無法載入回答裡面:
在SQL-Plus中執行hr_main.sql這個指令碼
方法:在提示符下輸入:
> @SQL指令碼所在的目錄\hr_main.sql
例如:@c:\sql scrcipt\hr_main.sql
然後系統給出提示輸入一些綁定變數:
b) Specify password for HR as parameter 1:
HR使用者的密碼:
c) Enter value for 1: hr
d) Specify default tablespeace for HR as parameter 2:
HR使用者的預設資料表空間:
e) Enter value for 2: users
f) Specify temporary tablespace for HR as parameter 3:
HR使用者的預設暫存資料表空間:
g) Enter value for 3: temp
h) Specify password for SYS as parameter 4:
輸入SYS使用者的資料表空間:
i) Enter value for 4:syspass
j) Specify log path as parameter 5:
輸入日誌產生的路徑:
k) Enter value for 5: C:\oracle\product\10.1.0\db_1\RDBMS\log
這個指令碼應該是自動調用建表建索引和輔助指令碼的程式的。
oracle 11g r2 有沒有hr使用者?怎找不到怎才可以找到?是不是我裝的sample資料庫有問題?
使用sys或者system登陸資料庫,使用命令select * from dba_users;查看有哪些使用者,USERNAME裡面有HR就說明有此使用者,如果看到ACCOUNT_STATUS欄位中帳號為加鎖狀態,可以通過
SQL>alter user 使用者名稱 identified by 新密碼 ;修改使用者密碼