Find the JSON data in Oracle

Identify the column which having JSON data in Oracle

For finding the JSON data in the User or Schema of Oracle

SELECT table_name,
       column_name,
       format,
       data_type
FROM   user_json_columns;

Find the JSON data in the User having permission on another schema in Oracle

SELECT table_name,
       column_name,
       format,
       data_type
FROM   all_json_columns;

Find the JSON data column value in all tables of the database in Oracle

SELECT table_name,
       column_name,
       format,
       data_type
FROM   dba_json_columns;
This entry was posted in Oracle on by .
Unknown's avatar

About SandeepSingh

Hi, I am working in IT industry with having more than 15 year of experience, worked as an Oracle DBA with a Company and handling different databases like Oracle, SQL Server , DB2 etc Worked as a Development and Database Administrator.

Leave a Reply