当前位置:网站首页>1. Create Oracle database manually
1. Create Oracle database manually
2022-07-05 06:28:00 【Cold leaves elegant_】
Graduated , Sort out the notes you took during your undergraduate course .
This is from before Oracle In the database class, the teacher gave us the task , Everyone must follow the steps to manually create the database
Manually create Oracle The steps of the database are as follows :
1、 Set the database name and instance name
2、 Create related directories
3、 Create parameter file ( modify )
4、 Create examples
oradim -new -sid test -intpwd test -srvcstart system/demand
oradim -delete -sid test
5、 Connect Oracle example
6、 Boot instance
7、 Use create database Create database
8、 Create the server parameters file
1、 Set the database name and instance name
set oracle_sid=test
2、 Create related directories
d:
cd D:\app\Snakewood\admin
mkdir testdba
cd testdba
mkdir adump
mkdir bdump
mkdir cdump
mkdir udump
mkdir pfile // Store tracking documents
cd..
cd..
cd oradata
mkdir testdba // Store control documents 、 Data file redo log file
3、 Create parameter file ( modify )
To D:\app\Snakewood\product\11.2.0\dbhome_1\dbs Copy under this directory init.ora File to desktop , Copy it to
D:\app\Snakewood\product\11.2.0\dbhome_1\database
The contents of the new text file are as follows :
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;
Save as test.sql
4、 Create examples
oradim -new -sid test -intpwd test -srvcstart system/demand
oradim -delete -sid test
oradim -new -sid test -intpwd test -srvcstart demand // Create an instance and create a password file
oradim -delete -sid test // Delete the instance
Create password file manually
orapwd file=D:/app/Snakewood/product/11.2.0\dbhome_1\database\PWDtest.ora password=test entries=2
5、 Connect Oracle example
sqlplus
sys as sysdba
The prompt that you have connected to the idle routine indicates that the database has not been started
6、 Boot instance
Because now only the parameter file is created , Control documents 、 There are no data files and redo log files , So you can only enter nomount state
startup nomount pfile='D:\app\Snakewood\admin\mydba\pfile\initmydba.ora'
7、 Use create database Create database
8、 Create the server parameters file
create spfile from pfile='D:\app\Snakewood\admin\testdba\pfile\inittestdba.ora'
Summary
Oracle11g The path and Oracle10g The path is different ,
11g Is in D:\app\Snakewood… Next
10g Is in D:\app\Snakewood\product\11.2.0\dbhome_1… Next
Set oracle_sid = xxx If the modification is not successful , You can go to the registry to find oracle_sid And modify the corresponding value
边栏推荐
- 微信小程序路由再次跳轉不觸發onload
- Inclusion exclusion principle acwing 890 Divisible number
- Redis-01.初识Redis
- MySQL advanced part 2: SQL optimization
- C job interview - casting and comparing - C job interview - casting and comparing
- Record the process of configuring nccl and horovod in these two days (original)
- our solution
- P2575 master fight
- Modnet matting model reproduction
- MySQL怎么运行的系列(八)14张图说明白MySQL事务原子性和undo日志原理
猜你喜欢
Gauss Cancellation acwing 884. Solution d'un système d'équations Xor linéaires par élimination gaussienne
[moviepy] unable to find a solution for exe
什么是套接字?Socket基本介绍
Operator priority, one catch, no doubt
‘mongoexport‘ 不是内部或外部命令,也不是可运行的程序 或批处理文件。
Leetcode stack related
高斯消元 AcWing 884. 高斯消元解异或线性方程组
TCP's understanding of three handshakes and four waves
安装OpenCV--conda建立虚拟环境并在jupyter中添加此环境的kernel
MySQL advanced part 2: storage engine
随机推荐
Paper reading report
2048项目实现
[2021]GIRAFFE: Representing Scenes as Compositional Generative Neural Feature Fields
TypeScript入门
博弈论 AcWing 893. 集合-Nim游戏
There are three kinds of SQL connections: internal connection, external connection and cross connection
MySQL advanced part 1: index
Idea debug failed
4. Oracle redo log file management
Usage scenarios of golang context
Network security skills competition in Secondary Vocational Schools -- a tutorial article on middleware penetration testing in Guangxi regional competition
Traversal of leetcode tree
SQL三种连接:内连接、外连接、交叉连接
Leetcode divide and conquer / dichotomy
5.Oracle-表空间
论文阅读报告
1.13 - RISC/CISC
WordPress switches the page, and the domain name changes back to the IP address
Leetcode heap correlation
RecyclerView的应用