当前位置:网站首页>3. Oracle control file management
3. Oracle control file management
2022-07-05 06:22:00 【Cold leaves elegant_】
- Close instance (shutdown immediate), Delete all control files , Recreate the control file (3 individual )
select member from v$logfile;
select value from v$parameter where name = 'control_files';
First, close the database
perform create control command ( I reported an error before , The reason is that the log file size is not set correctly , It should be the same size as when it was created )
- After the above operations are completed , Add a control file control04.ctl, Put it in D disc ( Multi mirror )
ALTER SYSTEM SET CONTROL_FILES =
'D:\APP\SNAKEWOOD\PRODUCT\11.2.0\DBHOME_1\DATABASE\ORA_CONTROL1',
'D:\APP\SNAKEWOOD\PRODUCT\11.2.0\DBHOME_1\DATABASE\ORA_CONTROL2',
'D:\app\Snakewood\oradata\mydba\ORA_CONTROL4'
SCOPE=SPFILE;
- The backup control file is a text file
- Please try to control01.ctl File move to C:\oracle\product Location , And ensure that the database can be re 、 Normal start
Query the location of the control file
modify spfile Location of control files in
Close the database , And move the control file to the modified location
Start database , And query the directory where the control file is located
边栏推荐
- 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
- 背包问题 AcWing 9. 分组背包问题
- 求组合数 AcWing 888. 求组合数 IV
- 4. 对象映射 - Mapping.Mapster
- Error ora-28547 or ora-03135 when Navicat connects to Oracle Database
- Leetcode-6110: number of incremental paths in the grid graph
- SPI details
- 1.15 - input and output system
- 高斯消元 AcWing 884. 高斯消元解异或線性方程組
- Series of how MySQL works (VIII) 14 figures explain the atomicity of MySQL transactions and the principle of undo logging
猜你喜欢
LeetCode-61
Day 2 document
2021apmcm post game Summary - edge detection
Suppose a bank's ATM machine, which allows users to deposit and withdraw money. Now there is 200 yuan in an account, and both user a and user B have the right to deposit and withdraw money from this a
Bit of MySQL_ OR、BIT_ Count function
1.14 - assembly line
Real time clock (RTC)
开源存储这么香,为何我们还要坚持自研?
MySQL怎么运行的系列(八)14张图说明白MySQL事务原子性和undo日志原理
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
随机推荐
Leetcode stack related
A reason that is easy to be ignored when the printer is offline
Leetcode-31: next spread
Bash exercise 17 writing scripts to install the server side of FRP reverse proxy software
[moviepy] unable to find a solution for exe
Sqlmap tutorial (II) practical skills I
传统数据库逐渐“难适应”,云原生数据库脱颖而出
Matrixdb V4.5.0 was launched with a new mars2 storage engine!
Quickly use Amazon memorydb and build your own redis memory database
Alibaba established the enterprise digital intelligence service company "Lingyang" to focus on enterprise digital growth
Data visualization chart summary (I)
LeetCode-54
927. Trisection simulation
Groupbykey() and reducebykey() and combinebykey() in spark
Chapter 6 relational database theory
Shutter web hardware keyboard monitoring
[rust notes] 16 input and output (Part 1)
[leetcode] day95 effective Sudoku & matrix zeroing
3.Oracle-控制文件的管理
求组合数 AcWing 889. 满足条件的01序列