1MYSQL_FIX_EXTENSI(1) MariaDB Database System MYSQL_FIX_EXTENSI(1)
2
3
4
6 mysql_fix_extensions - normalize table file name extensions
7
9 mysql_fix_extensions data_dir
10
12 mysql_fix_extensions converts the extensions for MyISAM (or ISAM) table
13 files to their canonical forms. It looks for files with extensions
14 matching any lettercase variant of .frm, .myd, .myi, .isd, and .ism and
15 renames them to have extensions of .frm, .MYD, .MYI, .ISD, and .ISM,
16 respectively. This can be useful after transferring the files from a
17 system with case-insensitive file names (such as Windows) to a system
18 with case-sensitive file names.
19
20 Invoke mysql_fix_extensions like this, where data_dir is the path name
21 to the MySQL data directory.
22
23 shell> mysql_fix_extensions data_dir
24
26 Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc.,
27 2010-2019 MariaDB Foundation
28
29 This documentation is free software; you can redistribute it and/or
30 modify it only under the terms of the GNU General Public License as
31 published by the Free Software Foundation; version 2 of the License.
32
33 This documentation is distributed in the hope that it will be useful,
34 but WITHOUT ANY WARRANTY; without even the implied warranty of
35 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
36 General Public License for more details.
37
38 You should have received a copy of the GNU General Public License along
39 with the program; if not, write to the Free Software Foundation, Inc.,
40 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA or see
41 http://www.gnu.org/licenses/.
42
43
45 For more information, please refer to the MariaDB Knowledge Base,
46 available online at https://mariadb.com/kb/
47
49 MariaDB Foundation (http://www.mariadb.org/).
50
51
52
53MariaDB 10.5 27 June 2019 MYSQL_FIX_EXTENSI(1)