Oracle HR 樣例數據庫用戶的建立


轉自:https://blog.csdn.net/ecjtuxuan/article/details/6365294

先將附件上的 10 個 .sql 文件放入這個路徑中 :

下載地址為: 
鏈接:https://pan.baidu.com/s/1nuVYIqH 密碼:5cw7(永久有效)

E:/oracle/product/10.1.0/db_1/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.sql 這個文件。

a)  SQL>@e:/oracle/product/10.1.0/db_1/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: welcome1

j)  Specify log path as parameter 5:

k)  Enter value for 5: C:/oracle/product/10.1.0/db_1/RDBMS/log

 

可以通過此命令來查看 HR 用戶是否已經建立成功。

desc dba_users;

Select username, account_status from dba_users;


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM