2-9 of 506,000 results
Open links in new tab
  1. MySQL :: MySQL 8.0 Reference Manual :: 17.10 InnoDB Row Formats

    The row format of a table determines how its rows are physically stored, which in turn can affect the performance of queries and DML operations. As more rows fit into a single disk page, queries and …

  2. MySQL :: MySQL 9.2 Reference Manual :: 17.10 InnoDB Row Formats

    The row format of a table determines how its rows are physically stored, which in turn can affect the performance of queries and DML operations. As more rows fit into a single disk page, queries and …

  3. mysql - What ROW_FORMAT is my table? - Stack Overflow

    Also, the default ROW_FORMAT has apparently changed over time with MySQL versions, which is understandable. However, I can't find anywhere that says how to find out what the ROW_FORMAT …

  4. MySQL Row Format: Difference between fixed and dynamic?

    MySQL specifies the row format of a table as either fixed or dynamic, depending on the column data types. If a table has a variable-length column data type, such as TEXT or VARCHAR, the row format …

  5. MySQL :: MySQL 8.4 Reference Manual :: 17.10 InnoDB Row Formats

    The row format of a table determines how its rows are physically stored, which in turn can affect the performance of queries and DML operations. As more rows fit into a single disk page, queries and …

  6. InnoDB Row Formats Overview | Server | MariaDB Documentation

    An overview of the four InnoDB row formats (REDUNDANT, COMPACT, DYNAMIC, COMPRESSED), comparing their storage efficiency and feature support.

  7. MySQL :: MySQL 8.4 Reference Manual :: 10.4.1 Optimizing Data ...

    Row Format InnoDB tables are created using the DYNAMIC row format by default. To use a row format other than DYNAMIC, configure innodb_default_row_format, or specify the ROW_FORMAT option …

  8. MySQL: Row format

    The size of a row is the size of all user data + 16 bytes overhead for each cell (for the Cell object). In the above example both the row (write_row() format) and the indexed cells (index_read() format) would …