(David Fitzjarrell) An interesting issue can reveal itself in Oracle 12.1.0.2 when importing a list partitioned table using Data Pump:
Tag: Oracle
You dont need that sequence number
(connormcdonald) I’ve lost track of the number of times I see this sequence (no pun intended) of actions in code:
GRANT SELECT Updates LAST_DDL_TIME
(Andrew Reid) DDL stands for Data Definition Language. The CREATE TABLE, ALTER TABLE and DROP TABLE statements are examples of DDL. LAST_DDL_TIME is a column in the USER_OBJECTS view. It records the date and time of the most recent DDL statement applied to the object in question.
RAM is the new disk – and how to measure its performance – Part 3 – CPU Instructions & Cycles
(Tanel Poder) In the first part of this series I said that RAM access is the slow component of a modern in-memory database engine and for performance you’d want to reduce RAM access as much as possible.
Oracle 12c in-memory option and IO
(Frits Hoogland) This article is about the Oracle 12c in-memory option, and specifically looks at how the background worker processes do IO to populate the in-memory column store.
Decoding DBA_TAB_COLUMNS high_value and low_value
(Neil Chandler) When performance tuning, it can be important to understand the statistics in the database. It is worth noting that every column records it lowest (low_value) and highest (high_value) values in DBA_TAB_COLUMNS when you gather stats, like a mini-histogram.
Trace Files — 8c : Still More Performance Evaluation from Trace File
(Hemant K Chitale) In previous blog posts here and here, I have demonstrated Full Table Scans of a table called ALL_OBJECTS_MANY_LIST being executed via Direct Path Reads (shown as ‘direct path read’) in the Wait Events.
TABLE ACCESS INMEMORY FULL – but there may be more
(Martin Bach) While preparing to teach a class this week I have had the time to look into the In Memory (cost) option a bit closer. I noticed a few interesting things along the way and would like to share one of these here.
Oracle JET and ADF Faces Integration in ADF
(Andrejus Baranovskis) Oracle JET provides a set of UI components, based on a combination of HTML and JavaScript. ADF Faces is an Ajax-enabled rich JavaServer Faces component framework that uses JavaScript to render client-side components, implement rich component functionality, validate user input
PRAGMA EXCEPTION_INIT
(Andrew Reid) You can use one of these to link an exception name with an Oracle error number. Once you have done this, you can use the exception name in the exception block which follows the declaration.
