To View Content inside a Page
backup-restore #backup-restore
--this is useful to findout the modified extents
--first turn on this trace flag dbcc tranceon (3604)
--then use the following command to view the content dbcc page ('databasename', file_id, page_number, viewing_type ) with tableresults
--ex: DBCC PAGE('databasename',1,???,3) --Specify Data Page Number
GO