Showing posts with label Oracle Redo Log. Show all posts
Showing posts with label Oracle Redo Log. Show all posts

Wednesday, 4 December 2013

How to Creating Redo Log Members in Oracle

Goal:

Creating Redo Log Members

Description:

In some cases, it might not be necessary to create a complete group of redo log files. A group could already exist, but not be complete because one or more members of the group were dropped (for example, because of a disk failure). In this case, you can add new members to an existing group.

To create new redo log members for an existing group, use the SQL statement ALTER DATABASE with the ADD LOGFILE MEMBER clause. The following statement adds a new redo log member to redo log group number 2:

ALTER DATABASE ADD LOGFILE 
MEMBER '/oracledb/oradata/itbl/log2b.rdo' TO GROUP 2;

Notice that filenames must be specified, but sizes need not be. The size of the new members is determined from the size of the existing members of the group.

When using the ALTER DATABASE statement, you can alternatively identify the target group by specifying all of the other members of the group in the TO clause, as shown in the following example:

ALTER DATABASE ADD LOGFILE 
MEMBER '/oracledb/oradata/itbl/log2c.rdo'
    TO ('/oracledb/oradata/itbl/log2a.rdo', '/oracledb/oradata/itbl/log2b.rdo'); 

Note:


Fully specify the filenames of new log members to indicate where the operating system files should be created. Otherwise, the files will be created in either the default or current directory of the database server, depending upon your operating system. You may also note that the status of the new log member is shown as INVALID. This is normal and it will change to active (blank) when it is first used.

How to Creating Redo Log Groups in Oracle

Goal:

Creating Redo Log Groups

Description:

To create a new group of redo log files, use the SQL statement ALTER DATABASE with the ADD LOGFILE clause.

The following statement adds a new group of redo logs to the database:

ALTER DATABASE
  ADD LOGFILE ('/oracledb/oradata/itbl/log1c.rdo', '/oracledb/oradata/itbl/log2c.rdo') SIZE 4M;
Note:

Use fully specify filenames of new log members to indicate where the operating system file should be created. Otherwise, the files will be created in either the default or current directory of the database server, depending upon your operating system.
You can also specify the number that identifies the group using the GROUP clause:

ALTER DATABASE 
  ADD LOGFILE GROUP 10 ('/oracledb/oradata/itbl/log1c.rdo', '/oracledb/oradata/itbl/log2c.rdo')
      SIZE 4M;

Using group numbers can make administering redo log groups easier. However, the group number must be between 1 and MAXLOGFILES. Do not skip redo log file group numbers (that is, do not number your groups 10, 20, 30, and so on), or you will consume unnecessary space in the control files of the database.