How to find ORACLE locked Objects?

Copy CodeCopiedUse a different BrowserSELECT a.osuser, a.sid, b.os_user_name, b.oracle_username, b.session_id, c.object_name, c.object_type FROM v$session a, v$locked_object b, dba_objects c WHERE a.sid = b.session_id AND b.object_id = c.object_id AND c.object_name =…

APEX APIs

Referred from Oracle Standard Document . List of APEX APIs APEX_COLLECTION  APEX_AUTOMATION  APEX_CSS  APEX_DATA_EXPORT  APEX_DATA_PARSER  APEX_DEBUG  APEX_ESCAPE  APEX_EXPORT  APEX_IG  APEX_IR  APEX_ITEM  APEX_JAVASCRIPT  APEX_JSON  APEX_LANG  APEX_LDAP  APEX_MAIL  APEX_PAGE  APEX_SESSION  APEX_STRING  APEX_WEB_SERVICE  APEX_ZIP 

APEX Tools, Themes and Boilerplates

Working with APEX? You should use the below Themes, Tools and Bolilerplates. Referred from Awesome APEX . Themes Universal Theme - Official Theme shipped with APEX > 5.0 - by Oracle APEX Development…

JSON_TABLE

Referred from Oracle Standard Document Data retrievable / parsing using JSON_TABLE Copy CodeCopiedUse a different BrowserSELECT jt.* FROM json_table('JSON STRING', '$' COLUMNS ( "COLUMN_NAME" VARCHAR2(4000) PATH '$.JSON_KEY' .... .... , NESTED…

PLSQL Collection

PL/SQL provides three collection types − Index-by tables or Associative array Syntax TYPE type_name IS TABLE OF element_type [NOT NULL] INDEX BY subscript_type; table_name type_name; Example TYPE l_tab_type IS TABLE…

APEX Page Access Protection

Oracle APEX provides various types of Page access protection (Page level declarative). We can utilize them as per the required scenario. Let’s see all of um one by one ……

APEX_SESSION.ATTACH

APEX_SESSION ATTACH Procedure In my previous blog , I have shared the way to query APEX_COLLECTIONS data from database backend itself. That approach needs to follow three steps. Setting up Workspace Setup…