Tricky that SELECT statement generates REDO

After gaining theoretical knowledge from the Oracle documents or from Oracle university training every DBA will be under presumption that only DML operations in the database generates REDO segments. But practically it is not completely true. On few occasions you can identify that SELECT statements generates REDO segments in the instance. Next question you might […]

Blocking Sessions in Oracle

There are multiple ways to capture blocking sessions in oracle database. 1. A full query to get list of blocking sessions with BLOCKER, WAITER and OBJECT being blocked:It works on Single Instance and RAC set-up as well. 2. A simple query to find out blocking in the database: 3. To get limited information on blocking […]