-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilename.txt
1188 lines (1148 loc) · 49.3 KB
/
filename.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
这是我们翻译过程中所需要的所有文件的命名。大家在添加文件时,请直接从这里复制粘贴即可。
整理过程中,做了如下处理:
1. 将,、-、-、’、:等符号直接使用下划线替换;(由两个单词加连接线组成的合成词中间的横线保持不变,比如HP-UX、Third-Party等)
2. 将/、?、(、)等符合直接删除;
3. 删除多余的空格,让单词之间仅保留一个空格;
4. 经过测试,确认+可以出现中文件名称以及URL中,保留+号不变;
时间仓促,处理过程难免有所遗漏或者错误,如果发现问题,请及时通知我。我会尽快处理的。谢谢!
--D瓜哥 李君
------------------------------------------------------------------------
文件列表如下:
##_第一章
01.00.00_General_Information.md
01.01.00_About_This_Manual.md
01.02.00_Typographical_and_Syntax_Conventions.md
01.03.00_Overview_of_the_MySQL_Database_Management_System.md
01.03.01_What_is_MySQL.md
01.03.02_The_Main_Features_of_MySQL.md
01.03.03_History_of_MySQL.md
01.04.00_What_Is_New_in_MySQL_5.6.md
01.05.00_MySQL_Development_History.md
01.06.00_MySQL_Information_Sources.md
01.06.01_MySQL_Mailing_Lists.md
01.06.02_MySQL_Community_Support_at_the_MySQL_Forums.md
01.06.03_MySQL_Community_Support_on_Internet_Relay_Chat_IRC.md
01.06.04_MySQL_Enterprise.md
01.07.00_How_to_Report_Bugs_or_Problems.md
01.08.00_MySQL_Standards_Compliance.md
01.08.01_What_Standards_MySQL_Follows.md
01.08.02_Selecting_SQL_Modes.md
01.08.03_Running_MySQL_in_ANSI_Mode.md
01.08.04_MySQL_Extensions_to_Standard_SQL.md
01.08.05_MySQL_Differences_from_Standard_SQL.md
01.08.06_How_MySQL_Deals_with_Constraints.md
01.09.00_Credits.md
01.09.01_Contributors_to_MySQL.md
01.09.02_Documenters_and_translators.md
01.09.03_Packages_that_support_MySQL.md
01.09.04_Tools_that_were_used_to_create_MySQL.md
01.09.05_Supporters_of_MySQL.md
##_第二章
02.00.00_Installing_and_Upgrading_MySQL.md
02.01.00_General_Installation_Guidance.md
02.01.01_Operating_Systems_Supported_by_MySQL_Community_Server.md
02.01.02_Choosing_Which_MySQL_Distribution_to_Install.md
02.01.03_How_to_Get_MySQL.md
02.01.04_Verifying_Package_Integrity_Using_MD5_Checksums_or_GnuPG.md
02.01.05_Installation_Layouts.md
02.01.06_Compiler-Specific_Build_Characteristics.md
02.02.00_Installing_MySQL_on_UnixLinux_Using_Generic_Binaries.md
02.03.00_Installing_MySQL_on_Microsoft_Windows.md
02.03.01_MySQL_Installation_Layout_on_Microsoft_Windows.md
02.03.02_Choosing_An_Installation_Package.md
02.03.03_Installing_MySQL_on_Microsoft_Windows_Using_MySQL_Installer.md
02.03.04_MySQL_Notifier_for_Microsoft_Windows.md
02.03.05_Installing_MySQL_on_Microsoft_Windows_Using_a_noinstall_Zip_Archive.md
02.03.06_Troubleshooting_a_Microsoft_Windows_MySQL_Server_Installation.md
02.03.07_Upgrading_MySQL_on_Windows.md
02.03.08_Windows_Postinstallation_Procedures.md
02.04.00_Installing_MySQL_on_Mac_OS_X.md
02.04.01_General_Notes_on_Installing_MySQL_on_Mac_OS_X.md
02.04.02_Installing_MySQL_on_Mac_OS_X_Using_Native_Packages.md
02.04.03_Installing_the_MySQL_Startup_Item.md
02.04.04_Installing_and_Using_the_MySQL_Preference_Pane.md
02.04.05_Using_the_Bundled_MySQL_on_Mac_OS_X_Server.md
02.05.00_Installing_MySQL_on_Linux.md
02.05.01_Installing_MySQL_on_Linux_Using_RPM_Packages.md
02.05.02_Installing_MySQL_on_Linux_Using_Debian_Packages.md
02.05.03_Installing_MySQL_on_Linux_Using_Native_Package_Managers.md
02.06.00_Installing_MySQL_on_Solaris_and_OpenSolaris.md
02.06.01_Installing_MySQL_on_Solaris_Using_a_Solaris_PKG.md
02.06.02_Installing_MySQL_on_OpenSolaris_Using_IPS.md
02.07.00_Installing_MySQL_on_HP-UX.md
02.07.01_General_Notes_on_Installing_MySQL_on_HP-UX.md
02.07.02_Installing_MySQL_on_HP-UX_Using_DEPOT_Packages.md
02.08.00_Installing_MySQL_on_FreeBSD.md
02.09.00_Installing_MySQL_from_Source.md
02.09.01_MySQL_Layout_for_Source_Installation.md
02.09.02_Installing_MySQL_Using_a_Standard_Source_Distribution.md
02.09.03_Installing_MySQL_Using_a_Development_Source_Tree.md
02.09.04_MySQL_Source-Configuration_Options.md
02.09.05_Dealing_with_Problems_Compiling_MySQL.md
02.09.06_MySQL_Configuration_and_Third-Party_Tools.md
02.10.00_Postinstallation_Setup_and_Testing.md
02.10.01_Unix_Postinstallation_Procedures.md
02.10.02_Securing_the_Initial_MySQL_Accounts.md
02.11.00_Upgrading_or_Downgrading_MySQL.md
02.11.01_Upgrading_MySQL.md
02.11.02_Downgrading_MySQL.md
02.11.03_Checking_Whether_Tables_or_Indexes_Must_Be_Rebuilt.md
02.11.04_Rebuilding_or_Repairing_Tables_or_Indexes.md
02.11.05_Copying_MySQL_Databases_to_Another_Machine.md
02.12.00_Environment_Variables.md
02.13.00_Perl_Installation_Notes.md
##_第三章
03.00.00_Tutorial.md
03.01.00_Connecting_to_and_Disconnecting_from_the_Server.md
03.02.00_Entering_Queries.md
03.03.00_Creating_and_Using_a_Database.md
03.03.01_Creating_and_Selecting_a_Database.md
03.03.02_Creating_a_Table.md
03.03.03_Loading_Data_into_a_Table.md
03.03.04_Retrieving_Information_from_a_Table.md
03.04.00_Getting_Information_About_Databases_and_Tables.md
03.05.00_Using_mysql_in_Batch_Mode.md
03.06.00_Examples_of_Common_Queries.md
03.06.01_The_Maximum_Value_for_a_Column.md
03.06.02_The_Row_Holding_the_Maximum_of_a_Certain_Column.md
03.06.03_Maximum_of_Column_per_Group.md
03.06.04_The_Rows_Holding_the_Group-wise_Maximum_of_a_Certain_Column.md
03.06.05_Using_User-Defined_Variables.md
03.06.06_Using_Foreign_Keys.md
03.06.07_Searching_on_Two_Keys.md
03.06.08_Calculating_Visits_Per_Day.md
03.06.09_Using_AUTO_INCREMENT.md
03.07.00_Using_MySQL_with_Apache.md
##_第四章
04.00.00_MySQL_Programs.md
04.01.00_Overview_of_MySQL_Programs.md
04.02.00_Using_MySQL_Programs.md
04.02.01_Invoking_MySQL_Programs.md
04.02.02_Connecting_to_the_MySQL_Server.md
04.02.03_Specifying_Program_Options.md
04.02.04_Setting_Environment_Variables.md
04.03.00_MySQL_Server_and_Server-Startup_Programs.md
04.03.01_mysqld_The_MySQL_Server.md
04.03.02_mysqld_safe_MySQL_Server_Startup_Script.md
04.03.03_mysql.server_MySQL_Server_Startup_Script.md
04.03.04_mysqld_multi_Manage_Multiple_MySQL_Servers.md
04.04.00_MySQL_Installation-Related_Programs.md
04.04.01_comp_err_Compile_MySQL_Error_Message_File.md
04.04.02_mysqlbug_Generate_Bug_Report.md
04.04.03_mysql_install_db_Initialize_MySQL_Data_Directory.md
04.04.04_mysql_plugin_Configure_MySQL_Server_Plugins.md
04.04.05_mysql_secure_installation_Improve_MySQL_Installation_Security.md
04.04.06_mysql_tzinfo_to_sql_Load_the_Time_Zone_Tables.md
04.04.07_mysql_upgrade_Check_and_Upgrade_MySQL_Tables.md
04.05.00_MySQL_Client_Programs.md
04.05.01_mysql_The_MySQL_Command-Line_Tool.md
04.05.02_mysqladmin_Client_for_Administering_a_MySQL_Server.md
04.05.03_mysqlcheck_A_Table_Maintenance_Program.md
04.05.04_mysqldump_A_Database_Backup_Program.md
04.05.05_mysqlimport_A_Data_Import_Program.md
04.05.06_mysqlshow_Display_Database_Table_and_Column_Information.md
04.05.07_mysqlslap_Load_Emulation_Client.md
04.06.00_MySQL_Administrative_and_Utility_Programs.md
04.06.01_innochecksum_Offline_InnoDB_File_Checksum_Utility.md
04.06.02_myisam_ftdump_Display_Full-Text_Index_information.md
04.06.03_myisamchk_MyISAM_Table-Maintenance_Utility.md
04.06.04_myisamlog_Display_MyISAM_Log_File_Contents.md
04.06.05_myisampack_Generate_Compressed_Read-Only_MyISAM_Tables.md
04.06.06_mysql_config_editor_MySQL_Configuration_Utility.md
04.06.07_mysqlaccess_Client_for_Checking_Access_Privileges.md
04.06.08_mysqlbinlog_Utility_for_Processing_Binary_Log_Files.md
04.06.09_mysqldumpslow_Summarize_Slow_Query_Log_Files.md
04.06.10_mysqlhotcopy_A_Database_Backup_Program.md
04.06.11_mysql_convert_table_format_Convert_Tables_to_Use_a_Given_Storage_Engine.md
04.06.12_mysql_find_rows_Extract_SQL_Statements_from_Files.md
04.06.13_mysql_fix_extensions_Normalize_Table_File_Name_Extensions.md
04.06.14_mysql_setpermission_Interactively_Set_Permissions_in_Grant_Tables.md
04.06.15_mysql_waitpid_Kill_Process_and_Wait_for_Its_Termination.md
04.06.16_mysql_zap_Kill_Processes_That_Match_a_Pattern.md
04.07.00_MySQL_Program_Development_Utilities.md
04.07.01_msql2mysql_Convert_mSQL_Programs_for_Use_with_MySQL.md
04.07.02_mysql_config_Display_Options_for_Compiling_Clients.md
04.07.03_my_print_defaults_Display_Options_from_Option_Files.md
04.07.04_resolve_stack_dump_Resolve_Numeric_Stack_Trace_Dump_to_Symbols.md
04.08.00_Miscellaneous_Programs.md
04.08.01_perror_Explain_Error_Codes.md
04.08.02_replace_A_String-Replacement_Utility.md
04.08.03_resolveip_Resolve_Host_name_to_IP_Address_or_Vice_Versa.md
##_第五章
05.00.00_MySQL_Server_Administration.md
05.01.00_The_MySQL_Server.md
05.01.01_Server_Option_and_Variable_Reference.md
05.01.02_Server_Configuration_Defaults.md
05.01.03_Server_Command_Options.md
05.01.04_Server_System_Variables.md
05.01.05_Using_System_Variables.md
05.01.06_Server_Status_Variables.md
05.01.07_Server_SQL_Modes.md
05.01.08_Server_Plugins.md
05.01.09_IPv6_Support.md
05.01.10_Server-Side_Help.md
05.01.11_Server_Response_to_Signals.md
05.01.12_The_Shutdown_Process.md
05.02.00_MySQL_Server_Logs.md
05.02.01_Selecting_General_Query_and_Slow_Query_Log_Output_Destinations.md
05.02.02_The_Error_Log.md
05.02.03_The_General_Query_Log.md
05.02.04_The_Binary_Log.md
05.02.05_The_Slow_Query_Log.md
05.02.06_Server_Log_Maintenance.md
05.03.00_Managing_Disk_IO_and_File_Space_for_InnoDB_Tables.md
05.03.01_InnoDB_Disk_IO.md
05.03.02_File_Space_Management.md
05.03.03_InnoDB_Checkpoints.md
05.03.04_Defragmenting_a_Table.md
05.04.00_Creating_and_Using_InnoDB_Tables_and_Indexes.md
05.04.01_Managing_InnoDB_Tablespaces.md
05.04.02_Grouping_DML_Operations_with_Transactions.md
05.04.03_Converting_Tables_from_MyISAM_to_InnoDB.md
05.04.04_AUTO_INCREMENT_Handling_in_InnoDB.md
05.04.05_InnoDB_and_FOREIGN_KEY_Constraints.md
05.04.06_Working_with_InnoDB_Compressed_Tables.md
05.04.07_InnoDB_File-Format_Management.md
05.04.08_How_InnoDB_Stores_Variable-Length_Columns.md
05.05.00_Online_DDL_for_InnoDB_Tables.md
05.05.01_Overview_of_Online_DDL.md
05.05.02_Performance_and_Concurrency_Considerations_for_Online_DDL.md
05.05.03_SQL_Syntax_for_Online_DDL.md
05.05.04_Combining_or_Separating_DDL_Statements.md
05.05.05_Examples_of_Online_DDL.md
05.05.06_Implementation_Details_of_Online_DDL.md
05.05.07_How_Crash_Recovery_Works_with_Online_DDL.md
05.05.08_DDL_for_Partitioned_Tables.md
05.05.09_Limitations_of_Online_DDL.md
05.06.00_Running_Multiple_MySQL_Instances_on_One_Machine.md
05.06.01_Setting_Up_Multiple_Data_Directories.md
05.06.02_Running_Multiple_MySQL_Instances_on_Windows.md
05.06.03_Running_Multiple_MySQL_Instances_on_Unix.md
05.06.04_Using_Client_Programs_in_a_Multiple-Server_Environment.md
05.07.00_Tracing_mysqld_Using_DTrace.md
05.07.01_mysqld_DTrace_Probe_Reference.md
##_第六章
06.00.00_Security.md
06.01.00_General_Security_Issues.md
06.01.01_Security_Guidelines.md
06.01.02_Keeping_Passwords_Secure.md
06.01.03_Making_MySQL_Secure_Against_Attackers.md
06.01.04_Security-Related_mysqld_Options_and_Variables.md
06.01.05_How_to_Run_MySQL_as_a_Normal_User.md
06.01.06_Security_Issues_with_LOAD_DATA_LOCAL.md
06.01.07_Client_Programming_Security_Guidelines.md
06.02.00_The_MySQL_Access_Privilege_System.md
06.02.01_Privileges_Provided_by_MySQL.md
06.02.02_Privilege_System_Grant_Tables.md
06.02.03_Specifying_Account_Names.md
06.02.04_Access_Control_Stage_1_Connection_Verification.md
06.02.05_Access_Control_Stage_2_Request_Verification.md
06.02.06_When_Privilege_Changes_Take_Effect.md
06.02.07_Causes_of_Access-Denied_Errors.md
06.03.00_MySQL_User_Account_Management.md
06.03.01_User_Names_and_Passwords.md
06.03.02_Adding_User_Accounts.md
06.03.03_Removing_User_Accounts.md
06.03.04_Setting_Account_Resource_Limits.md
06.03.05_Assigning_Account_Passwords.md
06.03.06_Password_Expiration_and_Sandbox_Mode.md
06.03.07_Pluggable_Authentication.md
06.03.08_Proxy_Users.md
06.03.09_Using_SSL_for_Secure_Connections.md
06.03.10_Connecting_to_MySQL_Remotely_from_Windows_with_SSH.md
06.03.11_MySQL_Enterprise_Audit_Log_Plugin.md
06.03.12_SQL-Based_MySQL_Account_Activity_Auditing.md
##_第七章
07.00.00_Backup_and_Recovery.md
07.01.00_Backup_and_Recovery_Types.md
07.02.00_Database_Backup_Methods.md
07.03.00_Example_Backup_and_Recovery_Strategy.md
07.03.01_Establishing_a_Backup_Policy.md
07.03.02_Using_Backups_for_Recovery.md
07.03.03_Backup_Strategy_Summary.md
07.04.00_Using_mysqldump_for_Backups.md
07.04.01_Dumping_Data_in_SQL_Format_with_mysqldump.md
07.04.02_Reloading_SQL-Format_Backups.md
07.04.03_Dumping_Data_in_Delimited-Text_Format_with_mysqldump.md
07.04.04_Reloading_Delimited-Text_Format_Backups.md
07.04.05_mysqldump_Tips.md
07.05.00_Point-in-Time_Incremental_Recovery_Using_the_Binary_Log.md
07.05.01_Point-in-Time_Recovery_Using_Event_Times.md
07.05.02_Point-in-Time_Recovery_Using_Event_Positions.md
07.06.00_MyISAM_Table_Maintenance_and_Crash_Recovery.md
07.06.01_Using_myisamchk_for_Crash_Recovery.md
07.06.02_How_to_Check_MyISAM_Tables_for_Errors.md
07.06.03_How_to_Repair_MyISAM_Tables.md
07.06.04_MyISAM_Table_Optimization.md
07.06.05_Setting_Up_a_MyISAM_Table_Maintenance_Schedule.md
##_第八章
08.00.00_Optimization.md
08.01.00_Optimization_Overview.md
08.02.00_Optimizing_SQL_Statements.md
08.02.01_Optimizing_SELECT_Statements.md
08.02.02_Optimizing_DML_Statements.md
08.02.03_Optimizing_Database_Privileges.md
08.02.04_Optimizing_INFORMATION_SCHEMA_Queries.md
08.02.05_Other_Optimization_Tips.md
08.03.00_Optimization_and_Indexes.md
08.03.01_How_MySQL_Uses_Indexes.md
08.03.02_Using_Primary_Keys.md
08.03.03_Using_Foreign_Keys.md
08.03.04_Column_Indexes.md
08.03.05_Multiple-Column_Indexes.md
08.03.06_Verifying_Index_Usage.md
08.03.07_InnoDB_and_MyISAM_Index_Statistics_Collection.md
08.03.08_Comparison_of_B-Tree_and_Hash_Indexes.md
08.04.00_Optimizing_Database_Structure.md
08.04.01_Optimizing_Data_Size.md
08.04.02_Optimizing_MySQL_Data_Types.md
08.04.03_Optimizing_for_Many_Tables.md
08.05.00_Optimizing_for_InnoDB_Tables.md
08.05.01_Optimizing_Storage_Layout_for_InnoDB_Tables.md
08.05.02_Optimizing_InnoDB_Transaction_Management.md
08.05.03_Optimizing_InnoDB_Logging.md
08.05.04_Bulk_Data_Loading_for_InnoDB_Tables.md
08.05.05_Optimizing_InnoDB_Queries.md
08.05.06_Optimizing_InnoDB_DDL_Operations.md
08.05.07_Optimizing_InnoDB_Disk_IO.md
08.05.08_Optimizing_InnoDB_Configuration_Variables.md
08.05.09_Optimizing_InnoDB_for_Systems_with_Many_Tables.md
08.06.00_Optimizing_for_MyISAM_Tables.md
08.06.01_Optimizing_MyISAM_Queries.md
08.06.02_Bulk_Data_Loading_for_MyISAM_Tables.md
08.06.03_Speed_of_REPAIR_TABLE_Statements.md
08.07.00_Optimizing_for_MEMORY_Tables.md
08.08.00_Understanding_the_Query_Execution_Plan.md
08.08.01_Optimizing_Queries_with_EXPLAIN.md
08.08.02_EXPLAIN_Output_Format.md
08.08.03_EXPLAIN_EXTENDED_Output_Format.md
08.08.04_Estimating_Query_Performance.md
08.08.05_Controlling_the_Query_Optimizer.md
08.09.00_Buffering_and_Caching.md
08.09.01_The_InnoDB_Buffer_Pool.md
08.09.02_The_MyISAM_Key_Cache.md
08.09.03_The_MySQL_Query_Cache.md
08.09.04_Caching_of_Prepared_Statements_and_Stored_Programs.md
08.10.00_Optimizing_Locking_Operations.md
08.10.01_Internal_Locking_Methods.md
08.10.02_Table_Locking_Issues.md
08.10.03_Concurrent_Inserts.md
08.10.04_Metadata_Locking.md
08.10.05_External_Locking.md
08.11.00_Optimizing_the_MySQL_Server.md
08.11.01_System_Factors_and_Startup_Parameter_Tuning.md
08.11.02_Tuning_Server_Parameters.md
08.11.03_Optimizing_Disk_IO.md
08.11.04_Optimizing_Memory_Use.md
08.11.05_Optimizing_Network_Use.md
08.11.06_The_Thread_Pool_Plugin.md
08.12.00_Measuring_Performance_Benchmarking.md
08.12.01_Measuring_the_Speed_of_Expressions_and_Functions.md
08.12.02_The_MySQL_Benchmark_Suite.md
08.12.03_Using_Your_Own_Benchmarks.md
08.12.04_Measuring_Performance_with_performance_schema.md
08.12.05_Examining_Thread_Information.md
08.13.00_Internal_Details_of_MySQL_Optimizations.md
08.13.01_Range_Optimization.md
08.13.02_Index_Merge_Optimization.md
08.13.03_Engine_Condition_Pushdown_Optimization.md
08.13.04_Index_Condition_Pushdown_Optimization.md
08.13.05_Use_of_Index_Extensions.md
08.13.06_IS_NULL_Optimization.md
08.13.07_LEFT_JOIN_and_RIGHT_JOIN_Optimization.md
08.13.08_Nested-Loop_Join_Algorithms.md
08.13.09_Nested_Join_Optimization.md
08.13.10_Outer_Join_Simplification.md
08.13.11_Multi-Range_Read_Optimization.md
08.13.12_Block_Nested-Loop_and_Batched_Key_Access_Joins.md
08.13.13_ORDER_BY_Optimization.md
08.13.14_GROUP_BY_Optimization.md
08.13.15_DISTINCT_Optimization.md
08.13.16_Subquery_Optimization.md
##_第九章
09.00.00_Language_Structure.md
09.01.00_Literal_Values.md
09.01.01_String_Literals.md
09.01.02_Number_Literals.md
09.01.03_Date_and_Time_Literals.md
09.01.04_Hexadecimal_Literals.md
09.01.05_Boolean_Literals.md
09.01.06_Bit-Field_Literals.md
09.01.07_NULL_Values.md
09.02.00_Schema_Object_Names.md
09.02.01_Identifier_Qualifiers.md
09.02.02_Identifier_Case_Sensitivity.md
09.02.03_Mapping_of_Identifiers_to_File_Names.md
09.02.04_Function_Name_Parsing_and_Resolution.md
09.03.00_Reserved_Words.md
09.04.00_User-Defined_Variables.md
09.05.00_Expression_Syntax.md
09.06.00_Comment_Syntax.md
##_第十章
10.00.00_Globalization.md
10.01.00_Character_Set_Support.md
10.01.01_Character_Sets_and_Collations_in_General.md
10.01.02_Character_Sets_and_Collations_in_MySQL.md
10.01.03_Specifying_Character_Sets_and_Collations.md
10.01.04_Connection_Character_Sets_and_Collations.md
10.01.05_Configuring_the_Character_Set_and_Collation_for_Applications.md
10.01.06_Character_Set_for_Error_Messages.md
10.01.07_Collation_Issues.md
10.01.08_String_Repertoire.md
10.01.09_Operations_Affected_by_Character_Set_Support.md
10.01.10_Unicode_Support.md
10.01.11_Upgrading_from_Previous_to_Current_Unicode_Support.md
10.01.12_UTF-8_for_Metadata.md
10.01.13_Column_Character_Set_Conversion.md
10.01.14_Character_Sets_and_Collations_That_MySQL_Supports.md
10.02.00_Setting_the_Error_Message_Language.md
10.03.00_Adding_a_Character_Set.md
10.03.01_Character_Definition_Arrays.md
10.03.02_String_Collating_Support_for_Complex_Character_Sets.md
10.03.03_Multi-Byte_Character_Support_for_Complex_Character_Sets.md
10.04.00_Adding_a_Collation_to_a_Character_Set.md
10.04.01_Collation_Implementation_Types.md
10.04.02_Choosing_a_Collation_ID.md
10.04.03_Adding_a_Simple_Collation_to_an_8-Bit_Character_Set.md
10.04.04_Adding_a_UCA_Collation_to_a_Unicode_Character_Set.md
10.05.00_Character_Set_Configuration.md
10.06.00_MySQL_Server_Time_Zone_Support.md
10.06.01_Staying_Current_with_Time_Zone_Changes.md
10.06.02_Time_Zone_Leap_Second_Support.md
10.07.00_MySQL_Server_Locale_Support.md
##_第十一章
11.00.00_Data_Types.md
11.01.00_Data_Type_Overview.md
11.01.01_Numeric_Type_Overview.md
11.01.02_Date_and_Time_Type_Overview.md
11.01.03_String_Type_Overview.md
11.02.00_Numeric_Types.md
11.02.01_Integer_Types_Exact_Value_INTEGER_INT_SMALLINT_TINYINT_MEDIUMINT_BIGINT.md
11.02.02_Fixed-Point_Types_Exact_Value_DECIMAL_NUMERIC.md
11.02.03_Floating-Point_Types_Approximate_Value_FLOAT_DOUBLE.md
11.02.04_Bit-Value_Type_BIT.md
11.02.05_Numeric_Type_Attributes.md
11.02.06_Out-of-Range_and_Overflow_Handling.md
11.03.00_Date_and_Time_Types.md
11.03.01_The_DATE_DATETIME_and_TIMESTAMP_Types.md
11.03.02_The_TIME_Type.md
11.03.03_The_YEAR_Type.md
11.03.04_YEAR2_Limitations_and_Migrating_to_YEAR4.md
11.03.05_Automatic_Initialization_and_Updating_for_TIMESTAMP_and_DATETIME.md
11.03.06_Fractional_Seconds_in_Time_Values.md
11.03.07_Conversion_Between_Date_and_Time_Types.md
11.03.08_Two-Digit_Years_in_Dates.md
11.04.00_String_Types.md
11.04.01_The_CHAR_and_VARCHAR_Types.md
11.04.02_The_BINARY_and_VARBINARY_Types.md
11.04.03_The_BLOB_and_TEXT_Types.md
11.04.04_The_ENUM_Type.md
11.04.05_The_SET_Type.md
11.05.00_Data_Type_Default_Values.md
11.06.00_Data_Type_Storage_Requirements.md
11.07.00_Choosing_the_Right_Type_for_a_Column.md
11.08.00_Using_Data_Types_from_Other_Database_Engines.md
##_第十二章
12.00.00_Functions_and_Operators.md
12.01.00_Function_and_Operator_Reference.md
12.02.00_Type_Conversion_in_Expression_Evaluation.md
12.03.00_Operators.md
12.03.01_Operator_Precedence.md
12.03.02_Comparison_Functions_and_Operators.md
12.03.03_Logical_Operators.md
12.03.04_Assignment_Operators.md
12.04.00_Control_Flow_Functions.md
12.05.00_String_Functions.md
12.05.01_String_Comparison_Functions.md
12.05.02_Regular_Expressions.md
12.06.00_Numeric_Functions_and_Operators.md
12.06.01_Arithmetic_Operators.md
12.06.02_Mathematical_Functions.md
12.07.00_Date_and_Time_Functions.md
12.08.00_What_Calendar_Is_Used_By_MySQL.md
12.09.00_Full-Text_Search_Functions.md
12.09.01_Natural_Language_Full-Text_Searches.md
12.09.02_Boolean_Full-Text_Searches.md
12.09.03_Full-Text_Searches_with_Query_Expansion.md
12.09.04_Full-Text_Stopwords.md
12.09.05_Full-Text_Restrictions.md
12.09.06_Fine-Tuning_MySQL_Full-Text_Search.md
12.09.07_Adding_a_Collation_for_Full-Text_Indexing.md
12.10.00_Cast_Functions_and_Operators.md
12.11.00_XML_Functions.md
12.12.00_Bit_Functions.md
12.13.00_Encryption_and_Compression_Functions.md
12.14.00_Information_Functions.md
12.15.00_GTID_Functions.md
12.16.00_Miscellaneous_Functions.md
12.17.00_Functions_and_Modifiers_for_Use_with_GROUP_BY_Clauses.md
12.17.01_GROUP_BY_Aggregate_Functions.md
12.17.02_GROUP_BY_Modifiers.md
12.17.03_MySQL_Extensions_to_GROUP_BY.md
12.18.00_Spatial_Extensions.md
12.18.01_Introduction_to_MySQL_Spatial_Support.md
12.18.02_The_OpenGIS_Geometry_Model.md
12.18.03_Supported_Spatial_Data_Formats.md
12.18.04_Creating_a_Spatially_Enabled_MySQL_Database.md
12.18.05_Spatial_Analysis_Functions.md
12.18.06_Optimizing_Spatial_Analysis.md
12.18.07_MySQL_Conformance_and_Compatibility.md
12.19.00_Precision_Math.md
12.19.01_Types_of_Numeric_Values.md
12.19.02_DECIMAL_Data_Type_Changes.md
12.19.03_Expression_Handling.md
12.19.04_Rounding_Behavior.md
12.19.05_Precision_Math_Examples.md
##_第十三章
13.00.00_SQL_Statement_Syntax.md
13.01.00_Data_Definition_Statements.md
13.01.01_ALTER_DATABASE_Syntax.md
13.01.02_ALTER_EVENT_Syntax.md
13.01.03_ALTER_LOGFILE_GROUP_Syntax.md
13.01.04_ALTER_FUNCTION_Syntax.md
13.01.05_ALTER_PROCEDURE_Syntax.md
13.01.06_ALTER_SERVER_Syntax.md
13.01.07_ALTER_TABLE_Syntax.md
13.01.08_ALTER_TABLESPACE_Syntax.md
13.01.09_ALTER_VIEW_Syntax.md
13.01.10_CREATE_DATABASE_Syntax.md
13.01.11_CREATE_EVENT_Syntax.md
13.01.12_CREATE_FUNCTION_Syntax.md
13.01.13_CREATE_INDEX_Syntax.md
13.01.14_CREATE_LOGFILE_GROUP_Syntax.md
13.01.15_CREATE_PROCEDURE_and_CREATE_FUNCTION_Syntax.md
13.01.16_CREATE_SERVER_Syntax.md
13.01.17_CREATE_TABLE_Syntax.md
13.01.18_CREATE_TABLESPACE_Syntax.md
13.01.19_CREATE_TRIGGER_Syntax.md
13.01.20_CREATE_VIEW_Syntax.md
13.01.21_DROP_DATABASE_Syntax.md
13.01.22_DROP_EVENT_Syntax.md
13.01.23_DROP_FUNCTION_Syntax.md
13.01.24_DROP_INDEX_Syntax.md
13.01.25_DROP_LOGFILE_GROUP_Syntax.md
13.01.26_DROP_PROCEDURE_and_DROP_FUNCTION_Syntax.md
13.01.27_DROP_SERVER_Syntax.md
13.01.28_DROP_TABLE_Syntax.md
13.01.29_DROP_TABLESPACE_Syntax.md
13.01.30_DROP_TRIGGER_Syntax.md
13.01.31_DROP_VIEW_Syntax.md
13.01.32_RENAME_TABLE_Syntax.md
13.01.33_TRUNCATE_TABLE_Syntax.md
13.02.00_Data_Manipulation_Statements.md
13.02.01_CALL_Syntax.md
13.02.02_DELETE_Syntax.md
13.02.03_DO_Syntax.md
13.02.04_HANDLER_Syntax.md
13.02.05_INSERT_Syntax.md
13.02.06_LOAD_DATA_INFILE_Syntax.md
13.02.07_LOAD_XML_Syntax.md
13.02.08_REPLACE_Syntax.md
13.02.09_SELECT_Syntax.md
13.02.10_Subquery_Syntax.md
13.02.11_UPDATE_Syntax.md
13.03.00_MySQL_Transactional_and_Locking_Statements.md
13.03.01_START_TRANSACTION_COMMIT_and_ROLLBACK_Syntax.md
13.03.02_Statements_That_Cannot_Be_Rolled_Back.md
13.03.03_Statements_That_Cause_an_Implicit_Commit.md
13.03.04_SAVEPOINT_ROLLBACK_TO_SAVEPOINT_and_RELEASE_SAVEPOINT_Syntax.md
13.03.05_LOCK_TABLES_and_UNLOCK_TABLES_Syntax.md
13.03.06_SET_TRANSACTION_Syntax.md
13.03.07_XA_Transactions.md
13.04.00_Replication_Statements.md
13.04.01_SQL_Statements_for_Controlling_Master_Servers.md
13.04.02_SQL_Statements_for_Controlling_Slave_Servers.md
13.05.00_SQL_Syntax_for_Prepared_Statements.md
13.05.01_PREPARE_Syntax.md
13.05.02_EXECUTE_Syntax.md
13.05.03_DEALLOCATE_PREPARE_Syntax.md
13.06.00_MySQL_Compound-Statement_Syntax.md
13.06.01_BEGIN_..._END_Compound-Statement_Syntax.md
13.06.02_Statement_Label_Syntax.md
13.06.03_DECLARE_Syntax.md
13.06.04_Variables_in_Stored_Programs.md
13.06.05_Flow_Control_Statements.md
13.06.06_Cursors.md
13.06.07_Condition_Handling.md
13.07.00_Database_Administration_Statements.md
13.07.01_Account_Management_Statements.md
13.07.02_Table_Maintenance_Statements.md
13.07.03_Plugin_and_User-Defined_Function_Statements.md
13.07.04_SET_Syntax.md
13.07.05_SHOW_Syntax.md
13.07.06_Other_Administrative_Statements.md
13.08.00_MySQL_Utility_Statements.md
13.08.01_DESCRIBE_Syntax.md
13.08.02_EXPLAIN_Syntax.md
13.08.03_HELP_Syntax.md
13.08.04_USE_Syntax.md
##_第十四章
14.00.00_Storage_Engines.md
14.01.00_Setting_the_Storage_Engine.md
14.02.00_The_InnoDB_Storage_Engine.md
14.02.01_Getting_Started_with_InnoDB_Tables.md
14.02.02_Administering_InnoDB.md
14.02.03_InnoDB_Concepts_and_Architecture.md
14.02.04_InnoDB_Performance_Tuning_and_Troubleshooting.md
14.02.05_InnoDB_Features_for_Flexibility_Ease_of_Use_and_Reliability.md
14.02.06_InnoDB_Startup_Options_and_System_Variables.md
14.02.07_Limits_on_InnoDB_Tables.md
14.02.08_MySQL_and_the_ACID_Model.md
14.02.09_InnoDB_Integration_with_memcached.md
14.03.00_The_MyISAM_Storage_Engine.md
14.03.01_MyISAM_Startup_Options.md
14.03.02_Space_Needed_for_Keys.md
14.03.03_MyISAM_Table_Storage_Formats.md
14.03.04_MyISAM_Table_Problems.md
14.04.00_The_MEMORY_Storage_Engine.md
14.05.00_The_CSV_Storage_Engine.md
14.05.01_Repairing_and_Checking_CSV_Tables.md
14.05.02_CSV_Limitations.md
14.06.00_The_ARCHIVE_Storage_Engine.md
14.07.00_The_BLACKHOLE_Storage_Engine.md
14.08.00_The_MERGE_Storage_Engine.md
14.08.01_MERGE_Table_Advantages_and_Disadvantages.md
14.08.02_MERGE_Table_Problems.md
14.09.00_The_FEDERATED_Storage_Engine.md
14.09.01_FEDERATED_Storage_Engine_Overview.md
14.09.02_How_to_Create_FEDERATED_Tables.md
14.09.03_FEDERATED_Storage_Engine_Notes_and_Tips.md
14.09.04_FEDERATED_Storage_Engine_Resources.md
14.10.00_The_EXAMPLE_Storage_Engine.md
14.11.00_Other_Storage_Engines.md
14.12.00_Overview_of_MySQL_Storage_Engine_Architecture.md
14.12.01_Pluggable_Storage_Engine_Architecture.md
14.12.02_The_Common_Database_Server_Layer.md
##_第十五章
15.00.00_High_Availability_and_Scalability.md
15.01.00_Oracle_VM_Template_for_MySQL_Enterprise_Edition.md
15.02.00_Overview_of_MySQL_with_DRBDPacemakerCorosyncOracle_Linux.md
15.03.00_Overview_of_MySQL_with_Windows_Failover_Clustering.md
15.04.00_Using_MySQL_within_an_Amazon_EC2_Instance.md
15.04.01_Setting_Up_MySQL_on_an_EC2_AMI.md
15.04.02_EC2_Instance_Limitations.md
15.04.03_Deploying_a_MySQL_Database_Using_EC2.md
15.05.00_Using_ZFS_Replication.md
15.05.01_Using_ZFS_for_File_System_Replication.md
15.05.02_Configuring_MySQL_for_ZFS_Replication.md
15.05.03_Handling_MySQL_Recovery_with_ZFS.md
15.06.00_Using_MySQL_with_memcached.md
15.06.01_Installing_memcached.md
15.06.02_Using_memcached.md
15.06.03_Developing_a_memcached_Application.md
15.06.04_Getting_memcached_Statistics.md
15.06.05_memcached_FAQ.md
15.07.00_MySQL_Proxy.md
15.07.01_MySQL_Proxy_Supported_Platforms.md
15.07.02_Installing_MySQL_Proxy.md
15.07.03_MySQL_Proxy_Command_Options.md
15.07.04_MySQL_Proxy_Scripting.md
15.07.05_Using_MySQL_Proxy.md
15.07.06_MySQL_Proxy_FAQ.md
##_第十六章
16.00.00_Replication.md
16.01.00_Replication_Configuration.md
16.01.01_How_to_Set_Up_Replication.md
16.01.02_Replication_Formats.md
16.01.03_Replication_with_Global_Transaction_Identifiers.md
16.01.04_Replication_and_Binary_Logging_Options_and_Variables.md
16.01.05_Common_Replication_Administration_Tasks.md
16.02.00_Replication_Implementation.md
16.02.01_Replication_Implementation_Details.md
16.02.02_Replication_Relay_and_Status_Logs.md
16.02.03_How_Servers_Evaluate_Replication_Filtering_Rules.md
16.03.00_Replication_Solutions.md
16.03.01_Using_Replication_for_Backups.md
16.03.02_Using_Replication_with_Different_Master_and_Slave_Storage_Engines.md
16.03.03_Using_Replication_for_Scale-Out.md
16.03.04_Replicating_Different_Databases_to_Different_Slaves.md
16.03.05_Improving_Replication_Performance.md
16.03.06_Switching_Masters_During_Failover.md
16.03.07_Setting_Up_Replication_Using_SSL.md
16.03.08_Semisynchronous_Replication.md
16.03.09_Delayed_Replication.md
16.04.00_Replication_Notes_and_Tips.md
16.04.01_Replication_Features_and_Issues.md
16.04.02_Replication_Compatibility_Between_MySQL_Versions.md
16.04.03_Upgrading_a_Replication_Setup.md
16.04.04_Troubleshooting_Replication.md
16.04.05_How_to_Report_Replication_Bugs_or_Problems.md
##_第十七章
17.00.00_MySQL_Cluster_NDB_7.3.md
17.01.00_MySQL_Cluster_Overview.md
17.01.01_MySQL_Cluster_Core_Concepts.md
17.01.02_MySQL_Cluster_Nodes_Node_Groups_Replicas_and_Partitions.md
17.01.03_MySQL_Cluster_Hardware_Software_and_Networking_Requirements.md
17.01.04_MySQL_Cluster_Development_History.md
17.01.05_MySQL_Server_Using_InnoDB_Compared_with_MySQL_Cluster.md
17.01.06_Known_Limitations_of_MySQL_Cluster.md
17.02.00_MySQL_Cluster_Installation.md
17.02.01_The_MySQL_Cluster_Auto-Installer.md
17.02.02_Installation_of_MySQL_Cluster_on_Linux.md
17.02.03_Installing_MySQL_Cluster_on_Windows.md
17.02.04_Initial_Configuration_of_MySQL_Cluster.md
17.02.05_Initial_Startup_of_MySQL_Cluster.md
17.02.06_MySQL_Cluster_Example_with_Tables_and_Data.md
17.02.07_Safe_Shutdown_and_Restart_of_MySQL_Cluster.md
17.02.08_Upgrading_and_Downgrading_MySQL_Cluster_NDB_7.3.md
17.03.00_Configuration_of_MySQL_Cluster_NDB_7.3.md
17.03.01_Quick_Test_Setup_of_MySQL_Cluster.md
17.03.02_MySQL_Cluster_Configuration_Files.md
17.03.03_Overview_of_MySQL_Cluster_Configuration_Parameters.md
17.03.04_MySQL_Server_Options_and_Variables_for_MySQL_Cluster.md
17.03.05_Using_High-Speed_Interconnects_with_MySQL_Cluster.md
17.04.00_MySQL_Cluster_Programs.md
17.04.01_ndbd_The_MySQL_Cluster_Data_Node_Daemon.md
17.04.02_ndbinfo_select_all_Select_From_ndbinfo_Tables.md
17.04.03_ndbmtd_The_MySQL_Cluster_Data_Node_Daemon_Multi-Threaded.md
17.04.04_ndb_mgmd_The_MySQL_Cluster_Management_Server_Daemon.md
17.04.05_ndb_mgm_The_MySQL_Cluster_Management_Client.md
17.04.06_ndb_blob_tool_Check_and_Repair_BLOB_and_TEXT_columns_of_MySQL_Cluster_Tables.md
17.04.07_ndb_config_Extract_MySQL_Cluster_Configuration_Information.md
17.04.08_ndb_cpcd_Automate_Testing_for_NDB_Development.md
17.04.09_ndb_delete_all_Delete_All_Rows_from_an_NDB_Table.md
17.04.10_ndb_desc_Describe_NDB_Tables.md
17.04.11_ndb_drop_index_Drop_Index_from_an_NDB_Table.md
17.04.12_ndb_drop_table_Drop_an_NDB_Table.md
17.04.13_ndb_error_reporter_NDB_Error-Reporting_Utility.md
17.04.14_ndb_index_stat_NDB_Index_Statistics_Utility.md
17.04.15_ndb_print_backup_file_Print_NDB_Backup_File_Contents.md
17.04.16_ndb_print_schema_file_Print_NDB_Schema_File_Contents.md
17.04.17_ndb_print_sys_file_Print_NDB_System_File_Contents.md
17.04.18_ndbd_redo_log_reader_Check_and_Print_Content_of_Cluster_Redo_Log.md
17.04.19_ndb_restore_Restore_a_MySQL_Cluster_Backup.md
17.04.20_ndb_select_all_Print_Rows_from_an_NDB_Table.md
17.04.21_ndb_select_count_Print_Row_Counts_for_NDB_Tables.md
17.04.22_ndb_setup.py_Start_browser-based_Auto-Installer_for_MySQL_Cluster.md
17.04.23_ndb_show_tables_Display_List_of_NDB_Tables.md
17.04.24_ndb_size.pl_NDBCLUSTER_Size_Requirement_Estimator.md
17.04.25_ndb_waiter_Wait_for_MySQL_Cluster_to_Reach_a_Given_Status.md
17.04.26_Options_Common_to_MySQL_Cluster_Programs_Options_Common_to_MySQL_Cluster_Programs.md
17.05.00_Management_of_MySQL_Cluster.md
17.05.01_Summary_of_MySQL_Cluster_Start_Phases.md
17.05.02_Commands_in_the_MySQL_Cluster_Management_Client.md
17.05.03_Online_Backup_of_MySQL_Cluster.md
17.05.04_MySQL_Server_Usage_for_MySQL_Cluster.md
17.05.05_Performing_a_Rolling_Restart_of_a_MySQL_Cluster.md
17.05.06_Event_Reports_Generated_in_MySQL_Cluster.md
17.05.07_MySQL_Cluster_Log_Messages.md
17.05.08_MySQL_Cluster_Single_User_Mode.md
17.05.09_Quick_Reference_MySQL_Cluster_SQL_Statements.md
17.05.10_The_ndbinfo_MySQL_Cluster_Information_Database.md
17.05.11_MySQL_Cluster_Security_Issues.md
17.05.12_MySQL_Cluster_Disk_Data_Tables.md
17.05.13_Adding_MySQL_Cluster_Data_Nodes_Online.md
17.05.14_Distributed_MySQL_Privileges_for_MySQL_Cluster.md
17.05.15_NDB_API_Statistics_Counters_and_Variables.md
17.06.00_MySQL_Cluster_Replication.md
17.06.01_MySQL_Cluster_Replication_Abbreviations_and_Symbols.md
17.06.02_General_Requirements_for_MySQL_Cluster_Replication.md
17.06.03_Known_Issues_in_MySQL_Cluster_Replication.md
17.06.04_MySQL_Cluster_Replication_Schema_and_Tables.md
17.06.05_Preparing_the_MySQL_Cluster_for_Replication.md
17.06.06_Starting_MySQL_Cluster_Replication_Single_Replication_Channel.md
17.06.07_Using_Two_Replication_Channels_for_MySQL_Cluster_Replication.md
17.06.08_Implementing_Failover_with_MySQL_Cluster_Replication.md
17.06.09_MySQL_Cluster_Backups_With_MySQL_Cluster_Replication.md
17.06.10_MySQL_Cluster_Replication_Multi-Master_and_Circular_Replication.md
17.06.11_MySQL_Cluster_Replication_Conflict_Resolution.md
17.07.00_MySQL_Cluster_Release_Notes.md
##_第十八章
18.00.00_Partitioning.md
18.01.00_Overview_of_Partitioning_in_MySQL.md
18.02.00_Partitioning_Types.md
18.02.01_RANGE_Partitioning.md
18.02.02_LIST_Partitioning.md
18.02.03_COLUMNS_Partitioning.md
18.02.04_HASH_Partitioning.md
18.02.05_KEY_Partitioning.md
18.02.06_Subpartitioning.md
18.02.07_How_MySQL_Partitioning_Handles_NULL.md
18.03.00_Partition_Management.md
18.03.01_Management_of_RANGE_and_LIST_Partitions.md
18.03.02_Management_of_HASH_and_KEY_Partitions.md
18.03.03_Exchanging_Partitions_and_Subpartitions_with_Tables.md
18.03.04_Maintenance_of_Partitions.md
18.03.05_Obtaining_Information_About_Partitions.md
18.04.00_Partition_Pruning.md
18.05.00_Partition_Selection.md
18.06.00_Restrictions_and_Limitations_on_Partitioning.md
18.06.01_Partitioning_Keys_Primary_Keys_and_Unique_Keys.md
18.06.02_Partitioning_Limitations_Relating_to_Storage_Engines.md
18.06.03_Partitioning_Limitations_Relating_to_Functions.md
18.06.04_Partitioning_and_Locking.md
##_第十九章
19.00.00_Stored_Programs_and_Views.md
19.01.00_Defining_Stored_Programs.md
19.02.00_Using_Stored_Routines_Procedures_and_Functions.md
19.02.01_Stored_Routine_Syntax.md
19.02.02_Stored_Routines_and_MySQL_Privileges.md
19.02.03_Stored_Routine_Metadata.md
19.02.04_Stored_Procedures_Functions_Triggers_and_LAST_INSERT_ID.md
19.03.00_Using_Triggers.md
19.03.01_Trigger_Syntax_and_Examples.md
19.03.02_Trigger_Metadata.md
19.04.00_Using_the_Event_Scheduler.md
19.04.01_Event_Scheduler_Overview.md
19.04.02_Event_Scheduler_Configuration.md
19.04.03_Event_Syntax.md
19.04.04_Event_Metadata.md
19.04.05_Event_Scheduler_Status.md
19.04.06_The_Event_Scheduler_and_MySQL_Privileges.md
19.05.00_Using_Views.md
19.05.01_View_Syntax.md
19.05.02_View_Processing_Algorithms.md
19.05.03_Updatable_and_Insertable_Views.md
19.05.04_View_Metadata.md
19.06.00_Access_Control_for_Stored_Programs_and_Views.md
19.07.00_Binary_Logging_of_Stored_Programs.md
##_第二十章
20.00.00_INFORMATION_SCHEMA_Tables.md
20.01.00_The_INFORMATION_SCHEMA_CHARACTER_SETS_Table.md
20.02.00_The_INFORMATION_SCHEMA_COLLATIONS_Table.md
20.03.00_The_INFORMATION_SCHEMA_COLLATION_CHARACTER_SET_APPLICABILITY_Table.md
20.04.00_The_INFORMATION_SCHEMA_COLUMNS_Table.md
20.05.00_The_INFORMATION_SCHEMA_COLUMN_PRIVILEGES_Table.md
20.06.00_The_INFORMATION_SCHEMA_ENGINES_Table.md
20.07.00_The_INFORMATION_SCHEMA_EVENTS_Table.md
20.08.00_The_INFORMATION_SCHEMA_FILES_Table.md
20.09.00_The_INFORMATION_SCHEMA_GLOBAL_STATUS_and_SESSION_STATUS_Tables.md
20.10.00_The_INFORMATION_SCHEMA_GLOBAL_VARIABLES_and_SESSION_VARIABLES_Tables.md
20.11.00_The_INFORMATION_SCHEMA_KEY_COLUMN_USAGE_Table.md
20.12.00_The_INFORMATION_SCHEMA_OPTIMIZER_TRACE_Table.md
20.13.00_The_INFORMATION_SCHEMA_PARAMETERS_Table.md
20.14.00_The_INFORMATION_SCHEMA_PARTITIONS_Table.md
20.15.00_The_INFORMATION_SCHEMA_PLUGINS_Table.md
20.16.00_The_INFORMATION_SCHEMA_PROCESSLIST_Table.md
20.17.00_The_INFORMATION_SCHEMA_PROFILING_Table.md
20.18.00_The_INFORMATION_SCHEMA_REFERENTIAL_CONSTRAINTS_Table.md
20.19.00_The_INFORMATION_SCHEMA_ROUTINES_Table.md
20.20.00_The_INFORMATION_SCHEMA_SCHEMATA_Table.md
20.21.00_The_INFORMATION_SCHEMA_SCHEMA_PRIVILEGES_Table.md
20.22.00_The_INFORMATION_SCHEMA_STATISTICS_Table.md
20.23.00_The_INFORMATION_SCHEMA_TABLES_Table.md
20.24.00_The_INFORMATION_SCHEMA_TABLESPACES_Table.md
20.25.00_The_INFORMATION_SCHEMA_TABLE_CONSTRAINTS_Table.md
20.26.00_The_INFORMATION_SCHEMA_TABLE_PRIVILEGES_Table.md
20.27.00_The_INFORMATION_SCHEMA_TRIGGERS_Table.md
20.28.00_The_INFORMATION_SCHEMA_USER_PRIVILEGES_Table.md
20.29.00_The_INFORMATION_SCHEMA_VIEWS_Table.md
20.30.00_INFORMATION_SCHEMA_Tables_for_InnoDB.md
20.30.01_The_INFORMATION_SCHEMA_INNODB_CMP_and_INNODB_CMP_RESET_Tables.md
20.30.02_The_INFORMATION_SCHEMA_INNODB_CMP_PER_INDEX_and_INNODB_CMP_PER_INDEX_RESET_Tables.md
20.30.03_The_INFORMATION_SCHEMA_INNODB_CMPMEM_and_INNODB_CMPMEM_RESET_Tables.md
20.30.04_The_INFORMATION_SCHEMA_INNODB_TRX_Table.md
20.30.05_The_INFORMATION_SCHEMA_INNODB_LOCKS_Table.md
20.30.06_The_INFORMATION_SCHEMA_INNODB_LOCK_WAITS_Table.md
20.30.07_The_INFORMATION_SCHEMA_INNODB_SYS_TABLES_Table.md
20.30.08_The_INFORMATION_SCHEMA_INNODB_SYS_INDEXES_Table.md
20.30.09_The_INFORMATION_SCHEMA_INNODB_SYS_COLUMNS_Table.md
20.30.10_The_INFORMATION_SCHEMA_INNODB_SYS_FIELDS_Table.md
20.30.11_The_INFORMATION_SCHEMA_INNODB_SYS_FOREIGN_Table.md
20.30.12_The_INFORMATION_SCHEMA_INNODB_SYS_FOREIGN_COLS_Table.md
20.30.13_The_INFORMATION_SCHEMA_INNODB_SYS_TABLESTATS_View.md
20.30.14_The_INFORMATION_SCHEMA_INNODB_SYS_DATAFILES_Table.md
20.30.15_The_INFORMATION_SCHEMA_INNODB_SYS_TABLESPACES_Table.md
20.30.16_The_INFORMATION_SCHEMA_INNODB_BUFFER_PAGE_Table.md
20.30.17_The_INFORMATION_SCHEMA_INNODB_BUFFER_PAGE_LRU_Table.md
20.30.18_The_INFORMATION_SCHEMA_INNODB_BUFFER_POOL_STATS_Table.md
20.30.19_The_INFORMATION_SCHEMA_INNODB_METRICS_Table.md
20.30.20_The_INFORMATION_SCHEMA_INNODB_FT_CONFIG_Table.md
20.30.21_The_INFORMATION_SCHEMA_INNODB_FT_DEFAULT_STOPWORD_Table.md
20.30.22_The_INFORMATION_SCHEMA_INNODB_FT_INDEX_TABLE_Table.md
20.30.23_The_INFORMATION_SCHEMA_INNODB_FT_INDEX_CACHE_Table.md
20.30.24_The_INFORMATION_SCHEMA_INNODB_FT_DELETED_Table.md
20.30.25_The_INFORMATION_SCHEMA_INNODB_FT_BEING_DELETED_Table.md
20.31.00_Thread_Pool_INFORMATION_SCHEMA_Tables.md
20.31.01_The_INFORMATION_SCHEMA_TP_THREAD_STATE_Table.md
20.31.02_The_INFORMATION_SCHEMA_TP_THREAD_GROUP_STATE_Table.md
20.31.03_The_INFORMATION_SCHEMA_TP_THREAD_GROUP_STATS_Table.md
20.32.00_Extensions_to_SHOW_Statements.md
##_第二十一章
22.00.00_Connectors_and_APIs.md
21.01.00_Performance_Schema_Quick_Start.md
21.02.00_Performance_Schema_Configuration.md
21.02.01_Performance_Schema_Build_Configuration.md
21.02.02_Performance_Schema_Startup_Configuration.md
21.02.03_Performance_Schema_Runtime_Configuration.md
21.03.00_Performance_Schema_Queries.md
21.04.00_Performance_Schema_Instrument_Naming_Conventions.md
21.05.00_Performance_Schema_Status_Monitoring.md
21.06.00_Performance_Schema_Atom_and_Molecule_Events.md
21.07.00_Performance_Schema_Statement_Digests.md
21.08.00_Performance_Schema_General_Table_Characteristics.md
21.09.00_Performance_Schema_Table_Descriptions.md
21.09.01_Performance_Schema_Setup_Tables.md
21.09.02_Performance_Schema_Instance_Tables.md
21.09.03_Performance_Schema_Wait_Event_Tables.md
21.09.04_Performance_Schema_Stage_Event_Tables.md
21.09.05_Performance_Schema_Statement_Event_Tables.md
21.09.06_Performance_Schema_Connection_Tables.md
21.09.07_Performance_Schema_Connection_Attribute_Tables.md
21.09.08_Performance_Schema_Summary_Tables.md
21.09.09_Performance_Schema_Miscellaneous_Tables.md
21.10.00_Performance_Schema_Option_and_Variable_Reference.md
21.11.00_Performance_Schema_Command_Options.md
21.12.00_Performance_Schema_System_Variables.md
21.13.00_Performance_Schema_Status_Variables.md
21.14.00_Performance_Schema_and_Plugins.md
21.15.00_Using_the_Performance_Schema_to_Diagnose_Problems.md
##_第二十二章
22.00.00_Connectors_and_APIs.md
22.01.00_MySQL_ConnectorODBC.md
22.01.01_ConnectorODBC_Versions.md
22.01.02_ConnectorODBC_Introduction.md
22.01.03_ConnectorODBC_Installation.md
22.01.04_Configuring_ConnectorODBC.md
22.01.05_ConnectorODBC_Examples.md
22.01.06_ConnectorODBC_Reference.md
22.01.07_ConnectorODBC_Notes_and_Tips.md
22.01.08_ConnectorODBC_Support.md
22.02.00_MySQL_ConnectorNet.md
22.02.01_ConnectorNet_Versions.md
22.02.02_ConnectorNet_Installation.md
22.02.03_ConnectorNet_Visual_Studio_Integration.md
22.02.04_ConnectorNet_Tutorials.md
22.02.05_ConnectorNet_Programming.md
22.02.06_ConnectorNet_Connection_String_Options_Reference.md
22.02.07_ConnectorNet_Support_for_Windows_Store.md
22.02.08_EF_5_Support.md
22.02.09_ConnectorNet_API_Reference.md
22.02.10_ConnectorNet_Support.md
22.02.11_ConnectorNet_FAQ.md
22.03.00_MySQL_ConnectorJ.md
22.03.01_Overview_of_MySQL_ConnectorJ.md
22.03.02_ConnectorJ_Versions.md
22.03.03_ConnectorJ_Installation.md
22.03.04_ConnectorJ_Examples.md
22.03.05_ConnectorJ_JDBC_Reference.md
22.03.06_JDBC_Concepts.md
22.03.07_Connection_Pooling_with_ConnectorJ.md
22.03.08_Load_Balancing_with_ConnectorJ.md
22.03.09_Failover_with_ConnectorJ.md
22.03.10_Using_the_ConnectorJ_Interceptor_Classes.md
22.03.11_Using_ConnectorJ_with_Tomcat.md
22.03.12_Using_ConnectorJ_with_JBoss.md
22.03.13_Using_ConnectorJ_with_Spring.md
22.03.14_Using_ConnectorJ_with_GlassFish.md
22.03.15_Troubleshooting_ConnectorJ_Applications.md
22.03.16_Known_Issues_and_Limitations.md
22.03.17_ConnectorJ_Support.md
22.04.00_MySQL_ConnectorC++.md
22.04.01_How_to_Get_MySQL_ConnectorC++.md
22.04.02_Installing_MySQL_ConnectorC++_from_a_Binary_Distribution.md
22.04.03_Installing_MySQL_ConnectorC++_from_Source.md
22.04.04_Building_MySQL_ConnectorC++_Windows_Applications_with_Microsoft_Visual_Studio_3207.md
22.04.05_Building_MySQL_ConnectorC++_Linux_Applications_with_NetBeans.md
22.04.06_MySQL_ConnectorC++_Getting_Started_Usage_Examples.md
22.04.07_MySQL_ConnectorC++_Tutorials.md
22.04.08_MySQL_ConnectorC++_Debug_Tracing.md
22.04.09_MySQL_ConnectorC++_Usage_Notes.md
22.04.10_MySQL_ConnectorC++_Known_Bugs_and_Issues.md
22.04.11_MySQL_ConnectorC++_Support.md
22.05.00_MySQL_ConnectorC.md
22.05.01_MySQL_ConnectorC_Versions.md
22.05.02_MySQL_ConnectorC_Supported_Platforms.md
22.05.03_MySQL_ConnectorC_Distribution_Contents.md
22.05.04_Installing_MySQL_ConnectorC.md
22.05.05_Building_MySQL_ConnectorC_Applications.md
22.06.00_MySQL_ConnectorPython.md
22.06.01_Guidelines_for_Python_Developers.md
22.06.02_ConnectorPython_Versions.md
22.06.03_ConnectorPython_Installation.md
22.06.04_ConnectorPython_Coding_Examples.md
22.06.05_ConnectorPython_Tutorials.md
22.06.06_ConnectorPython_Connection_Arguments.md
22.06.07_ConnectorPython_API_Reference.md
22.07.00_libmysqld_the_Embedded_MySQL_Server_Library.md
22.07.01_Compiling_Programs_with_libmysqld.md
22.07.02_Restrictions_When_Using_the_Embedded_MySQL_Server.md
22.07.03_Options_with_the_Embedded_Server.md
22.07.04_Embedded_Server_Examples.md
22.08.00_MySQL_C_API.md
22.08.01_MySQL_C_API_Implementations.md
22.08.02_Simultaneous_MySQL_Server_and_MySQL_ConnectorC_Installations.md
22.08.03_Example_C_API_Client_Programs.md
22.08.04_Building_and_Running_C_API_Client_Programs.md
22.08.05_C_API_Data_Structures.md
22.08.06_C_API_Function_Overview.md
22.08.07_C_API_Function_Descriptions.md
22.08.08_C_API_Prepared_Statements.md
22.08.09_C_API_Prepared_Statement_Data_Structures.md
22.08.10_C_API_Prepared_Statement_Function_Overview.md
22.08.11_C_API_Prepared_Statement_Function_Descriptions.md
22.08.12_C_API_Threaded_Function_Descriptions.md