|
 |
|
Redo log switching tips
Oracle Database Tips by Donald BurlesonFebruary 3, 2015
|
Question: How do I force a redo log
switch. I need a script to see when my redo logs are
switching and I want to know the command to make Oracle
switch log files.
Answer: To switch the log file, simply issues
the
alter system switch logfile command.
Oracle provides data dictionary
views for the online redo logs as seen in this table:
v$log
- Lists information about each member of each online redo
log group.
v$logfile
- Provides redo log file name information
If you query v$log, you will see
information about each redo log group, including the size of
each member and how many members in each log group. Most
importantly, you can find out which log group is the CURRENT
redo log group. Remember the alter system switch logfile
command in the case that you want to change it.
Here is a dictionary query to
display the redo logs switching by date and time.
Please see
the
Oracle script
collection for a complete set of redo log scripts:
set lines 120;
set pages 999;
select
substr(time,1,5) day,
to_char(sum(decode(substr(time,10,2),'00',1,0)),'99')
"00",
to_char(sum(decode(substr(time,10,2),'01',1,0)),'99')
"01",
to_char(sum(decode(substr(time,10,2),'02',1,0)),'99')
"02",
to_char(sum(decode(substr(time,10,2),'03',1,0)),'99')
"03",
to_char(sum(decode(substr(time,10,2),'04',1,0)),'99')
"04",
to_char(sum(decode(substr(time,10,2),'05',1,0)),'99')
"05",
to_char(sum(decode(substr(time,10,2),'06',1,0)),'99')
"06",
to_char(sum(decode(substr(time,10,2),'07',1,0)),'99')
"07",
to_char(sum(decode(substr(time,10,2),'08',1,0)),'99')
"08",
to_char(sum(decode(substr(time,10,2),'09',1,0)),'99')
"09",
to_char(sum(decode(substr(time,10,2),'10',1,0)),'99')
"10",
to_char(sum(decode(substr(time,10,2),'11',1,0)),'99')
"11",
to_char(sum(decode(substr(time,10,2),'12',1,0)),'99')
"12",
to_char(sum(decode(substr(time,10,2),'13',1,0)),'99')
"13",
to_char(sum(decode(substr(time,10,2),'14',1,0)),'99')
"14",
to_char(sum(decode(substr(time,10,2),'15',1,0)),'99')
"15",
to_char(sum(decode(substr(time,10,2),'16',1,0)),'99')
"16",
to_char(sum(decode(substr(time,10,2),'17',1,0)),'99')
"17",
to_char(sum(decode(substr(time,10,2),'18',1,0)),'99')
"18",
to_char(sum(decode(substr(time,10,2),'19',1,0)),'99')
"19",
to_char(sum(decode(substr(time,10,2),'20',1,0)),'99')
"20",
to_char(sum(decode(substr(time,10,2),'21',1,0)),'99')
"21",
to_char(sum(decode(substr(time,10,2),'22',1,0)),'99')
"22",
to_char(sum(decode(substr(time,10,2),'23',1,0)),'99')
"23"
from v$log_history
group
by substr(time,1,5);
|
|
|
Oracle Training from Don Burleson
The best on site
"Oracle
training classes" are just a phone call away! You can get personalized Oracle training by Donald Burleson, right at your shop!

|
|
|
|
|
Burleson is the American Team

Note:
This Oracle
documentation was created as a support and Oracle training reference for use by our
DBA performance tuning consulting professionals.
Feel free to ask questions on our
Oracle forum.
Verify
experience!
Anyone
considering using the services of an Oracle support expert should
independently investigate their credentials and experience, and not rely on
advertisements and self-proclaimed expertise. All legitimate Oracle experts
publish
their Oracle
qualifications.
Errata?
Oracle technology is changing and we
strive to update our BC Oracle support information. If you find an error
or have a suggestion for improving our content, we would appreciate your
feedback. Just
e-mail:
and include the URL for the page.
Copyright © 1996 - 2020
All rights reserved by
Burleson
Oracle ®
is the registered trademark of Oracle Corporation.
|
|
|
|
|