Tag

database limits

0 views collected around this technical thread.

Full-Stack Internet Architecture
Full-Stack Internet Architecture
Apr 27, 2022 · Databases

Maximum Number of Tables in a Single InnoDB Database

The article asks how many tables can be created in a single MySQL database using the InnoDB storage engine, prompting readers to provide the correct limit without consulting external sources and discuss the theoretical maximum based on MySQL specifications.

InnoDBMySQLSQL
0 likes · 1 min read
Maximum Number of Tables in a Single InnoDB Database
macrozheng
macrozheng
Jan 27, 2021 · Databases

When MySQL Auto‑Increment IDs Hit Their Limit: Errors and Fixes

This article explains how MySQL integer auto‑increment primary keys can reach their maximum value, the resulting duplicate‑key errors, and how using BIGINT or understanding InnoDB's internal row_id behavior can prevent data loss or crashes.

BIGINTMySQLauto-increment
0 likes · 6 min read
When MySQL Auto‑Increment IDs Hit Their Limit: Errors and Fixes
Aikesheng Open Source Community
Aikesheng Open Source Community
Feb 27, 2020 · Databases

Understanding MySQL Row Size Limits: Server and InnoDB Layer Calculations

This article explains MySQL's row size restrictions at both the Server and InnoDB layers, detailing the calculation methods, relevant source code paths, error messages, and practical guidelines for ensuring total record length stays within the 65535‑byte server limit and the 8126‑byte InnoDB limit.

InnoDBMySQLRow Size Limit
0 likes · 12 min read
Understanding MySQL Row Size Limits: Server and InnoDB Layer Calculations