JSON_ELEMENT_T: the supertype for the JSON_OBJECT_T, JSON_ARRAY_T, JSON_SCALAR_T and JSON_KEY_LIST object types.
Each of them extends JSON_ELEMENT_T as a subtype.
An instance of type JSON_ELEMENT_T, which is an in-memory representation of the JSON data, can be constructed only by parsing JSON text.
目前分類:SQL / PL/SQL (30)
- Sep 04 Mon 2017 10:22
JSON Data Structures in PL/SQL
- Aug 28 Mon 2017 17:33
JSON in Oracle 12c Demo
CREATE TABLE json_test_tab (
id RAW(16) NOT NULL,
data CLOB,
- Dec 01 Thu 2016 16:14
Oracle Password Policy Checking PL/SQL Function Using REGEXP_COUNT
Oracle Password Policy Checking PL/SQL Function Using REGEXP_COUNT
create or replace function pwd_policy_check_fnc(pwd varchar2)
return pls_integer
- Feb 24 Wed 2016 17:02
Reading Loaded Files from XML DB through Oracle Embedded PL/SQL Gateway
Reading Loaded Files from XML DB through Oracle Embedded PL/SQL Gateway
type myfilelist.bat
- Feb 16 Tue 2016 16:36
Building a simple webpage using Embedded PL/SQL Gateway
Building a simple webpage using Embedded PL/SQL Gateway
-- Create a demo user
create user demo_user identified by demo_user default tablespace users temporary tablespace temp;
- Mar 05 Thu 2015 15:44
Using Oracle REGEXP_SUBSTR function & CONNECT BY LEVEL clause to Decompose String
Using Oracle REGEXP_SUBSTR function & CONNECT BY LEVEL clause to Decompose String
col String format a10
- Jan 27 Tue 2015 13:52
Change public synonyms to private synonyms in Oracle
Change public synonyms to private synonyms in Oracle
The following anonymous PL/SQL block will change the public synonyms granted by SCOTT to private synonyms:
. oraenv
- Oct 14 Tue 2014 11:38
Pragma Serially_Reusable Practice
Pragma Serially_Reusable Practice:
According to Oracle® Database PL/SQL Language Reference 11g Release 1 (11.1),
- Oct 08 Wed 2014 16:12
Upload File using PL/SQL Web Toolkit
Upload File using PL/SQL Web Toolkit
- Sep 16 Tue 2014 14:26
Use of Quote operator "q" in Oracle 11g
Use of Quote operator "q" in Oracle 11g
The following SQL statements will produce the same results.
- May 27 Tue 2014 18:15
Check If a "number" is an integer or a float (Oracle PL/SQL)
- May 16 Fri 2014 12:02
Rows <-> Columns Using Oracle Pivot and Unpivot Example
-----------------------------------------------------------------------------------
-- Convert Rows into Columns using Oracle PIVOT
-----------------------------------------------------------------------------------
- Dec 19 Thu 2013 14:21
Handling PL/SQL Error Message with DBMS_UTILITY.FORMAT_ERROR_STACK and DBMS_UTILITY.FORMAT_ERROR_BACKTRACE
Handling PL/SQL Error Message with DBMS_UTILITY.FORMAT_ERROR_STACK and DBMS_UTILITY.FORMAT_ERROR_BACKTRACE
-- Old Way
set serveroutput on size 100000
- Oct 18 Fri 2013 14:18
Generate HTML Report using SQL*Plus
One thing neat about SQL*Plus is that it can even generate HTML file in addition to text file.
Here's the example:
- Jan 30 Wed 2013 18:44
PL/SQL BULK COLLECT Using LIMIT Clause Practice
PL/SQL BULK COLLECT Using LIMIT Clause Practice:
- Dec 10 Mon 2012 14:11
Join PL/SQL Table with Normal Table using Built-in DataType
The first example demonstrates a way to joining a PL/SQL table with a normal table using built-in data type.
create table student_table
- Oct 23 Tue 2012 16:58
PL/SQL Function to Get A Random Alphanumeric String
Function to Get A Random Alphanumeric String:
create or replace function get_random_alphanumeric_string
- Jun 26 Tue 2012 11:36
Oracle RANK() and DENSE_RANK() FUNCTION PRACTICE
Oracle RANK() and DENSE_RANK() FUNCTION PRACTICE
-- Create a table named "rank_practice" containing student point information
create table rank_practice
- May 29 Tue 2012 11:42
Oracle LISTAGG Analystic Function (11gR2)
Oracle LISTAGG Analystic Function (11gR2)
Purpose: To aggregate data from a number of rows into a single row.
SQL> desc emp
- Mar 09 Fri 2012 11:29
Ways To Display Current Session ID (SID) in Oracle
The following example demonstrates three ways to display current session sid of the user - SCOTT :
conn / as sysdba
accept pwd hide