Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for khurram.1987

A crashed table is for the MyISAM storage engine. MyISAM has two files, a .MYD (for MyISAM Data) and .MYI (for MyISAM Index). When you make a change to your table with INSERT/UPDATE/DELETE the data is flushed to disk, while the index is written to memory and not initially flushed …

Member Avatar for khurram.1987
0
250
Member Avatar for anita.kcx

You can also retrieve the information from the INFORMATION_SCHEMA.TABLES table.

Member Avatar for effectiveMySQL
0
2K

The End.