CREATE FAULT GROUP

Creates a fault group, which can contain the following:

The CREATE FAULT GROUP statement creates an empty fault group. You must run the ALTER FAULT GROUP statement to add nodes or other fault groups to an existing fault group.

Syntax

CREATE FAULT GROUP name

Parameters

name

Specifies the name of the fault group to create, where name conforms to conventions described in Identifiers. You must provide distinct names for each fault group you create.

Privileges

Must be a superuser to create a fault group.

Example

The following command creates a fault group called parent0:

=> CREATE FAULT GROUP parent0;
CREATE FAULT GROUP

To add nodes or other fault groups to the parent0 fault group, run the ALTER FAULT GROUP statement.

See Also