MySQL Forums
Forum List  »  General

Re: Why does this table take 10x the disk space in MySQL compared to SQL Server?
Posted by: Rick James
Date: July 20, 2016 09:23AM

I see no likely cause for what you are seeing. So, let's get some more details and hope that something jumps out. I know you provided the create table, but please provide the MySQL output of
SHOW CREATE TABLE data1;
Also provide
SHOW TABLE STATUS LIKE 'data1';
SELECT id, column1, length(column1), column100, length(column100) FROM data1 WHERE id=11;

Options: ReplyQuote


Subject
Written By
Posted
Re: Why does this table take 10x the disk space in MySQL compared to SQL Server?
July 20, 2016 09:23AM


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.