What is the difference between MyISAM Static and MyISAM Dynamic?
In MyISAM static all the fields will have fixed width. The Dynamic MyISAM table will have fields like TEXT, BLOB, etc. to accommodate the data types with various lengths. MyISAM…
In MyISAM static all the fields will have fixed width. The Dynamic MyISAM table will have fields like TEXT, BLOB, etc. to accommodate the data types with various lengths. MyISAM…
Maximum size of Heal table can be controlled by MySQL config variable called max_heap_table_size.
It compress the MyISAM tables, which reduces their disk or memory usage.
We can login through this command: # /bin/mysql -h hostname -u <UserName> -p <password>
Every row of a table is identified uniquely by primary key. There is only one primary key for a table. Primary Key is also a candidate key. By common convention,…
TIMESTAMP column is updated with Zero when the table is created. UPDATE CURRENT_TIMESTAMP modifier updates the timestamp field to current time whenever there is a change in other fields of the table.
Following are the drivers available in MySQL: PHP Driver JDBCÂ Driver ODBC Driver C WRAPPER PYTHON Driver PERL Driver RUBY Driver CAP11PHP Driver Ado.net5.mxj
Storage engines are called table types and data is stored in files using various techniques. Technique involves: Storage mechanism Locking levels Indexing Capabilities and functions.
SELECT VERSION (); is used to get the current version of MySQL.
The string types are: SET BLOB ENUM CHAR TEXT VARCHAR