Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
Operations Errors
On this page
ERROR 2625: Operation 'BACKUP DATABASE' can't be executed on internal database('') utilized by SingleStore.
Issue
This error occurs when you attempt to backup the cluster or memsql databases.
Solution
These databases are internal system databases, and as such, they cannot and do not need to be backed up.
ERROR: Partition’s table metadata are out of sync for table
Issue
The most common cause for this error is an ALTER TABLE query on a sharded table which ran partially but didn’t complete successfully.
Solutions
If the cause of the issue was a failed ALTER TABLE as described above:
-
Recreate the table.
This can be done by insert-selecting the data into a newly created table or reloading the data. For example: sql CREATE TABLE t_copy AS SELECT * FROM t; DROP TABLE t; ALTER TABLE t_ copy RENAME AS t;
Last modified: