REMOVE_SECTION
The REMOVE_SECTION procedure removes the specified section from the specified section group. You can specify the section by name or ID. View section ID with the CTX_USER_SECTIONS view.
Syntax 1
Use the following syntax to remove a section by section name:
CTX_DDL.REMOVE_SECTION(
group_name IN VARCHAR2,
section_name IN VARCHAR2
);
group_name
Specify the name of the section group from which to delete section_name.
section_name
Specify the name of the section to delete from group_name.
Syntax 2
Use the following syntax to remove a section by section ID:
CTX_DDL.REMOVE_SECTION(
group_name IN VARCHAR2,
section_id IN NUMBER
);
group_name
Specify the name of the section group from which to delete section_id.
section_id
Specify the section ID of the section to delete from group_name.
Example
The following example drops a section called Title from the htmgroup:
begin
ctx_ddl.remove_section('htmgroup', 'Title');
end;