Creating a group
You can create a group to organize Scheduler tasks and sensors.
Before you begin
When you create a task or sensor, you can specify a group name from the ph_group table in the tk_group column of the ph_task table.
About this task
Procedure
Use an INSERT statement to add a row into the ph_group table
in the sysadmin database.
You must include a name
for the group for the group_name column and a description of
the group for the group_description column. The database server
generates an ID for the group in the group_id column.
Example
The following example adds a group named TABLES:INSERT INTO ph_group
(
group_name,
group_description
)
VALUES
(
"TABLES",
"Tasks that trim history and results tables."
);