dbca裡面的 示例方案 和 HR schema是一個東西嗎
透過dbca建庫如果選擇的是 定製建立資料庫 這個模板 示例方案還沒法選上,建庫之後又不知道如何新增進來,如果選擇一般用途或者資料倉儲模板建庫,hr schema是進來了,但是其他schema也進來一堆,所以沒法區分,下面簡單介紹一下如何手動新增hrschema吧,不過從doc的描述來看hr shcema應該就是 示例方案:
About Sample Schema HR
The HR
schema is a sample schema that can be installed as part of Oracle Database. This schema contains information about employees—their departments, locations, work histories, and related information. Like all schemas, the HR
schema has tables, views, indexes, procedures, functions, and other attributes of a database schema.
The examples and tutorials in this document use the HR
schema.
See Also:
Oracle Database Sample Schemas for a complete description of the
HR
schema
這個網上有現成的,別人總結的,我拿過來引用一下,防止連線過期,複製出來一份:
http://blog.csdn.net/ecjtuxuan/article/details/6365294
先將附件上的 10 個 .sql 檔案放入這個路徑中 :
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.sq 這個檔案。
a) SQL>@e:/oracle/product/10.1.0/db_1/demo/schema/human_resources/hr_main.sq
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;
備註:關於 這個樣例資料庫使用者的 script 檔案在我的資源下載中有,名字是Oracle HR Schema
可以去下載 然後 裡面有附有說明文件。
下載地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/19602/viewspace-1060529/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- TCP 的 Keepalive 和 HTTP 的 Keep-Alive 是一個東西嗎?TCPHTTPKeep-Alive
- input 框裡面的東西刪不掉怎麼辦?
- rlwrap 是一個好東西 for linuxLinux
- js中的arguments是一個好東西JS
- 框架是個什麼東西?框架
- 報文、幀、分組、段、資料包,這些術語是同一個東西嗎?
- HTML5.1 裡的新東西HTML
- 【iOS開發】分享一個被誤認為是bug的東西iOS
- 【Android】 註解是個好東西, 這個可以有Android
- Win10桌面檔案在c盤哪個資料夾 桌面的東西在c盤哪裡Win10
- [譯]JS裡我才知道的東西JS
- JavaScript 6 裡都有啥新鮮東西?JavaScript
- 這是什麼東西呢?
- 來聊聊,這個Java到底是什麼東西?Java
- Javascript是個好東西(廣大人民的智慧是無窮的):JavaScript
- ftp是什麼,ftp是什麼東西?FTP
- 隨意的一點東西,還是期望被人看到
- 知識普及:HTML 5到底是個什麼東西HTML
- C#中的 Attribute 與 Python/TypeScript 中的裝飾器是同個東西嗎C#PythonTypeScript
- git裡最有用最經常使用的東西Git
- 程式、執行緒、協程到底是個什麼東西?執行緒
- TCP Socket一些東西TCP
- 怪東西
- 重灌系統電腦裡的東西還在嗎 電腦系統重灌後資料還在嗎
- Go 裡面的 ^ 和 &^Go
- 固態硬碟下載東西多了容易壞嗎?硬碟
- this,call和apply(這三個東西,如何牢牢記住)APP
- 三種東西永遠不要放到資料庫裡資料庫
- 深度學習記錄(1)metricLogger是個什麼東西?深度學習
- 圖計數(兩個思想,和一個去重技巧,賊重要,紫題,非常有東西)
- 近期做的一些東西
- 整了個JSON分頁的東西JSON
- 網路真不是個好東西
- 【日記】第一次覺得 “屆く” 是一個很難的東西(1528 字)
- 這是一個筆記示例筆記
- 在阿里工作的日子裡,我都學到了哪些東西?阿里
- HR人力資源OKR示例OKR
- React 發明的 server component 居然和 server-side render不是一個東西ReactServerIDE