Deletes the parameter with the given key from the parameter list.
PROCEDURE DELETE_PARAMETER
(list VARCHAR2,
key VARCHAR2);
PROCEDURE DELETE_PARAMETER
(name VARCHAR2,
key VARCHAR2);
Built-in Type unrestricted procedure
Enter Query Mode yes
Deleting the last parameter from a list does not automatically delete the list itself. To delete the parameter list, issue a call to the DESTROY_PARAMETER_LIST subprogram.
/*
** Built-in: DELETE_PARAMETER
** Example: Remove the 'NUMBER_OF_COPIES' parameter from the
** already existing 'TEMPDATA' parameter list.
*/
BEGIN
Delete_Parameter('tempdata','number_of_copies');
END;