Oracle ASM Flashcards

1
Q

What is ASM in Oracle?

A

ASM is a storage volume manager designed to manage Oracle database files. It simplifies and automates volume and file management. It also increases storage utilization, uptime, and agility.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Advantages of ASM

A
  • Striping: It spreads data evenly across all disks in a disk group to optimize performance and utilization.
  • Mirroring: It can increase availability by optionally mirroring any file.
  • Allows the removal or addition of disks from the disk storage system while the DB is operating.
  • Reduces administration tasks by enabling files stored in ASM disk groups to be Oracle managed files.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are some characteristics of an ASM instance?

A
  • Has SGA and background processes similar to Oracle but way smaller.
  • Mount disk groups to make ASM files available to DB instances; they do not mount databases.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the ASM initialization parameters?

A
  • INSTANCE_TYPE
  • DB_UNIQUE_NAME
  • ASM_POWER_LIMIT: max power for rebalancing operation on an ASM instance.
  • ASM_DISKGROUPS: list of disk groups that should be mounted by an ASM instance during startup.
  • ASM_DISKSTRING: specifies a value that can be used to limit the disks considered for discovery.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is ASM rebalancing?

A

The main objective of the oracle ASM rebalance operation is to always provide an even distribution of the file extents and space usage across all disks in the disk group. Any change in the storage configuration will trigger it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is RAID 0?

A

Consists of one or more logical volumes striped across two or more physical volumes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is RAID 1?

A

Consists of one or more logical volumes mirrored across two or more disks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is RAID 5?

A

0+1. Logical volume is cut across multiple physical volumes so concurrent read and writes are possible.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are types of redundancy?

A
  • Normal: single mirror.
  • High: creates three copies of every allocation unit thus requiring a minimum of three disks.
  • External: no mirroring at all; assumption is that there is an underlying LVM that is doing whatever level of RAID is deemed appropriate.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the difference between mirroring and striping in RAID?

A
  • Striping divides data in one disk across various drives. This provides the greatest performance and efficiency. Smaller the stripes, faster the array.
  • Mirroring is when data on one drive is duplicated on another array. This creates redundancy and reduces the chances for emergency RAID recovery.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly