日期:2014-05-16 浏览次数:20445 次
手工创建数据库
参考oracle11g联机文档
Administrator's Guide
2 Creating and Configuring an Oracle Database
Creating a Database with the CREATE DATABASE Statement
?
确定使用的SID:
ORACLE_SID=hzh
ORACLE_BASE=/u01
ORACLE_HOME=$ORACLE_BASE/oracle
ORACLE_SID=hzh
PATH=$ORACLE_HOME/bin:$PATH
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
export ORACLE_BASE ORACLE_HOME ORACLE_SID PATH LD_LIBRARY_PATH
?
在环境变量中ORACLE_HOME 和ORACLE_SID 是必须有的
可以把以上内容写到一个脚本中放到 /u01/oracle/dbs/下 hzh.env
使该环境变量生效
cd /u01/oracle/dbs
. ./hzh.env
1:With a password file
ORAPWD FILE=filename [ENTRIES=numusers] [FORCE={Y|N}] [IGNORECASE={Y|N}]
Example
orapwd FILE=orapworcl ENTRIES=30
2:With operating system authentication
If you decide to authenticate with a password file, create the password file .If you decide to authenticate with operating system authentication, ensure that you log in to the host computer with a user account that is a member of the appropriate operating system user group. On the UNIX and Linux platforms, for example, this is typically the dba
user group. On the Windows platform, the user installing the Oracle software is automatically placed in the required user group.?
初始化参数文件中 DB_NAME是必须的,其他都可以使用缺省值
db_name='ORCL' memory_target=1G processes = 150 audit_file_dest='<ORACLE_BASE>/admin/orcl/adump' audit_trail ='db' db_block_size=8192 db_domain='' db_recovery_file_dest='<ORACLE_BASE>/flash_recovery_area' db_recovery_file_dest_size=2G diagnostic_dest='<ORACLE_BASE>' dispatchers='(PROTOCOL=TCP) (SERVICE=ORCLXDB)' open_cursors=300 remote_login_passwordfile='EXCLUSIVE' undo_tablespace='UNDOTBS1' # You may want to ensure that control files are created on separate physical # devices control_files = (ora_control1, ora_control2) compatible ='11.2.0'
略,我们此处实验环境为Linux
To authenticate with a password file, enter the following commands, and then enter the SYS
password when prompted:
$ sqlplus /nolog SQL> CONNECT SYS AS SYSDBA
To authenticate with operating system authentication, enter the following commands:
$ sqlplus /nolog SQL> CONNECT / AS SYSDBA
SQL*Plus outputs the following message:
Connected to an idle instance.
CREATE SPFILE FROM PFILE;
CONTROL_FILES
parameter, you must create a server parameter file now so the database can save the names and location of the control files that it creates during the CREATE
DATABASE
statement.STARTUP NOMOUNT