Oracle Database Block Visualizer


03.11.2016
by Kamil Stawiarski

Recently I wanted to demonstrate to some people on my training, how Oracle database maintains blocks in a datafile – what happens after truncate, truncate with drop storage clause, delete, regular insert, direct path insert and so on…

I didn’t find any tool for that so I’ve written my own. It’s core code is based on my previous database block research – project RICO https://blog.ora-600.pl/2015/09/03/rico/

Tool is very small and simple and right now it supports only regular blocks with data and no compression.

And this is how it works – let’s create a tablespace and 3 new tables in HR schema:

1SQL> conn / as sysdba
2Connected.
3SQL> create tablespace emps_tbs
4  2  datafile '/u01/app/oracle/oradata/orcl/emps_tbs01.dbf'
5  3  size 64m
6  4  autoextend on next 32m
7  5  maxsize 1g;
8 
9Tablespace created.
10 
11SQL> conn hr/hr
12Connected.
13SQL> create table employees1 tablespace emps_tbs as select * from employees;
14 
15Table created.
16 
17SQL> create table employees2 tablespace emps_tbs as select * from employees;
18 
19Table created.
20 
21SQL> create table employees3 tablespace emps_tbs as select * from employees;
22 
23Table created.
24 
25SQL>

Now let’s fill those tables:

1SQL> ed
2Wrote file afiedt.buf
3 
4  1  begin
5  2    for i in 1..50 loop
6  3  for j in 1..10 loop
7  4    insert into employees1 select * from employees;
8  5    insert into employees2 select * from employees;
9  6    insert into employees3 select * from employees;
10  7    commit;
11  8 end loop;
12  9    end loop;
13 10* end;
14SQL> /
15 
16PL/SQL procedure successfully completed.

Now let’s play with tables a little bit 🙂

1To check the physical layout of blocks in a datafile we have get data_object_id of all tables:
2 
3SQL> ;
4  1  select object_id, data_object_id, object_name
5  2  from user_objects
6  3* where object_name like 'EMPLOYEES_'
7SQL> /
8 
9 OBJECT_ID DATA_OBJECT_ID OBJECT_NAME
10---------- -------------- ------------------------------
11     94033      94033 EMPLOYEES3
12     94032      94032 EMPLOYEES2
13     94031      94031 EMPLOYEES1

Now we can prepare parameter file for my tool:

194031:X|RED
294032:Y|BLUE
394033:Z|MAGENTA

And this is how we use it (I use print screens to show you colors :))
odbv

And below visualization you can find legend:

odbv2

Well, that's it. If you want to play with it, you can find this tool, compiled for Linux x86_64 here: http://ora-600.pl/oinstall/odbv.x86_64

I will use it in the future to explain some stuff 🙂 Enjoy!


Contact us

Database Whisperers sp. z o. o. sp. k.
al. Jerozolimskie 200, 3rd floor, room 342
02-486 Warszawa
NIP: 5272744987
REGON:362524978
+48 508 943 051
+48 661 966 009
info@ora-600.pl

Newsletter Sign up to be updated