apex delete collection

Solutions on MaxInterview for apex delete collection by the best coders in the world

showing results for - "apex delete collection"
Aymen
01 Jul 2016
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;