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

时间: 2024-10-12 04:48:18

Oracle HR 例子用户的建立 10g,11g均可的相关文章

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 comme

[转]Oracle 10g/11g 密码策略 用户口令 大小写敏感

一. Oracle 10g 1.1 说明 在Oracle 10g下,默认情况下,密码是不区分大小写的.这个是由于密码文件的默认参数有关. C:\Users\Administrator.DavidDai>orapwd Usage: orapwd file=<fname>entries=<users> force=<y/n> ignorecase=<y/n>nosysdba=<y/n> where file - name of password

在linux oracle 10g/11g x64bit环境中,goldengate随os启动而自己主动启动的脚本

在linux.oracle 10g/11g x64bit环境中,goldengate随os启动而自己主动启动的脚本 背景描写叙述: goldengate安装于/u01/ggs文件夹下 rhel5.5 oracle 10g/11g x64bit Oracle GoldenGate Command Interpreter for Oracle Version 11.1.1.0.0 Build 078 Linux, x64, 64bit (optimized), Oracle 11 on Jul 28

在linux oracle 10g/11g x64bit环境中,goldengate随os启动而自动启动的脚本

在linux,oracle 10g/11g x64bit环境中,goldengate随os启动而自动启动的脚本 背景描述: goldengate安装于/u01/ggs目录下 rhel5.5 oracle 10g/11g x64bit Oracle GoldenGate Command Interpreter for Oracle Version 11.1.1.0.0 Build 078 Linux, x64, 64bit (optimized), Oracle 11 on Jul 28 2010

oracle biee 11g客户端连接OCI 10g/11g数据源时报错

OBIEE 11g BI 管理工具 连接OCI 10g/11g数据源时报错[连接失败] OBIEE 11g Client Admin Tool Connection To Datasource In Offline Mode Fails With Error "The Connection Has Failed 使用OBIEE 11g BI 管理工具 导入元数据,连接OCI 10g/11g数据源时,点击连接会报错[连接失败],如下图:   参考了Oracle NotesOBIEE 11g Cli

oracle 10g/11g 命令对照,日志文件夹对照

 oracle 10g/11g  命令对照,日志文件夹对照 oracle 11g 中不再建议使用的命令 Deprecated Command Replacement Commands crs_stat crsctl check cluster -all crsctl stat res -t crs_register crsctl add resource crsctl add type crsctl modify resource crsctl modify type crs_unregis

oracle 10g/11g 命令对比,日志目录对比

 oracle 10g/11g  命令对比,日志目录对比 oracle 11g 中不再建议使用的命令 Deprecated Command Replacement Commands crs_stat crsctl check cluster -all crsctl stat res -t crs_register crsctl add resource crsctl add type crsctl modify resource crsctl modify type crs_unregist

oracle 10g/11g RAC 启停归档模式

 oracle 10g rac 启停归档模式  如果Oracle数据库运行在归档模式,当进行数据库维护时,可能需要暂停数据库的归档,在完成维护后,再重新启动归档模式. 通过以下步骤可以从归档模式转换为非归档模式: 以下步骤在一台机器上操作.节点二保持down.在所有的操作完成后在打开节点二的数据库. sql>connect SYS/PASSWORD sql>ALTER SYSTEM SET CLUSTER_DATABASE=FALSE SCOPE=SPFILE; sql>shutdo

更改Oracle 10g/11g数据库为归档模式

一.oracle 10g/11g 在Oracle 11g,开启archive log模式时,默认归档目录为db_recovery_file_dest指定.此参数在pfile/spfile中可以指定: db_recovery_file_dest='/u01/app/oracle/flash_recovery_area'; 1.sqlplus / as sysdba;登陆进去: 2.关闭数据库 SQL> shutdown immediate Database closed. Database dis