In PostgreSQL you can access meta-data about table names, etc. so you could write a program that will automatically scan through all the tables in a database.
How do you do this with MySQL?
Here's the scenerio: Want to scan through all the tables in a db, finding data that matches a specifc key value (ie. a specific user), and calculate what percentage of space (and total space) is being used by those matched (that user).
How do you do this with MySQL?
Here's the scenerio: Want to scan through all the tables in a db, finding data that matches a specifc key value (ie. a specific user), and calculate what percentage of space (and total space) is being used by those matched (that user).