MySQL optimization using indexes

MySQL optimization using indexes

A database index is a data structure that improves the speed of operations in a table. Every time your web application runs a database query, the database will look through all the rows in your table to find those that … Continued
How can I empty a MySQL database?

How can I empty a MySQL database?

You can empty the content of a MySQL database via phpMyAdmin or SSH. We would highly recommend you to create a backup of your database (phpMyAdmin or SSH) prior making any changes to your databases. Using phpMyAdmin This is by far the easiest way to … Continued
How to reduce the size of a MySQL database

How to reduce the size of a MySQL database

MySQL database size limitations are applied for all shared hosting plans, in order to ensure fair resource usage. The limitations are as follows: StartUp – 500 MB GrowBig – 750 MB GoGeek – 1000 MB If a database on your … Continued
What is my MySQL Server Hostname?

What is my MySQL Server Hostname?

If you want to connect to your database from an application or a script on your XonHost hosting account, you can simply use localhost as MySQL hostname. If you’re accessing your database from a remote server, you need to grant it access … Continued
How can I import a large database to my account?

How can I import a large database to my account?

The phpMyAdmin tool can be used to import MySQL databases up to ~50MB. Files above that would cause the service to time out and the import will fail. If you need to import larger databases on your account, you can do that … Continued
How to Export MySQL Database

How to Export MySQL Database

There are two ways of exporting a MySQL database from your account: You can export it via the cPanel -> phpMyAdmin tool. You can find information how to do that in our tutorial here. You can perform the export by accessing your account via SSH. Our article explains … Continued
What databases can I use with my XonHost account?

What databases can I use with my XonHost account?

XonHost supports MySQL and PostgreSQL databases. With our standard hosting package you can have UNLIMITED MySQL and Postgres databases. You can manage your databases with a few mouse clicks through a web-based control panel (cPanel). For more information check our MySQL … Continued
How to change the password of a MySQL user in cPanel?

How to change the password of a MySQL user in cPanel?

The easiest way to change the password for your MySQL user is to: Log in your cPanel -> MySQL Databases. Find the corresponding database and see which is the user attached to it. For example we will consider that your database is called yourusername_database and … Continued