Archive for the ‘Performance & Tuning’ Category

Oracle Application Development Framework (ADF) and Oracle Forms Developers

Tuesday, August 24th, 2010

I want to share my first impression of ADF and I am sure everyone with Oracle Forms background will feel same. I have been working in oracle Forms and Reports for more than five years.  I have development experience in Oracle Developer 6i/9i/10g and Forms, Reports 11g. After reading Oracle’s Statement of Direction for Forms and reports, I decided to learn ADF for web-based application development. (more…)

Undo Management and Undo Tablespace | Undo Retention

Friday, July 31st, 2009

When a query tries to modify database, original data entries are kept in separate location and then changes are applied to datafiles. The data which is kept in separate location is called Undo data. Undo data is used to maintain data integrity and data consistency. Oracle uses Undo data in following situations (more…)

SQL Processing

Tuesday, March 24th, 2009

When query is submitted to oracle server, various processing steps are performed to execute query. Following main steps are involved in this process.

1- Query Parsing

2- Optimizer determines most efficient way to execute query and generates an execution plan.

3- Finally SQL engine executes query.

In 1st step, SQL server checks syntax of query and outputs error if found.

After parsing of query, optimizer generates execution plan. Execution plan produced by optimizer depends on two main possible goals (more…)