CLOB Plugin
APEX Deep Linking, Authentication and Special Characters
Mark your calendars: May 14 ODTUG’s Expert Panel on APEX !
Join me at ODTUG’s Expert Panel – Oracle Application Express
Tuesday, May 14, 2013 12:00 PM - 1:00 PM EDT
ODTUG's Expert Panel - Oracle Application Express
Panelists: Dietmar Aust (Opal Consulting), Roel Hartman (APEX Evangelists ), Dan McGhan (Enkitec)
Moderator: Patrick Cimolini (Patrick International APEX Consulting)
(more...)
jQuery – my first functions
Controlling Hide/Show Apex Regions Using Javascript
Hide/Show regions are very useful in that they allow users to hide certain on-screen content when it’s not relevant for them (and show it again just as easily) simply by clicking the small arrow icon in the top left of the region.
But how can you programmatically do the (more...)
Advanced Javascript Tutorial
Today I came across a great interactive tutorial which covers a series of advanced Javascript topics. It’s very well put together and lets you try out your own variations of the code being shown which can be very handy in making sure your understanding is correct.
It’s from John Resig, (more...)
How to make your browser save your password
Why? The APEX team implemented the login page with the HTML (more...)
Oracle Cloud World – London May 14th & Munich May 15th
New book: Oracle Application Express for Mobile Web Applications
Very recently a new book came out: "Oracle Application Express for Mobile Web Applications". This book is aimed at developers with some knowledge of APEX and want to know more about building web applications with APEX (of course) especially aimed at mobile devices (iPhone, iPad, and other brands of smartphones (more...)
Restoring a dropped table
Catastrophe! You’ve just accidentally dropped a table which contained really rather important data. What to do?
One thing you can do to recover the situation quickly (if you’re running 10g or later, that is) is to run the following command:
FLASHBACK TABLE MY_SCHEMA.MY_SUPER_IMPORTANT_TABLE TO BEFORE DROP;
If the table (more...)
Great Lakes Oracle Conference – May 14/15, 2013
A beautiful weather app for Brazil and Portugal
Last post I wrote about evolution. Professional evolution… from legacy technology to new IT paradigms, cloud and mobile. This week, as a result of that evolution, the weather app I developed with a friend, was deployed and it’s available at App Store.
I hope users from Portugal and Brazil find (more...)
Generate DDL Source Code with SQL
SELECT dbms_metadata.get_ddl(replace(OBJECT_TYPE, ' ', '_'), OBJECT_NAME,OWNER) as DDL_SOURCE_CODE
FROM ALL_OBJECTS
WHERE OBJECT_TYPE IN
('SEQUENCE', 'TABLE', 'INDEX',
'VIEW', 'DATABASE LINK', 'MATERIALIZED VIEW',
'FUNCTION', 'PROCEDURE', 'PACKAGE',
'PACKAGE BODY'
)
AND OWNER = '#SCHMEA_NAME#';
Migrate Sequences
Is public Session zero active?
Yesterday i needed to find out if the current page of an application is rendered using the public Session 0 (zero).
Seems to be a trivial task, simply look up :APP_SESSION and there you find ……a very big number. Even if the URL clearly shows that session 0 is (more...)




RSS