How can Optimize one Databases

24x7server

Well-Known Member
Apr 17, 2013
1,912
99
78
India
cPanel Access Level
Root Administrator
Twitter
Hi,

What is the error that you are facing? Can you give us more information here, so we can take a look and check if that can be solved with guideliness and discussion or will require direct assistance.
 

Nirjonadda

Well-Known Member
May 8, 2013
752
28
78
cPanel Access Level
Root Administrator
Hi,

What is the error that you are facing? Can you give us more information here, so we can take a look and check if that can be solved with guideliness and discussion or will require direct assistance.
I like to Optimize one Databases, We can run an optimize for all databases with this command but not one database.

Code:
mysqlcheck -u root --auto-repair --optimize --all-databases
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,260
463
I like to Optimize one Databases, We can run an optimize for all databases with this command but not one database.
Hello,

You would simply replace the "--all-databases" part of that command with the actual database name. EX:

Code:
mysqlcheck --optimize database_name
Thank you.
 
  • Like
Reactions: Nirjonadda

Nirjonadda

Well-Known Member
May 8, 2013
752
28
78
cPanel Access Level
Root Administrator
Hello,

You would simply replace the "--all-databases" part of that command with the actual database name. EX:

Code:
mysqlcheck --optimize database_name
Thank you.
Also can be add repair? Is this command correct?

Code:
mysqlcheck -u root --auto-repair --optimize database_name
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,260
463
Hello,

Yes, you can add in additional flags such as "--auto-repair" if you prefer and understand the purpose of doing so.

Thank you.
 
  • Like
Reactions: Nirjonadda