MySQL - What Is "mysqladmin"?

What is "mysqladmin"?

Mysqlcheck is used to perform administrative tasks.

Following are the options:-

1. "mysqladmin shutdown" - Shuts down the server.

2. "mysqladmin ping" - Checks if the server is alive or not.

3. "mysqladmin status" - Displays several important server status values.

4. "mysqladmin version" - Displays version information of the server.

5. "mysqladmin create databaseName" - Creates a new database.

6. "mysqladmin drop databaseName" - Drops an existing database.
MySQL - Purpose of "mysqldump" command-line interface
Purpose of mysqldump command-line interface - Mysqldump is used by administrators or end users to export data from the server to files.......
MySQL - What is "mysqlshow"?
What is mysqlshow? - Mysqlshow is typically used by end users to see information on tables and columns......
MySQL - Concept of "mysqlimport" command-line interface
mysqlimport – It is used by administrators or end users to load data files into tables program tool to load data into tables.
Post your comment