how to list or view all databases from the mysql server? |
mysql> show databases; |
Post/View Answer
Post comment
Cancel
Thanks for your comment.!
Write a comment(Click here) ...
|
What is MySQL ? |
MySQL (pronounced 'my ess cue el') is an open source relational database management system (RDBMS) that uses Structured Query Language (SQL), the most popular language for adding, accessing, and processing data in a database. Because it is open source, anyone can download MySQL and tailor it to their needs in accordance with the general public license(http://www.gnu.org). its a very fast, multi-threaded, multi-user, and robust SQL (Structured Query Language) database server. |
How Switch (select or use) to a database? |
mysql> use databasename; |
How To see all the tables from a database of mysql server? |
mysql> show tables; |
What are some good ideas regarding user security in MySQL? |
There is no user without a password. There is no user without a user name. There is no user whose Host column contains % (which here indicates that the user can log in from anywhere in the network or the Internet). There are as few users as possible (in the ideal case only root) who have unrestricted access. |
Explain advantages of InnoDB over MyISAM? |
Row-level locking, transactions, foreign key constraints and crash recovery. |
Explain advantages of MyISAM over InnoDB? |
Much more conservative approach to disk space management - each MyISAM table is stored in a separate file, which could be compressed then with myisamchk if needed. With InnoDB the tables are stored in tablespace, and not much further optimization is possible. All data except for TEXT and BLOB can occupy 8,000 bytes at most. No full text indexing is available for InnoDB. |
|
The Main Features of MySQL? |
The following list describes some of the important characteristics of MySQL: |