当前位置:网站首页>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
边栏推荐
- 7.Oracle-表结构
- 论文阅读报告
- Record the process of configuring nccl and horovod in these two days (original)
- Chart. JS - Format Y axis - chart js - Formatting Y axis
- Alibaba's new member "Lingyang" officially appeared, led by Peng Xinyu, Alibaba's vice president, and assembled a number of core department technical teams
- Stack acwing 3302 Expression evaluation
- Series of how MySQL works (VIII) 14 figures explain the atomicity of MySQL transactions and the principle of undo logging
- [QT] QT multithreading development qthread
- Relevant information of National Natural Science Foundation of China
- 容斥原理 AcWing 890. 能被整除的数
猜你喜欢

confidential! Netease employee data analysis internal training course, white whoring! (attach a data package worth 399 yuan)

Single chip computer engineering experience - layered idea

Network security skills competition in Secondary Vocational Schools -- a tutorial article on middleware penetration testing in Guangxi regional competition

MySQL advanced part 2: MySQL architecture

Sorting out the latest Android interview points in 2022 to help you easily win the offer - attached is the summary of Android intermediate and advanced interview questions in 2022

Find the combination number acwing 887 Find combination number III

Genesis builds a new generation of credit system

‘mongoexport‘ 不是内部或外部命令,也不是可运行的程序 或批处理文件。

Game theory acwing 893 Set Nim game

Leetcode stack related
随机推荐
什么是套接字?Socket基本介绍
MySQL advanced part 1: stored procedures and functions
11-gorm-v2-03-basic query
Chapter 6 relational database theory
[2020]GRAF: Generative Radiance Fields for 3D-Aware Image Synthesis
Golang uses context gracefully
MySQL advanced part 1: index
MySQL advanced part 2: optimizing SQL steps
Leetcode heap correlation
What's wrong with this paragraph that doesn't work? (unresolved)
3. Oracle control file management
Regulations for network security events of vocational group in 2022 Guizhou Vocational College skill competition
our solution
vsCode创建自己的代码模板
Record the process of configuring nccl and horovod in these two days (original)
[QT] QT multithreading development qthread
Sum of three terms (construction)
Leetcode array operation
Alibaba's new member "Lingyang" officially appeared, led by Peng Xinyu, Alibaba's vice president, and assembled a number of core department technical teams
2022-5-the fourth week daily