We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
re: https://keboola.slack.com/archives/C035LGNK5/p1540223823000100
https://dev.mysql.com/doc/refman/5.7/en/information-schema-optimization.html
The text was updated successfully, but these errors were encountered:
It is caused by columns which requires OPEN_FULL_TABLE
OPEN_FULL_TABLE
If I fetch, it took few seconds:
SELECT TABLE_NAME, TABLE_SCHEMA, TABLE_TYPE, TABLE_COMMENT FROM INFORMATION_SCHEMA.TABLES as c WHERE c.TABLE_SCHEMA = 'dbname';
If I add TABLE_ROWS it takes about 4 minutes.
TABLE_ROWS
SELECT TABLE_NAME, TABLE_SCHEMA, TABLE_TYPE, TABLE_COMMENT, TABLE_ROWS FROM INFORMATION_SCHEMA.TABLES as c WHERE c.TABLE_SCHEMA = 'dbname';
There is about 700 tables in database mixture of MyISAM and Innodb.
Sorry, something went wrong.
for reference https://keboola.zendesk.com/agent/tickets/9340
No branches or pull requests
re: https://keboola.slack.com/archives/C035LGNK5/p1540223823000100
https://dev.mysql.com/doc/refman/5.7/en/information-schema-optimization.html
The text was updated successfully, but these errors were encountered: