Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle apex view logs

SELECT * FROM APEX_WORKSPACE_ACTIVITY_LOG 
    WHERE WORKSPACE = 'wks_name'
    AND APEX_USER = 'user_name'
    AND APPLICATION_ID = 'app_id';
    
SELECT * FROM APEX_DEBUG_MESSAGES;
Comment

oracle apex view logs

SELECT adb.APEX_USER,
       adb.APPLICATION_ID, wal.APPLICATION_NAME, adb.PAGE_ID,
       adb.MESSAGE, adb.MESSAGE_TIMESTAMP,
       adb.PAGE_VIEW_ID, adb.SESSION_ID
FROM APEX_WORKSPACE_ACTIVITY_LOG wal
INNER JOIN APEX_DEBUG_MESSAGES adb
ON wal.DEBUG_PAGE_VIEW_ID = adb.PAGE_VIEW_ID;
Comment

PREVIOUS NEXT
Code Example
Sql :: do postgresql 
Sql :: oracle number to percentage 
Sql :: mysql shell clear screen 
Sql :: sql line numbers 
Sql :: mysql 1 hour ago 
Sql :: Select without null values sql 
Sql :: how to select distinct in mysql 
Sql :: how to connect postgresql database with java 
Sql :: sql select first and last record of each group 
Sql :: change filed order in mysql 
Sql :: show column names in sql table 
Sql :: sql lag 
Sql :: wherein sql 
Sql :: Add a column with a default value to an existing table in SQL Server 
Sql :: postgres duplicate key value violates unique constraint already exists 
Sql :: soql last week 
Sql :: rename table sqlite 
Sql :: declare varchar sql server 
Sql :: sql cheatsheet 
Sql :: mariadb date equals to current_date plus days 
Sql :: get all columns in a table sql 
Sql :: postgres 11 add primary key 
Sql :: mysql ilike 
Sql :: oracle dependencies table 
Sql :: sql view talbe columns 
Sql :: sql server query database space available 
Sql :: change column name mysql 
Sql :: sql query to select data between two dates 
Sql :: insert into auto increment mysql 
Sql :: sql run multiple updates in one query 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =