3650
MariaDBERRORNotableInnoDBHIGH confidence

InnoDB tablespace to drop was not found

Production Risk

Low — DROP fails; no data loss occurs.

How to reproduce
trigger — this will error
trigger — this will error
DROP TABLESPACE nonexistent_ts;

expected output

ERROR 3650 (HY000): InnoDB tablespace 'nonexistent_ts' not found for DROP.

Fix

Verify tablespace existence

Verify tablespace existence
SELECT TABLESPACE_NAME FROM information_schema.INNODB_TABLESPACES;

Why this works

Lists all InnoDB tablespaces to confirm the target name before dropping.

What not to do

Version notes

Sources
Official documentation ↗

MySQL 8.0 — 3650 ER_INNODB_DROP_TABLESPACE_NOT_FOUND

Content generated with AI assistance and reviewed for accuracy. Found an error? hello@errcodes.dev

← All MariaDB errors