If you are working on Linux, you can scan the dump file for the longest row, which may (or may not be!) Be the largest table depending on indexes, structure, etc., but it will be a worthy guess if you do not can get a server.
awk ' { if ( length > L ) { L=length ;s=$0 } }END{ print L,"\""s"\"" }' /root/sql/_common.all.301009.sql | cut -c 1-100
This will show you the first 100 characters of the longest string. This may not work if, for example, you have several attachments for each table in the dump file (with the --extended-insert or --opt ).
source share