I have a table with large amounts of BLOB data in a column. I am writing a utility to dump the data to file system. But before dumping, I need to check if necessary space is
You can use the MySQL function OCTET_LENGTH(your_column_name). See here for more details.
OCTET_LENGTH(your_column_name)