1BEGIN
2 APEX_COLLECTION.DELETE_COLLECTION(p_collection_name => 'EMPLOYEE_CL');
3 -- All collections belonging to current session
4 APEX_COLLECTION.DELETE_ALL_COLLECTIONS_SESSION;
5 -- All collections belonging to current user
6 APEX_COLLECTION.DELETE_ALL_COLLECTIONS;
7END;