MySQL Forums
Forum List  »  Install & Repo

Re: Upgrading 5.7 to 8.0.21 getting errors when starting up
Posted by: Peter Brawley
Date: January 18, 2021 01:50PM

This should find the culprits ...

use information_schema;
select c.table_schema,c.table_name,c.column_name
from columns c
join key_column_usage k using(table_schema,table_name)
where c.data_type like '%blob%';

Options: ReplyQuote


Subject
Written By
Posted
Re: Upgrading 5.7 to 8.0.21 getting errors when starting up
January 18, 2021 01:50PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.