Answers for "oracle apex delete all collection"

SQL
3

oracle apex delete collections

BEGIN
    APEX_COLLECTION.DELETE_COLLECTION(p_collection_name => 'EMPLOYEE_CL');
    -- All collections belonging to current session
    APEX_COLLECTION.DELETE_ALL_COLLECTIONS_SESSION;
    -- All collections belonging to current user
    APEX_COLLECTION.DELETE_ALL_COLLECTIONS;
END;
Posted by: Guest on July-14-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language