当前位置:网站首页>1.手动创建Oracle数据库
1.手动创建Oracle数据库
2022-07-05 06:20:00 【寒叶飘逸_】
毕业了,整理下本科期间自己记的笔记。
这个是之前上Oracle数据库的课的时候老师交给我们的任务,每个人都必须按照步骤手动创建数据库
手动创建Oracle数据库的步骤如下:
1、设置数据库名称和实例名称
2、创建相关目录
3、创建参数文件(修改)
4、创建实例
oradim -new -sid test -intpwd test -srvcstart system/demand
oradim -delete -sid test
5、连接Oracle实例
6、启动实例
7、使用create database创建数据库
8、创建服务器参数文件
1、设置数据库名称和实例名称
set oracle_sid=test
2、创建相关目录
d:
cd D:\app\Snakewood\admin
mkdir testdba
cd testdba
mkdir adump
mkdir bdump
mkdir cdump
mkdir udump
mkdir pfile //存放追踪文件
cd..
cd..
cd oradata
mkdir testdba //存放控制文件、数据文件重做日志文件
3、创建参数文件(修改)
到 D:\app\Snakewood\product\11.2.0\dbhome_1\dbs 这个目录下复制init.ora文件到桌面,按照下图修改后拷贝到
D:\app\Snakewood\product\11.2.0\dbhome_1\database
新建文本文件内容如下:
create database test
datafile 'D:/app/Snakewood/product/11.2.0/dbhome_1/oradata/test/system0.dbf' size 300M reuse autoextend on next 10240K maxsize unlimited extent management local
sysaux datafile 'D:/app/Snakewood/product/11.2.0/dbhome_1/oradata/test/sysaux01.dbf' size 120M reuse autoextend on next 10240K maxsize unlimited
default temporary tablespace temp
tempfile 'D:/app/Snakewood/product/11.2.0/dbhome_1/oradata/test/temp01.dbf' size 20M reuse autoextend on next 640K maxsize unlimited
undo tablespace "UNDOTBS1"
datafile 'D:/app/Snakewood/product/11.2.0/dbhome_1/oradata/test/undotbs1.dbf' size 20M reuse autoextend on next 5120K maxsize unlimited
logfile
group 1 ('D:/app/Snakewood/product/11.2.0/dbhome_1/oradata/test/redo01.log') size 10M,
group 2 ('D:/app/Snakewood/product/11.2.0/dbhome_1/oradata/test/redo02.log') size 10M,
group 3 ('D:/app/Snakewood/product/11.2.0/dbhome_1/oradata/test/redo03.log') size 10M;
另存为test.sql
4、创建实例
oradim -new -sid test -intpwd test -srvcstart system/demand
oradim -delete -sid test
oradim -new -sid test -intpwd test -srvcstart demand //创建实例同时创建口令文件
oradim -delete -sid test //删除实例
手动创建口令文件
orapwd file=D:/app/Snakewood/product/11.2.0\dbhome_1\database\PWDtest.ora password=test entries=2
5、连接Oracle实例
sqlplus
sys as sysdba
提示已连接到空闲例程说明数据库还未启动
6、启动实例
因为现在只创建了参数文件,控制文件、数据文件和重做日志文件都没有,因此只能进入nomount状态
startup nomount pfile='D:\app\Snakewood\admin\mydba\pfile\initmydba.ora'
7、使用create database创建数据库
8、创建服务器参数文件
create spfile from pfile='D:\app\Snakewood\admin\testdba\pfile\inittestdba.ora'
小结
Oracle11g的路径和Oracle10g的路径不同,
11g是在D:\app\Snakewood…下
10g是在D:\app\Snakewood\product\11.2.0\dbhome_1…下
Set oracle_sid = xxx如果没有修改成功,可以去注册表中找oracle_sid并修改对应的值
边栏推荐
- Regulations for network security events of vocational group in 2022 Guizhou Vocational College skill competition
- Alibaba's new member "Lingyang" officially appeared, led by Peng Xinyu, Alibaba's vice president, and assembled a number of core department technical teams
- Matrixdb V4.5.0 was launched with a new mars2 storage engine!
- Operator priority, one catch, no doubt
- 博弈论 AcWing 891. Nim游戏
- Golang uses context gracefully
- MatrixDB v4.5.0 重磅发布,全新推出 MARS2 存储引擎!
- WordPress switches the page, and the domain name changes back to the IP address
- Winter vacation water test 1 Summary
- 实时时钟 (RTC)
猜你喜欢
栈 AcWing 3302. 表达式求值
Sqlmap tutorial (1)
Leetcode-6111: spiral matrix IV
Bash exercise 17 writing scripts to install the server side of FRP reverse proxy software
Series of how MySQL works (VIII) 14 figures explain the atomicity of MySQL transactions and the principle of undo logging
Liunx starts redis
MatrixDB v4.5.0 重磅发布,全新推出 MARS2 存储引擎!
WordPress switches the page, and the domain name changes back to the IP address
How to make water ripple effect? This wave of water ripple effect pulls full of retro feeling
Sqlmap tutorial (II) practical skills I
随机推荐
实时时钟 (RTC)
Groupbykey() and reducebykey() and combinebykey() in spark
快速使用Amazon MemoryDB并构建你专属的Redis内存数据库
Golang uses context gracefully
927. Trisection simulation
背包问题 AcWing 9. 分组背包问题
博弈论 AcWing 893. 集合-Nim游戏
C job interview - casting and comparing - C job interview - casting and comparing
Leetcode recursion
[leetcode] day95 effective Sudoku & matrix zeroing
Records of some tools 2022
RGB LED infinite mirror controlled by Arduino
Gaussian elimination acwing 884 Gauss elimination for solving XOR linear equations
JS quickly converts JSON data into URL parameters
11-gorm-v2-02-create data
LeetCode 0108. Convert an ordered array into a binary search tree - the median of the array is the root, and the left and right of the median are the left and right subtrees respectively
2022/6/29-日报
One question per day 1020 Number of enclaves
Navicat连接Oracle数据库报错ORA-28547或ORA-03135
4. 对象映射 - Mapping.Mapster