Tuesday, September 4, 2012

Mysql Interview Questions and Answers

1. Explain the difference MyISAM Static  and MyISAM Dynamic.
Ans- in MyISAM static all the fields have fixed width. The Dynamic MyISAM would include fields such as TEXT, BLOB, etc. to accommodate the data types with various lengths. MyISAM Static would be easier to restore in case of corruption, since even though you might lose some data, you know exactly where to look for the beginning of the next record.

2. What does myisamchk do?
It compressed the MyISAM tables , which reduces their disk usage.
3. Explain advantages of  InnoDB over  MyISAM?
Row level  locking, transactions, foreign key constraints and crash recovery.

4. 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 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.TRhe COUNT(*)s execute slower than in MyISAM due to tablespace complexity.

5. What are HEAP tables in MySQL?
HEAP tables are in memory. They are usually used for high-speed temporary storage. No TEXT or BLOB fields are allowed within HEAP tables. You can only use the comparison operators = and <=>. HEAP tables do not support AUTO_INCREAMENT. Indexes must be NOT NULL.

6. How do you control the max size of a HEAP table?
MySQL config variable max_heap_table_size

7. What are CSV tables?
Those are the special tables, data for which is saves into comm.-separate values file. They cannot be indexed.


Mysql Interview questions



1.  How do you start and stop Mysql on Windows?
    Ans- Net start Mysql, net stop Mysql
2.   How do you start Mysql on Linux?
Ans- /etc/init.d/mysql start
3.  Explain the difference between mysql and mysqli interfaces in PHP?
Ans- Mysqli is the object oriented version of mysql library functions.
4.  What’s the default port MySql Server?
Ans- 3306
5.   What does tee command do in Mysql?
Ans- tee followed by a filename turns on MySQL logging to a specified file. It can be stopped by command note.
6.   Can you save your connection settings to a conf file?
Ans- Yes, and name it~/.my.conf. You might want to change the permissions on the file to 600, so that it’s not readable by others.
7.  How do you change a password for an existing user via mysqladmin?
Ans- mysqladmin
-u root –p password “newpassword”
8. Use mysqldump to create a copy of the database?
     Ans- mysqldump –h mysqlhost –u

9.   Have you ever used Mysql Administrator and Mysql Query Brower? Describe the tasks you accomplished with these tools.

10. What are some good ideas regarding user security in MySQL?
Ans- There is no user without a password. There is no user without a user name. There is no user whose Host column contains % .