skip to Main Content

Append in nested array JSON object in oracle

I have JSON document column in one of the table and its structure is like:- { "root":[{"MCR":"MCR_1", "MCR_COLUMNS":{ "MCR_COLUMN_1":"ABC1", "MCR_COLUMN_2":"ABC2" } }, {"MCR":"MCR_2", "MCR_COLUMNS":{ "MCR_COLUMN_1":"XYZ1", "MCR_COLUMN_2":"XYZ2" } } ] } Now I want to write a merge statement to merge…

VIEW QUESTION

Using ADOdb with ODBC and Oracle – PHP

I've been given access to an Oracle Server via ODBC and tested the connection using Oracle SQL Developer. These are the connection constants I've set in PHP: define('APP_DB_HOST', '192.168.1.1'); define('APP_DB_PORT', '1521'); define('APP_DB_USER', 'MyUser'); define('APP_DB_PASS', 'MyPass'); define('APP_DB_SID', 'MyDatabaseSID'); define('APP_DB_SCHEMA', 'MyDatabaseSchema'); With…

VIEW QUESTION
Back To Top
Search