Monday, 17 February 2014

My first Abstract accepted in IBM event.















Emerging Technologies – In Memory Database Implementation.
Author – Akash Pramanik
Abstract Topic – Simplifying data life cycle using Automatic Data Optimization (Heat Map)

An in memory heat map tracks access to segments and blocks
ü      Data is periodically written to disk
ü      Information is accessible by views or stored procedures

Database Administrators can attach policies to tables to compress or tier data based on access to data
ü      Tables or Partitions can be moved between compression levels whilst data is still being accessed.
Let us assume Database Administrators apply policies like:
1.      Compress Partitions with row compression if they haven’t been modified in 30 days.
2.      Compress Partitions with columnar compression if they haven’t been modified in 180 days.
A heat map tracks the activity of segments and blocks.


Reduce storage footprint by applying policies to tables. Finally providing a to the storage requirements.

Benefits – Can solve the memory problem to a large extent. Save dollars by reducing server space requirement. Shall soon replace third party archiving solutions.


Tuesday, 4 February 2014


Script to identify Long Running Statements

--------------------------------------------------------------
rem LONGOPS.SQL
rem Long Running Statements
rem Developped by Akash
set linesize 120
col opname format a20
col target format a15
col units format a10
col time_remaining format 99990 heading Remaining[s]
col bps format 9990.99 heading [Units/s]
col fertig format 90.99 heading "complete[%]"
select sid,
       opname,
       target,
       sofar,
       totalwork,
       units,
       (totalwork-sofar)/time_remaining bps,
       time_remaining,
       sofar/totalwork*100 fertig
from   v$session_longops
where  time_remaining > 0