当前位置:网站首页>DM8 archive log file manual switching
DM8 archive log file manual switching
2022-07-06 03:54:00 【Song Xiaorong】
Archive log switch
Here, the database is used as a stand-alone , For example, local archiving has been enabled , Test the switching of archive log files .
Because the local archive is written to the archive log file asynchronously ,REDO The log is written to the online log file , Then, a special archiving thread is responsible for these REDO The log is written to the local archive log file . Switch functions through archiving , These can be written to the online log file , Those that have not been written to the archive log file REDO journal , Write to archive log file .
Perform the following SQL command , The archive switching function can be completed . Three sentence function system , When switching manually, you only need to select one to execute . This chapter will test from these three statements .
SQL>alter database archivelog current;SQL>alter system archive log current;SQL>alter system switch logfile;
Before the test , We use the following statement to query the archived log file information .
SQL>select t.STATUS, t.PATH, t.ARCH_LSN, t.CLSN from "V$ARCH_FILE"t;The results are as follows , You can see the... In the database 16 Archive files are active , The description is that this file is an archive log file in use .

Mode one (alter database archivelog current)
Do some simple inserts 、 Delete or create tables and other data operations , Use the following command to switch archiving :
SQL>alter database archivelog current;Query again V$ARCH_FILE You can see the 16 Files have been INACTIVE state .

Wait a moment to inquire , You can see the generation of 17 Archive files , Status as ACTIVE.

Mode two (alter system archive log current)
Delete the table you just created , Or simply insert 、 to update 、 Delete table data and other database operations , Use the following command to switch archiving :
SQL>alter system archive log current;Query again V$ARCH_FILE You can see the 17 Files have been INACTIVE state .

Wait a moment to inquire , You can see the generation of 18 Archive files , Status as ACTIVE.

Mode three (alter system switch logfile)
Do some simple inserts 、 Delete or create tables , Then use the following command to switch archiving :
SQL>alter system switch logfile;Query after operation V$ARCH_FILE, You can see the 18 Files have been INACTIVE state .

Wait a moment to inquire , You can see the generation of 19 Archive files , Status as ACTIVE.

边栏推荐
- BUAA magpie nesting
- Scalpel like analysis of JVM -- this article takes you to peek into the secrets of JVM
- Ks003 mall system based on JSP and Servlet
- An article will give you a comprehensive understanding of the internal and external components of "computer"
- C language circular statement
- Facebook等大厂超十亿用户数据遭泄露,早该关注DID了
- MySQL master-slave replication
- C mouse event and keyboard event of C (XXVIII)
- 有条件地 [JsonIgnore]
- [001] [stm32] how to download STM32 original factory data
猜你喜欢

Network security - Security Service Engineer - detailed summary of skill manual (it is recommended to learn and collect)

Alibaba testers use UI automated testing to achieve element positioning

Pytoch foundation - (1) initialization of tensors

2.13 weekly report

How to standardize the deployment of automated testing?

ESP32_ FreeRTOS_ Arduino_ 1_ Create task

The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower

Proof of Stirling formula

Ethernet port &arm & MOS &push-pull open drain &up and down &high and low sides &time domain and frequency domain Fourier

In Net 6 CS more concise method
随机推荐
C#(三十一)之自定义事件
C#(三十)之C#comboBox ListView treeView
RT thread -- FTP of LwIP (2)
LTE CSFB test analysis
KS008基于SSM的新闻发布系统
Indicator system of KQI and KPI
登录mysql输入密码时报错,ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: NO/YES
[practical exercise] face location model based on skin color
JS Vanke banner rotation chart JS special effect
C mouse event and keyboard event of C (XXVIII)
Recommended papers on remote sensing image super-resolution
判断当天是当月的第几周
在字节做测试5年,7月无情被辞,想给划水的兄弟提个醒
Pytoch foundation - (1) initialization of tensors
Simple blog system
After five years of testing in byte, I was ruthlessly dismissed in July, hoping to wake up my brother who was paddling
Detailed explanation of serialization and deserialization
【FPGA教程案例12】基于vivado核的复数乘法器设计与实现
Record the pit of NETCORE's memory surge
BUAA calculator (expression calculation - expression tree implementation)