DROP_SECTION_GROUP
The DROP_SECTION_GROUP procedure deletes the specified section group, as well as all the sections in the group, from the Text data dictionary.
Syntax
CTX_DDL.DROP_SECTION_GROUP(
group_name IN VARCHAR2
);
group_name
Specify the name of the section group to delete.
Example
The following example drops the section group htmgroup and all its sections:
begin
ctx_ddl.drop_section_group('htmgroup');
end;