日期:2014-05-16  浏览次数:20477 次

Oracle XE的数据库创建过程

今天安装了Oracle XE,发现并没有自动创建数据库。趁着这个机会顺便观察了把alert log,重新回顾一下数据库手工创建过程。

文章末尾附带了所用到的脚本。

1. 创建SPFILE。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Sep 1 15:53:26 2006
?
Copyright (c) 1982, 2005, Oracle. All rights reserved.
?
SQL> conn / as sysdba
Connected.
?
SQL> create spfile from pfile= 'c:\pfile.ora' ;
?
File created.
?
SQL> startup nomount
ORACLE instance started.
?
Total System Global Area 146800640 bytes
Fixed Size 1286220 bytes
Variable Size 58724276 bytes
Database Buffers 83886080 bytes
Redo Buffers 2904064 bytes

2. 创建数据库。

?
1
2
3
SQL> @C