Heim > Datenbank > MySQL-Tutorial > Hauptteil

DataBlockDump

WBOY
Freigeben: 2016-06-07 15:22:51
Original
1058 Leute haben es durchsucht

Data Block Dump A data block dump shows detailed information of the contents of the block for the given datafile number and the block number. It shows you exactly how the data is stored internally. Depending on whether it is a table or ind

Data Block Dump

A data block dump shows detailed information of the contents of the block for the given datafile number and the block number. It shows you exactly how the data is stored internally. Depending on whether it is a table or index segment, the data block will list the contents of rows or index keys. The segment header block dump will list the extent map information. The undo header block dump will list the free extent pool in the undo segments. You may need to dump the contents of the data block when investigating block corruptions. In addition, complex recovery situations also warrant block dumps to check the SCN of the block.

dump出数据块的内容,里面的内容有可能不同,取决于是表段还是索引段,可能会dump出rows或是index keys。对于undo段头的块,我们可以列出free的extent pool。我们调查data block corruptions就可以通过dump数据块,在做复杂的recovery时也可以通过dump数据块来得知数据块的SCN号。

Syntax

The following methods dump the contents of the interested data blocks to the trace file in the UDUMP directory. Data block dumps contain the actual data stored in the blocks.

dump出来放在UDUMP路径下

  Note

If your database instance has the hidden parameter _TRACE_FILES_PUBLIC set to TRUE, please remember that the trace file data can be viewed by anyone with access to your database server machine. It will compromise data security and confidentiality.

alter system dump datafile <file#> block <block#>;--提供file#与block#
Nach dem Login kopieren
alter system dump datafile <file#> block min <min_block#> block max <max_block#>;--dump出邻居的块
Nach dem Login kopieren
想dump出一个segment内的数据块:
Nach dem Login kopieren
select file_id, block_id, blocks from dba_extents where segment_name = &lsquo;TEST&rsquo;; FILE_ID BLOCK_ID BLOCKS ---------- ---------- ---------- 1 29081 8
Nach dem Login kopieren
REM ---- To dump the segment header block
alter system dump datafile 1 block 29081;

REM ---- To dump the data block next to the segment header
alter system dump datafile 1 block 29082

REM ---- To dump both the blocks at the same time
alter system dump datafile 1 block min 29081 block max 29082;
Nach dem Login kopieren
oradebug不能用来dump出数据块
Nach dem Login kopieren
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!