Questions tagged [oracle12c]

The Oracle software is a popular RDBMS product, with distinct releases such as Oracle9i, Oracle10g, Oracle 11g, and Oracle 12c. Typically, each major version includes two different releases. Any inquiries categorized under **oracle12c** are usually related to this specific version or the unique features it offers.

Encountering a problem with Oracle 12c when attempting to retrieve a JSON value exceeding 11000 characters using JSON_VALUE

While executing the code below on Oracle 12c : DECLARE l_json clob; l_var varchar2(90); l_query clob; mypath clob; l_path_value varchar2(100); BEGIN SELECT json_column into l_json from my_table; SELECT path_colum ...