Is there a way to check what's in a a block in Oracle that's similar to SQL Server's DBCC PAGE? I want to investigate how Oracle stores different data types. Any suggestion is appreciated.
Asked
Active
Viewed 83 times
1 Answers
2
It absolutely is.
ALTER SYSTEM DUMP DATAFILE <data file number> block <block number>;
See http://www.adp-gmbh.ch/ora/misc/dump_block.html for details.
You should also read the Data types chapter in Expert Oracle Database Architecture book.

Husqvik
- 5,669
- 1
- 19
- 29