Jump to content

no more space in database


leostro

Recommended Posts

Hi all,

I have a prestashop instance hosted on OVH.

The plan is cheap and the database is little and after a while the db is full.

I launch that query to finds out heaviest table on mysql:

SELECT 
     table_schema as `Database`, 
     table_name AS `Table`, 
     round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` 
FROM information_schema.TABLES 
ORDER BY (data_length + index_length) DESC;

here the result of the query

mod140_guest                336.42
mod140_connections          334.47
mod140_connections_source   13.53
mod140_cart                 0.84
...

I do not know so well Prestashop database, I google for that tables on Google but I do not find so much infos...

I would like to delete some data from database to free up space and keep the actual plan

Can someone help me?

Edited by leostro (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...