Your cannot create partitions larger then 4Tb using fdisk.
Your should use parted and gpt as partition type.
Read more »
Monthly Archives: January 2013
How to make BIG partitions in linux
Posted by KsI
on January 10, 2013
No comments
Mysql check auto_increment values
Posted by KsI
on January 10, 2013
No comments
We get old project, with braindead architecture.
Database structure provides surprises regularly. Yesterday we had a problem with maximum integer value reached at one column.
‘id’ at one table was auto_increment and “INT” not UNSIGNED INT or BIG INT, so after reaching id value 2147483647 application stop working, I change type to UNSIGNED BIGINT.
ALTER TABLE ad_campaigns_rates MODIFY id BIGINT UNSIGNED not null auto_increment, AUTO_INCREMENT = 2147483648;
Recent Comments