Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
DigitalOcean support gave me this alternative query to run to find the problem tables:
SELECT
tab.table_schema AS database_name,
tab.table_name AS table_name,
tab.table_rows AS table_rows
FROM information_schema.tables tab
LEFT JOIN information_schema.table_constraints tco
ON (tab.table_schema = tco.table_schema
AND tab.table_name = tco.table_name
AND tco.constraint_type = 'PRIMARY KEY')
WHERE
tab.table_schema NOT IN ('mysql', 'information_schema', 'performance_schema', 'sys')
AND tco.constraint_type IS NULL
AND tab.table_type = 'BASE TABLE';
It sound one table mine didn’t. The difference between mine and this one is that mine was looking at INFORMATION_SCHEMA.COLUMNS.COLUMN_KEY whereas this one is looking at INFORMATION_SCHEMA.TABLE_CONSTRAINTS.CONSTRAINT_NAME
Hi @jimwigginton,
From you’ve written, I think you’ve corrected the missing primary keys, is that correct? As such you shouldn’t be getting such messages already or are you still getting them?
Hi there,
In addition to what has already been mentioned here, you can now add scalable storage to managed database clusters as shown in this video here:
Best,
Bobby