I want to work with json data, in an Oracle database, so I tried the apex_json package.
I tried this example from Oracle:
DECLARE
  s varchar2(32767) := '{ "a": 1, "b": ["hello", "world"]}';
BEGIN
  apex_json.parse(s);
  sys.dbms_output.put_line('a is '||apex_json.get_varchar2(p_path => 'a'));
END;
But I get this error:
APEX_JSON.parse must be declared.
How can I verify that APEX_JSON is installed on my db_server? 
Is there anything I need to do to activate it?
 
     
     
     
    