> For the complete documentation index, see [llms.txt](https://mariadb.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mariadb.com/docs/server/reference/error-codes/mariadb-error-codes-1100-to-1199/e1178.md).

# Error 1178: The storage engine for the table doesn't support

| Error Code | SQLSTATE | Error                       | Description                                         |
| ---------- | -------- | --------------------------- | --------------------------------------------------- |
| 1178       | 42000    | ER\_CHECK\_NOT\_IMPLEMENTED | The storage engine for the table doesn't support %s |

## Possible Causes and Solutions

MariaDB [storage engines](/docs/server/server-usage/storage-engines.md) differ in many ways, and not all operations are supported by each engine. Perhaps you don't need the intended operation for the engine, or perhaps you need a different storage engine. For example, [sequences](/docs/server/reference/sql-structure/sequences.md) don't support [analyze table](/docs/server/reference/sql-statements/table-statements/analyze-table.md), as it's an unnecessary operation on a sequence table, which only contains one row.

```
CREATE SEQUENCE s START WITH 100 INCREMENT BY 10;

ANALYZE TABLE s;
+--------+---------+----------+----------------------------------------------------------+
| Table  | Op      | Msg_type | Msg_text                                                 |
+--------+---------+----------+----------------------------------------------------------+
| test.s | analyze | note     | The storage engine for the table doesn't support analyze |
+--------+---------+----------+----------------------------------------------------------+
```

<sub>*This page is licensed: CC BY-SA / Gnu FDL*</sub>

{% @marketo/form formId="4316" %}
