-
Notifications
You must be signed in to change notification settings - Fork 110
/
filename.txt
1165 lines (1105 loc) · 45.5 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
01.00.00_General_Information
01.01.00_About_This_Manual
01.02.00_Typographical_and_Syntax_Conventions
01.03.00_Overview_of_the_MySQL_Database_Management_System
01.03.01_What_is_MySQL_
01.03.02_The_Main_Features_of_MySQL
01.03.03_History_of_MySQL
01.04.00_What_Is_New_in_MySQL_5.6
01.05.00_MySQL_Information_Sources
01.05.01_MySQL_Mailing_Lists
01.05.02_MySQL_Community_Support_at_the_MySQL_Forums
01.05.03_MySQL_Community_Support_on_Internet_Relay_Chat_IRC
01.05.04_MySQL_Enterprise
01.06.00_How_to_Report_Bugs_or_Problems
01.07.00_MySQL_Standards_Compliance
01.07.01_MySQL_Extensions_to_Standard_SQL
01.07.02_MySQL_Differences_from_Standard_SQL
01.07.03_How_MySQL_Deals_with_Constraints
01.08.00_Credits
01.08.01_Contributors_to_MySQL
01.08.02_Documenters_and_translators
01.08.03_Packages_that_support_MySQL
01.08.04_Tools_that_were_used_to_create_MySQL
01.08.05_Supporters_of_MySQL
02.00.00_Installing_and_Upgrading_MySQL
02.01.00_General_Installation_Guidance
02.01.01_Which_MySQL_Version_and_Distribution_to_Install
02.01.02_How_to_Get_MySQL
02.01.03_Verifying_Package_Integrity_Using_MD5_Checksums_or_GnuPG
02.01.04_Installation_Layouts
02.01.05_Compiler-Specific_Build_Characteristics
02.02.00_Installing_MySQL_on_Unix_Linux_Using_Generic_Binaries
02.03.00_Installing_MySQL_on_Microsoft_Windows
02.03.01_MySQL_Installation_Layout_on_Microsoft_Windows
02.03.02_Choosing_An_Installation_Package
02.03.03_Installing_MySQL_on_Microsoft_Windows_Using_MySQL_Installer
02.03.04_MySQL_Notifier
02.03.05_Installing_MySQL_on_Microsoft_Windows_Using_a_noinstall_Zip_Archive
02.03.06_Troubleshooting_a_Microsoft_Windows_MySQL_Server_Installation
02.03.07_Windows_Postinstallation_Procedures
02.03.08_Upgrading_MySQL_on_Windows
02.04.00_Installing_MySQL_on_OS_X
02.04.01_General_Notes_on_Installing_MySQL_on_OS_X
02.04.02_Installing_MySQL_on_OS_X_Using_Native_Packages
02.04.03_Installing_a_MySQL_Launch_Daemon
02.04.04_Installing_and_Using_the_MySQL_Preference_Pane
02.05.00_Installing_MySQL_on_Linux
02.05.01_Installing_MySQL_on_Linux_Using_the_MySQL_Yum_Repository
02.05.02_Replacing_a_Third-Party_Distribution_of_MySQL_Using_the_MySQL_Yum_Repository
02.05.03_Installing_MySQL_on_Linux_Using_the_MySQL_APT_Repository
02.05.04_Installing_MySQL_on_Linux_Using_the_MySQL_SLES_Repository
02.05.05_Installing_MySQL_on_Linux_Using_RPM_Packages_from_Oracle
02.05.06_Installing_MySQL_on_Linux_Using_Debian_Packages_from_Oracle
02.05.07_Installing_MySQL_on_Linux_from_the_Native_Software_Repositories
02.05.08_Installing_MySQL_on_Linux_with_docker
02.05.09_Installing_MySQL_on_Linux_with_juju
02.06.00_Installing_MySQL_Using_Unbreakable_Linux_Network_ULN
02.07.00_Installing_MySQL_on_Solaris_and_OpenSolaris
02.07.01_Installing_MySQL_on_Solaris_Using_a_Solaris_PKG
02.07.02_Installing_MySQL_on_OpenSolaris_Using_IPS
02.08.00_Installing_MySQL_on_FreeBSD
02.09.00_Installing_MySQL_from_Source
02.09.01_MySQL_Layout_for_Source_Installation
02.09.02_Installing_MySQL_Using_a_Standard_Source_Distribution
02.09.03_Installing_MySQL_Using_a_Development_Source_Tree
02.09.04_MySQL_Source-Configuration_Options
02.09.05_Dealing_with_Problems_Compiling_MySQL
02.09.06_MySQL_Configuration_and_Third-Party_Tools
02.10.00_Postinstallation_Setup_and_Testing
02.10.01_Initializing_the_Data_Directory
02.10.02_Starting_the_Server
02.10.03_Testing_the_Server
02.10.04_Securing_the_Initial_MySQL_Accounts
02.10.05_Starting_and_Stopping_MySQL_Automatically
02.11.00_Upgrading_or_Downgrading_MySQL
02.11.01_Upgrading_MySQL
02.11.02_Downgrading_MySQL
02.11.03_Checking_Whether_Tables_or_Indexes_Must_Be_Rebuilt
02.11.04_Rebuilding_or_Repairing_Tables_or_Indexes
02.11.05_Copying_MySQL_Databases_to_Another_Machine
02.12.00_Perl_Installation_Notes
02.12.01_Installing_Perl_on_Unix
02.12.02_Installing_ActiveState_Perl_on_Windows
02.12.03_Problems_Using_the_Perl_DBI_DBD_Interface
03.00.00_Tutorial
03.01.00_Connecting_to_and_Disconnecting_from_the_Server
03.02.00_Entering_Queries
03.03.00_Creating_and_Using_a_Database
03.03.01_Creating_and_Selecting_a_Database
03.03.02_Creating_a_Table
03.03.03_Loading_Data_into_a_Table
03.03.04_Retrieving_Information_from_a_Table
03.04.00_Getting_Information_About_Databases_and_Tables
03.05.00_Using_mysql_in_Batch_Mode
03.06.00_Examples_of_Common_Queries
03.06.01_The_Maximum_Value_for_a_Column
03.06.02_The_Row_Holding_the_Maximum_of_a_Certain_Column
03.06.03_Maximum_of_Column_per_Group
03.06.04_The_Rows_Holding_the_Group-wise_Maximum_of_a_Certain_Column
03.06.05_Using_User-Defined_Variables
03.06.06_Using_Foreign_Keys
03.06.07_Searching_on_Two_Keys
03.06.08_Calculating_Visits_Per_Day
03.06.09_Using_AUTO_INCREMENT
03.07.00_Using_MySQL_with_Apache
04.00.00_MySQL_Programs
04.01.00_Overview_of_MySQL_Programs
04.02.00_Using_MySQL_Programs
04.02.01_Invoking_MySQL_Programs
04.02.02_Connecting_to_the_MySQL_Server
04.02.03_Specifying_Program_Options
04.02.04_Using_Options_on_the_Command_Line
04.02.05_Program_Option_Modifiers
04.02.06_Using_Option_Files
04.02.07_Command-Line_Options_that_Affect_Option-File_Handling
04.02.08_Using_Options_to_Set_Program_Variables
04.02.09_Option_Defaults_Options_Expecting_Values_and_the_=_Sign
04.02.10_Setting_Environment_Variables
04.03.00_MySQL_Server_and_Server-Startup_Programs
04.03.01_mysqld_The_MySQL_Server
04.03.02_mysqld_safe_MySQL_Server_Startup_Script
04.03.03_mysql.server_MySQL_Server_Startup_Script
04.03.04_mysqld_multi_Manage_Multiple_MySQL_Servers
04.04.00_MySQL_Installation-Related_Programs
04.04.01_comp_err_Compile_MySQL_Error_Message_File
04.04.02_mysqlbug_Generate_Bug_Report
04.04.03_mysql_install_db_Initialize_MySQL_Data_Directory
04.04.04_mysql_plugin_Configure_MySQL_Server_Plugins
04.04.05_mysql_secure_installation_Improve_MySQL_Installation_Security
04.04.06_mysql_tzinfo_to_sql_Load_the_Time_Zone_Tables
04.04.07_mysql_upgrade_Check_and_Upgrade_MySQL_Tables
04.05.00_MySQL_Client_Programs
04.05.01_mysql_The_MySQL_Command-Line_Tool
04.05.02_mysqladmin_Client_for_Administering_a_MySQL_Server
04.05.03_mysqlcheck_A_Table_Maintenance_Program
04.05.04_mysqldump_A_Database_Backup_Program
04.05.05_mysqlimport_A_Data_Import_Program
04.05.06_mysqlshow_Display_Database_Table_and_Column_Information
04.05.07_mysqlslap_Load_Emulation_Client
04.06.00_MySQL_Administrative_and_Utility_Programs
04.06.01_innochecksum_Offline_InnoDB_File_Checksum_Utility
04.06.02_myisam_ftdump_Display_Full-Text_Index_information
04.06.03_myisamchk_MyISAM_Table-Maintenance_Utility
04.06.04_myisamlog_Display_MyISAM_Log_File_Contents
04.06.05_myisampack_Generate_Compressed_Read-Only_MyISAM_Tables
04.06.06_mysql_config_editor_MySQL_Configuration_Utility
04.06.07_mysqlaccess_Client_for_Checking_Access_Privileges
04.06.08_mysqlbinlog_Utility_for_Processing_Binary_Log_Files
04.06.09_mysqldumpslow_Summarize_Slow_Query_Log_Files
04.06.10_mysqlhotcopy_A_Database_Backup_Program
04.06.11_mysql_convert_table_format_Convert_Tables_to_Use_a_Given_Storage_Engine
04.06.12_mysql_find_rows_Extract_SQL_Statements_from_Files
04.06.13_mysql_fix_extensions_Normalize_Table_File_Name_Extensions
04.06.14_mysql_setpermission_Interactively_Set_Permissions_in_Grant_Tables
04.06.15_mysql_waitpid_Kill_Process_and_Wait_for_Its_Termination
04.06.16_mysql_zap_Kill_Processes_That_Match_a_Pattern
04.07.00_MySQL_Program_Development_Utilities
04.07.01_msql2mysql_Convert_mSQL_Programs_for_Use_with_MySQL
04.07.02_mysql_config_Display_Options_for_Compiling_Clients
04.07.03_my_print_defaults_Display_Options_from_Option_Files
04.07.04_resolve_stack_dump_Resolve_Numeric_Stack_Trace_Dump_to_Symbols
04.08.00_Miscellaneous_Programs
04.08.01_perror_Explain_Error_Codes
04.08.02_replace_A_String-Replacement_Utility
04.08.03_resolveip_Resolve_Host_name_to_IP_Address_or_Vice_Versa
04.09.00_MySQL_Program_Environment_Variables
05.00.00_MySQL_Server_Administration
05.01.00_The_MySQL_Server
05.01.01_Configuring_the_Server
05.01.02_Server_Configuration_Defaults
05.01.03_Server_Option_and_Variable_Reference
05.01.04_Server_Command_Options
05.01.05_Server_System_Variables
05.01.06_Using_System_Variables
05.01.07_Server_Status_Variables
05.01.08_Server_SQL_Modes
05.01.09_IPv6_Support
05.01.10_Server-Side_Help
05.01.11_Server_Response_to_Signals
05.01.12_The_Server_Shutdown_Process
05.02.00_The_MySQL_Data_Directory
05.03.00_The_mysql_System_Database
05.04.00_MySQL_Server_Logs
05.04.01_Selecting_General_Query_and_Slow_Query_Log_Output_Destinations
05.04.02_The_Error_Log
05.04.03_The_General_Query_Log
05.04.04_The_Binary_Log
05.04.05_The_Slow_Query_Log
05.04.06_The_DDL_Log
05.04.07_Server_Log_Maintenance
05.05.00_MySQL_Server_Plugins
05.05.01_Server_Plugins_Available
05.05.02_Installing_and_Uninstalling_Plugins
05.05.03_Obtaining_Server_Plugin_Information
05.05.04_MySQL_Enterprise_Thread_Pool
05.06.00_Running_Multiple_MySQL_Instances_on_One_Machine
05.06.01_Setting_Up_Multiple_Data_Directories
05.06.02_Running_Multiple_MySQL_Instances_on_Windows
05.06.03_Running_Multiple_MySQL_Instances_on_Unix
05.06.04_Using_Client_Programs_in_a_Multiple-Server_Environment
05.07.00_Tracing_mysqld_Using_DTrace
05.07.01_mysqld_DTrace_Probe_Reference
06.00.00_Security
06.01.00_General_Security_Issues
06.01.01_Security_Guidelines
06.01.02_Keeping_Passwords_Secure
06.01.03_Making_MySQL_Secure_Against_Attackers
06.01.04_Security-Related_mysqld_Options_and_Variables
06.01.05_How_to_Run_MySQL_as_a_Normal_User
06.01.06_Security_Issues_with_LOAD_DATA_LOCAL
06.01.07_Client_Programming_Security_Guidelines
06.02.00_The_MySQL_Access_Privilege_System
06.02.01_Privileges_Provided_by_MySQL
06.02.02_Grant_Tables
06.02.03_Specifying_Account_Names
06.02.04_Access_Control_Stage_1:_Connection_Verification
06.02.05_Access_Control_Stage_2:_Request_Verification
06.02.06_When_Privilege_Changes_Take_Effect
06.02.07_Troubleshooting_Problems_Connecting_to_MySQL
06.03.00_MySQL_User_Account_Management
06.03.01_User_Names_and_Passwords
06.03.02_Adding_User_Accounts
06.03.03_Removing_User_Accounts
06.03.04_Setting_Account_Resource_Limits
06.03.05_Assigning_Account_Passwords
06.03.06_Password_Expiration_and_Sandbox_Mode
06.03.07_Pluggable_Authentication
06.03.08_Proxy_Users
06.03.09_SQL-Based_MySQL_Account_Activity_Auditing
06.04.00_Using_Secure_Connections
06.04.01_OpenSSL_Versus_yaSSL
06.04.02_Building_MySQL_with_Support_for_Secure_Connections
06.04.03_Secure_Connection_Protocols_and_Ciphers
06.04.04_Configuring_MySQL_to_Use_Secure_Connections
06.04.05_Command_Options_for_Secure_Connections
06.04.06_Creating_SSL_and_RSA_Certificates_and_Keys
06.04.07_Connecting_to_MySQL_Remotely_from_Windows_with_SSH
06.05.00_Security_Plugins
06.05.01_Authentication_Plugins
06.05.02_The_Connection-Control_Plugin
06.05.03_The_Password_Validation_Plugin
06.05.04_MySQL_Enterprise_Audit
06.05.05_MySQL_Enterprise_Firewall
07.00.00_Backup_and_Recovery
07.01.00_Backup_and_Recovery_Types
07.02.00_Database_Backup_Methods
07.03.00_Example_Backup_and_Recovery_Strategy
07.03.01_Establishing_a_Backup_Policy
07.03.02_Using_Backups_for_Recovery
07.03.03_Backup_Strategy_Summary
07.04.00_Using_mysqldump_for_Backups
07.04.01_Dumping_Data_in_SQL_Format_with_mysqldump
07.04.02_Reloading_SQL-Format_Backups
07.04.03_Dumping_Data_in_Delimited-Text_Format_with_mysqldump
07.04.04_Reloading_Delimited-Text_Format_Backups
07.04.05_mysqldump_Tips
07.05.00_Point-in-Time_Incremental_Recovery_Using_the_Binary_Log
07.05.01_Point-in-Time_Recovery_Using_Event_Times
07.05.02_Point-in-Time_Recovery_Using_Event_Positions
07.06.00_MyISAM_Table_Maintenance_and_Crash_Recovery
07.06.01_Using_myisamchk_for_Crash_Recovery
07.06.02_How_to_Check_MyISAM_Tables_for_Errors
07.06.03_How_to_Repair_MyISAM_Tables
07.06.04_MyISAM_Table_Optimization
07.06.05_Setting_Up_a_MyISAM_Table_Maintenance_Schedule
08.00.00_Optimization
08.01.00_Optimization_Overview
08.02.00_Optimizing_SQL_Statements
08.02.01_Optimizing_SELECT_Statements
08.02.02_Optimizing_Data_Change_Statements
08.02.03_Optimizing_Database_Privileges
08.02.04_Optimizing_INFORMATION_SCHEMA_Queries
08.02.05_Other_Optimization_Tips
08.03.00_Optimization_and_Indexes
08.03.01_How_MySQL_Uses_Indexes
08.03.02_Using_Primary_Keys
08.03.03_Using_Foreign_Keys
08.03.04_Column_Indexes
08.03.05_Multiple-Column_Indexes
08.03.06_Verifying_Index_Usage
08.03.07_InnoDB_and_MyISAM_Index_Statistics_Collection
08.03.08_Comparison_of_B-Tree_and_Hash_Indexes
08.04.00_Optimizing_Database_Structure
08.04.01_Optimizing_Data_Size
08.04.02_Optimizing_MySQL_Data_Types
08.04.03_Optimizing_for_Many_Tables
08.04.04_Internal_Temporary_Table_Use_in_MySQL
08.05.00_Optimizing_for_InnoDB_Tables
08.05.01_Optimizing_Storage_Layout_for_InnoDB_Tables
08.05.02_Optimizing_InnoDB_Transaction_Management
08.05.03_Optimizing_InnoDB_Read-Only_Transactions
08.05.04_Optimizing_InnoDB_Redo_Logging
08.05.05_Bulk_Data_Loading_for_InnoDB_Tables
08.05.06_Optimizing_InnoDB_Queries
08.05.07_Optimizing_InnoDB_DDL_Operations
08.05.08_Optimizing_InnoDB_Disk_I_O
08.05.09_Optimizing_InnoDB_Configuration_Variables
08.05.10_Optimizing_InnoDB_for_Systems_with_Many_Tables
08.06.00_Optimizing_for_MyISAM_Tables
08.06.01_Optimizing_MyISAM_Queries
08.06.02_Bulk_Data_Loading_for_MyISAM_Tables
08.06.03_Speed_of_REPAIR_TABLE_Statements
08.07.00_Optimizing_for_MEMORY_Tables
08.08.00_Understanding_the_Query_Execution_Plan
08.08.01_Optimizing_Queries_with_EXPLAIN
08.08.02_EXPLAIN_Output_Format
08.08.03_EXPLAIN_EXTENDED_Output_Format
08.08.04_Estimating_Query_Performance
08.09.00_Controlling_the_Query_Optimizer
08.09.01_Controlling_Query_Plan_Evaluation
08.09.02_Controlling_Switchable_Optimizations
08.09.03_Index_Hints
08.10.00_Buffering_and_Caching
08.10.01_InnoDB_Buffer_Pool_Optimization
08.10.02_The_MyISAM_Key_Cache
08.10.03_The_MySQL_Query_Cache
08.10.04_Caching_of_Prepared_Statements_and_Stored_Programs
08.11.00_Optimizing_Locking_Operations
08.11.01_Internal_Locking_Methods
08.11.02_Table_Locking_Issues
08.11.03_Concurrent_Inserts
08.11.04_Metadata_Locking
08.11.05_External_Locking
08.12.00_Optimizing_the_MySQL_Server
08.12.01_System_Factors
08.12.02_Optimizing_Disk_I_O
08.12.03_Using_Symbolic_Links
08.12.04_Optimizing_Memory_Use
08.12.05_Optimizing_Network_Use
08.13.00_Measuring_Performance_Benchmarking
08.13.01_Measuring_the_Speed_of_Expressions_and_Functions
08.13.02_The_MySQL_Benchmark_Suite
08.13.03_Using_Your_Own_Benchmarks
08.13.04_Measuring_Performance_with_performance_schema
08.14.00_Examining_Thread_Information
08.14.01_Thread_Command_Values
08.14.02_General_Thread_States
08.14.03_Delayed-Insert_Thread_States
08.14.04_Query_Cache_Thread_States
08.14.05_Replication_Master_Thread_States
08.14.06_Replication_Slave_I_O_Thread_States
08.14.07_Replication_Slave_SQL_Thread_States
08.14.08_Replication_Slave_Connection_Thread_States
08.14.09_MySQL_Cluster_Thread_States
08.14.10_Event_Scheduler_Thread_States
09.00.00_Language_Structure
09.01.00_Literal_Values
09.01.01_String_Literals
09.01.02_Number_Literals
09.01.03_Date_and_Time_Literals
09.01.04_Hexadecimal_Literals
09.01.05_Bit-Value_Literals
09.01.06_Boolean_Literals
09.01.07_NULL_Values
09.02.00_Schema_Object_Names
09.02.01_Identifier_Qualifiers
09.02.02_Identifier_Case_Sensitivity
09.02.03_Mapping_of_Identifiers_to_File_Names
09.02.04_Function_Name_Parsing_and_Resolution
09.03.00_Keywords_and_Reserved_Words
09.04.00_User-Defined_Variables
09.05.00_Expression_Syntax
09.06.00_Comment_Syntax
10.00.00_Globalization
10.01.00_Character_Set_Support
10.01.01_Character_Sets_and_Collations_in_General
10.01.02_Character_Sets_and_Collations_in_MySQL
10.01.03_Specifying_Character_Sets_and_Collations
10.01.04_Connection_Character_Sets_and_Collations
10.01.05_Configuring_Application_Character_Set_and_Collation
10.01.06_Error_Message_Character_Set
10.01.07_Column_Character_Set_Conversion
10.01.08_Collation_Issues
10.01.09_Unicode_Support
10.01.10_Supported_Character_Sets_and_Collations
10.02.00_Setting_the_Error_Message_Language
10.03.00_Adding_a_Character_Set
10.03.01_Character_Definition_Arrays
10.03.02_String_Collating_Support_for_Complex_Character_Sets
10.03.03_Multi-Byte_Character_Support_for_Complex_Character_Sets
10.04.00_Adding_a_Collation_to_a_Character_Set
10.04.01_Collation_Implementation_Types
10.04.02_Choosing_a_Collation_ID
10.04.03_Adding_a_Simple_Collation_to_an_8-Bit_Character_Set
10.04.04_Adding_a_UCA_Collation_to_a_Unicode_Character_Set
10.05.00_Character_Set_Configuration
10.06.00_MySQL_Server_Time_Zone_Support
10.06.01_Staying_Current_with_Time_Zone_Changes
10.06.02_Time_Zone_Leap_Second_Support
10.07.00_MySQL_Server_Locale_Support
11.00.00_Data_Types
11.01.00_Data_Type_Overview
11.01.01_Numeric_Type_Overview
11.01.02_Date_and_Time_Type_Overview
11.01.03_String_Type_Overview
11.02.00_Numeric_Types
11.02.01_Integer_Types_Exact_Value-INTEGER_INT_SMALLINT_TINYINT_MEDIUMINT_BIGINT
11.02.02_Fixed-Point_Types_Exact_Value-DECIMAL_NUMERIC
11.02.03_Floating-Point_Types_Approximate_Value-FLOAT_DOUBLE
11.02.04_Bit-Value_Type-BIT
11.02.05_Numeric_Type_Attributes
11.02.06_Out-of-Range_and_Overflow_Handling
11.03.00_Date_and_Time_Types
11.03.01_The_DATE_DATETIME_and_TIMESTAMP_Types
11.03.02_The_TIME_Type
11.03.03_The_YEAR_Type
11.03.04_YEAR2_Limitations_and_Migrating_to_YEAR4
11.03.05_Automatic_Initialization_and_Updating_for_TIMESTAMP_and_DATETIME
11.03.06_Fractional_Seconds_in_Time_Values
11.03.07_Conversion_Between_Date_and_Time_Types
11.03.08_Two-Digit_Years_in_Dates
11.04.00_String_Types
11.04.01_The_CHAR_and_VARCHAR_Types
11.04.02_The_BINARY_and_VARBINARY_Types
11.04.03_The_BLOB_and_TEXT_Types
11.04.04_The_ENUM_Type
11.04.05_The_SET_Type
11.05.00_Extensions_for_Spatial_Data
11.05.01_Spatial_Data_Types
11.05.02_The_OpenGIS_Geometry_Model
11.05.03_Using_Spatial_Data
11.06.00_Data_Type_Default_Values
11.07.00_Data_Type_Storage_Requirements
11.08.00_Choosing_the_Right_Type_for_a_Column
11.09.00_Using_Data_Types_from_Other_Database_Engines
12.00.00_Functions_and_Operators
12.01.00_Function_and_Operator_Reference
12.02.00_Type_Conversion_in_Expression_Evaluation
12.03.00_Operators
12.03.01_Operator_Precedence
12.03.02_Comparison_Functions_and_Operators
12.03.03_Logical_Operators
12.03.04_Assignment_Operators
12.04.00_Control_Flow_Functions
12.05.00_String_Functions
12.05.01_String_Comparison_Functions
12.05.02_Regular_Expressions
12.05.03_Character_Set_and_Collation_of_Function_Results
12.06.00_Numeric_Functions_and_Operators
12.06.01_Arithmetic_Operators
12.06.02_Mathematical_Functions
12.07.00_Date_and_Time_Functions
12.08.00_What_Calendar_Is_Used_By_MySQL_
12.09.00_Full-Text_Search_Functions
12.09.01_Natural_Language_Full-Text_Searches
12.09.02_Boolean_Full-Text_Searches
12.09.03_Full-Text_Searches_with_Query_Expansion
12.09.04_Full-Text_Stopwords
12.09.05_Full-Text_Restrictions
12.09.06_Fine-Tuning_MySQL_Full-Text_Search
12.09.07_Adding_a_Collation_for_Full-Text_Indexing
12.10.00_Cast_Functions_and_Operators
12.11.00_XML_Functions
12.12.00_Bit_Functions_and_Operators
12.13.00_Encryption_and_Compression_Functions
12.14.00_Information_Functions
12.15.00_Spatial_Analysis_Functions
12.15.01_Spatial_Function_Reference
12.15.02_Argument_Handling_by_Spatial_Functions
12.15.03_Functions_That_Create_Geometry_Values_from_WKT_Values
12.15.04_Functions_That_Create_Geometry_Values_from_WKB_Values
12.15.05_MySQL-Specific_Functions_That_Create_Geometry_Values
12.15.06_Geometry_Format_Conversion_Functions
12.15.07_Geometry_Property_Functions
12.15.08_Spatial_Operator_Functions
12.15.09_Functions_That_Test_Spatial_Relations_Between_Geometry_Objects
12.16.00_Functions_Used_with_Global_Transaction_IDs
12.17.00_MySQL_Enterprise_Encryption_Functions
12.17.01_Enterprise_Encryption_Installation
12.17.02_Enterprise_Encryption_Usage_and_Examples
12.17.03_Enterprise_Encryption_Function_Reference
12.17.04_Enterprise_Encryption_Function_Descriptions
12.18.00_Aggregate_GROUP_BY_Functions
12.18.01_Aggregate_GROUP_BY_Function_Descriptions
12.18.02_GROUP_BY_Modifiers
12.18.03_MySQL_Handling_of_GROUP_BY
12.19.00_Miscellaneous_Functions
12.20.00_Precision_Math
12.20.01_Types_of_Numeric_Values
12.20.02_DECIMAL_Data_Type_Characteristics
12.20.03_Expression_Handling
12.20.04_Rounding_Behavior
12.20.05_Precision_Math_Examples
13.00.00_SQL_Statement_Syntax
13.01.00_Data_Definition_Statements
13.01.01_ALTER_DATABASE_Syntax
13.01.02_ALTER_EVENT_Syntax
13.01.03_ALTER_FUNCTION_Syntax
13.01.04_ALTER_LOGFILE_GROUP_Syntax
13.01.05_ALTER_PROCEDURE_Syntax
13.01.06_ALTER_SERVER_Syntax
13.01.07_ALTER_TABLE_Syntax
13.01.08_ALTER_TABLESPACE_Syntax
13.01.09_ALTER_VIEW_Syntax
13.01.10_CREATE_DATABASE_Syntax
13.01.11_CREATE_EVENT_Syntax
13.01.12_CREATE_FUNCTION_Syntax
13.01.13_CREATE_INDEX_Syntax
13.01.14_CREATE_LOGFILE_GROUP_Syntax
13.01.15_CREATE_PROCEDURE_and_CREATE_FUNCTION_Syntax
13.01.16_CREATE_SERVER_Syntax
13.01.17_CREATE_TABLE_Syntax
13.01.18_CREATE_TABLESPACE_Syntax
13.01.19_CREATE_TRIGGER_Syntax
13.01.20_CREATE_VIEW_Syntax
13.01.21_DROP_DATABASE_Syntax
13.01.22_DROP_EVENT_Syntax
13.01.23_DROP_FUNCTION_Syntax
13.01.24_DROP_INDEX_Syntax
13.01.25_DROP_LOGFILE_GROUP_Syntax
13.01.26_DROP_PROCEDURE_and_DROP_FUNCTION_Syntax
13.01.27_DROP_SERVER_Syntax
13.01.28_DROP_TABLE_Syntax
13.01.29_DROP_TABLESPACE_Syntax
13.01.30_DROP_TRIGGER_Syntax
13.01.31_DROP_VIEW_Syntax
13.01.32_RENAME_TABLE_Syntax
13.01.33_TRUNCATE_TABLE_Syntax
13.02.00_Data_Manipulation_Statements
13.02.01_CALL_Syntax
13.02.02_DELETE_Syntax
13.02.03_DO_Syntax
13.02.04_HANDLER_Syntax
13.02.05_INSERT_Syntax
13.02.06_LOAD_DATA_INFILE_Syntax
13.02.07_LOAD_XML_Syntax
13.02.08_REPLACE_Syntax
13.02.09_SELECT_Syntax
13.02.10_Subquery_Syntax
13.02.11_UPDATE_Syntax
13.03.00_Transactional_and_Locking_Statements
13.03.01_START_TRANSACTION_COMMIT_and_ROLLBACK_Syntax
13.03.02_Statements_That_Cannot_Be_Rolled_Back
13.03.03_Statements_That_Cause_an_Implicit_Commit
13.03.04_SAVEPOINT_ROLLBACK_TO_SAVEPOINT_and_RELEASE_SAVEPOINT_Syntax
13.03.05_LOCK_TABLES_and_UNLOCK_TABLES_Syntax
13.03.06_SET_TRANSACTION_Syntax
13.03.07_XA_Transactions
13.04.00_Replication_Statements
13.04.01_SQL_Statements_for_Controlling_Master_Servers
13.04.02_SQL_Statements_for_Controlling_Slave_Servers
13.05.00_Prepared_SQL_Statement_Syntax
13.05.01_PREPARE_Syntax
13.05.02_EXECUTE_Syntax
13.05.03_DEALLOCATE_PREPARE_Syntax
13.06.00_Compound-Statement_Syntax
13.06.01_BEGIN_..._END_Compound-Statement_Syntax
13.06.02_Statement_Label_Syntax
13.06.03_DECLARE_Syntax
13.06.04_Variables_in_Stored_Programs
13.06.05_Flow_Control_Statements
13.06.06_Cursors
13.06.07_Condition_Handling
13.07.00_Database_Administration_Statements
13.07.01_Account_Management_Statements
13.07.02_Table_Maintenance_Statements
13.07.03_Plugin_and_User-Defined_Function_Statements
13.07.04_SET_Syntax
13.07.05_SHOW_Syntax
13.07.06_Other_Administrative_Statements
13.08.00_Utility_Statements
13.08.01_DESCRIBE_Syntax
13.08.02_EXPLAIN_Syntax
13.08.03_HELP_Syntax
13.08.04_USE_Syntax
14.00.00_The_InnoDB_Storage_Engine
14.01.00_Introduction_to_InnoDB
14.01.01_Benefits_of_Using_InnoDB_Tables
14.01.02_Best_Practices_for_InnoDB_Tables
14.01.03_Checking_InnoDB_Availability
14.01.04_Testing_and_Benchmarking_with_InnoDB
14.01.05_Turning_Off_InnoDB
14.02.00_InnoDB_and_the_ACID_Model
14.03.00_InnoDB_Multi-Versioning
14.04.00_InnoDB_Architecture
14.04.01_Buffer_Pool
14.04.02_Change_Buffer
14.04.03_Adaptive_Hash_Index
14.04.04_Redo_Log_Buffer
14.04.05_System_Tablespace
14.04.06_InnoDB_Data_Dictionary
14.04.07_Doublewrite_Buffer
14.04.08_Undo_Logs
14.04.09_File-Per-Table_Tablespaces
14.04.10_Undo_Tablespace
14.04.11_Redo_Log
14.05.00_InnoDB_Locking_and_Transaction_Model
14.05.01_InnoDB_Locking
14.05.02_InnoDB_Transaction_Model
14.05.03_Locks_Set_by_Different_SQL_Statements_in_InnoDB
14.05.04_Phantom_Rows
14.05.05_Deadlocks_in_InnoDB
14.06.00_InnoDB_Configuration
14.06.01_InnoDB_Startup_Configuration
14.06.02_Configuring_InnoDB_for_Read-Only_Operation
14.06.03_InnoDB_Buffer_Pool_Configuration
14.06.04_Configuring_the_Memory_Allocator_for_InnoDB
14.06.05_Configuring_InnoDB_Change_Buffering
14.06.06_Configuring_Thread_Concurrency_for_InnoDB
14.06.07_Configuring_the_Number_of_Background_InnoDB_I_O_Threads
14.06.08_Configuring_the_InnoDB_Master_Thread_I_O_Rate
14.06.09_Configuring_Spin_Lock_Polling
14.06.10_Configuring_InnoDB_Purge_Scheduling
14.06.11_Configuring_Optimizer_Statistics_for_InnoDB
14.06.12_Configuring_the_Merge_Threshold_for_Index_Pages
14.07.00_InnoDB_Tablespaces
14.07.01_Resizing_the_InnoDB_System_Tablespace
14.07.02_Changing_the_Number_or_Size_of_InnoDB_Redo_Log_Files
14.07.03_Using_Raw_Disk_Partitions_for_the_System_Tablespace
14.07.04_InnoDB_File-Per-Table_Tablespaces
14.07.05_Creating_a_File-Per-Table_Tablespace_Outside_the_Data_Directory
14.07.06_Copying_File-Per-Table_Tablespaces_to_Another_Server
14.07.07_Storing_InnoDB_Undo_Logs_in_Separate_Tablespaces
14.08.00_InnoDB_Tables_and_Indexes
14.08.01_Creating_InnoDB_Tables
14.08.02_Role_of_the_.frm_File_for_InnoDB_Tables
14.08.03_Physical_Row_Structure_of_InnoDB_Tables
14.08.04_Moving_or_Copying_InnoDB_Tables_to_Another_Machine
14.08.05_Converting_Tables_from_MyISAM_to_InnoDB
14.08.06_AUTO_INCREMENT_Handling_in_InnoDB
14.08.07_InnoDB_and_FOREIGN_KEY_Constraints
14.08.08_Limits_on_InnoDB_Tables
14.08.09_Clustered_and_Secondary_Indexes
14.08.10_InnoDB_FULLTEXT_Indexes
14.08.11_Physical_Structure_of_an_InnoDB_Index
14.09.00_InnoDB_Table_Compression
14.09.01_Overview_of_Table_Compression
14.09.02_Enabling_Compression_for_a_Table
14.09.03_Tuning_Compression_for_InnoDB_Tables
14.09.04_Monitoring_Compression_at_Runtime
14.09.05_How_Compression_Works_for_InnoDB_Tables
14.09.06_Compression_for_OLTP_Workloads
14.09.07_SQL_Compression_Syntax_Warnings_and_Errors
14.10.00_InnoDB_File-Format_Management
14.10.01_Enabling_File_Formats
14.10.02_Verifying_File_Format_Compatibility
14.10.03_Identifying_the_File_Format_in_Use
14.10.04_Modifying_the_File_Format
14.11.00_InnoDB_Row_Storage_and_Row_Formats
14.11.01_Overview_of_InnoDB_Row_Storage
14.11.02_Specifying_the_Row_Format_for_a_Table
14.11.03_DYNAMIC_and_COMPRESSED_Row_Formats
14.11.04_COMPACT_and_REDUNDANT_Row_Formats
14.12.00_InnoDB_Disk_I_O_and_File_Space_Management
14.12.01_InnoDB_Disk_I_O
14.12.02_File_Space_Management
14.12.03_InnoDB_Checkpoints
14.12.04_Defragmenting_a_Table
14.12.05_Reclaiming_Disk_Space_with_TRUNCATE_TABLE
14.13.00_InnoDB_and_Online_DDL
14.13.01_Overview_of_Online_DDL
14.13.02_Performance_and_Concurrency_Considerations_for_Online_DDL
14.13.03_SQL_Syntax_for_Online_DDL
14.13.04_Combining_or_Separating_DDL_Statements
14.13.05_Examples_of_Online_DDL
14.13.06_Implementation_Details_of_Online_DDL
14.13.07_How_Crash_Recovery_Works_with_Online_DDL
14.13.08_Online_DDL_for_Partitioned_InnoDB_Tables
14.13.09_Limitations_of_Online_DDL
14.14.00_InnoDB_Startup_Options_and_System_Variables
14.15.00_InnoDB_INFORMATION_SCHEMA_Tables
14.15.01_InnoDB_INFORMATION_SCHEMA_Tables_about_Compression
14.15.02_InnoDB_INFORMATION_SCHEMA_Transaction_and_Locking_Information
14.15.03_InnoDB_INFORMATION_SCHEMA_System_Tables
14.15.04_InnoDB_INFORMATION_SCHEMA_FULLTEXT_Index_Tables
14.15.05_InnoDB_INFORMATION_SCHEMA_Buffer_Pool_Tables
14.15.06_InnoDB_INFORMATION_SCHEMA_Metrics_Table
14.16.00_InnoDB_Integration_with_MySQL_Performance_Schema
14.16.01_Monitoring_InnoDB_Mutex_Waits_Using_Performance_Schema
14.17.00_InnoDB_Monitors
14.17.01_InnoDB_Monitor_Types
14.17.02_Enabling_InnoDB_Monitors
14.17.03_InnoDB_Standard_Monitor_and_Lock_Monitor_Output
14.17.04_InnoDB_Tablespace_Monitor_Output
14.17.05_InnoDB_Table_Monitor_Output
14.18.00_InnoDB_Backup_and_Recovery
14.18.01_The_InnoDB_Recovery_Process
14.19.00_InnoDB_and_MySQL_Replication
14.20.00_InnoDB_memcached_Plugin
14.20.01_Benefits_of_the_InnoDB_memcached_Plugin
14.20.02_InnoDB_memcached_Architecture
14.20.03_Setting_Up_the_InnoDB_memcached_Plugin
14.20.04_Security_Considerations_for_the_InnoDB_memcached_Plugin
14.20.05_Writing_Applications_for_the_InnoDB_memcached_Plugin
14.20.06_The_InnoDB_memcached_Plugin_and_Replication
14.20.07_InnoDB_memcached_Plugin_Internals
14.20.08_Troubleshooting_the_InnoDB_memcached_Plugin
14.21.00_InnoDB_Troubleshooting
14.21.01_Troubleshooting_InnoDB_I_O_Problems
14.21.02_Forcing_InnoDB_Recovery
14.21.03_Troubleshooting_InnoDB_Data_Dictionary_Operations
14.21.04_InnoDB_Error_Handling
15.00.00_Alternative_Storage_Engines
15.01.00_Setting_the_Storage_Engine
15.02.00_The_MyISAM_Storage_Engine
15.02.01_MyISAM_Startup_Options
15.02.02_Space_Needed_for_Keys
15.02.03_MyISAM_Table_Storage_Formats
15.02.04_MyISAM_Table_Problems
15.03.00_The_MEMORY_Storage_Engine
15.04.00_The_CSV_Storage_Engine
15.04.01_Repairing_and_Checking_CSV_Tables
15.04.02_CSV_Limitations
15.05.00_The_ARCHIVE_Storage_Engine
15.06.00_The_BLACKHOLE_Storage_Engine
15.07.00_The_MERGE_Storage_Engine
15.07.01_MERGE_Table_Advantages_and_Disadvantages
15.07.02_MERGE_Table_Problems
15.08.00_The_FEDERATED_Storage_Engine
15.08.01_FEDERATED_Storage_Engine_Overview
15.08.02_How_to_Create_FEDERATED_Tables
15.08.03_FEDERATED_Storage_Engine_Notes_and_Tips
15.08.04_FEDERATED_Storage_Engine_Resources
15.09.00_The_EXAMPLE_Storage_Engine
15.10.00_Other_Storage_Engines
15.11.00_Overview_of_MySQL_Storage_Engine_Architecture
15.11.01_Pluggable_Storage_Engine_Architecture
15.11.02_The_Common_Database_Server_Layer
16.00.00_High_Availability_and_Scalability
16.01.00_Using_ZFS_Replication
16.01.01_Using_ZFS_for_File_System_Replication
16.01.02_Configuring_MySQL_for_ZFS_Replication
16.01.03_Handling_MySQL_Recovery_with_ZFS
16.02.00_Using_MySQL_with_memcached
16.02.01_Installing_memcached
16.02.02_Using_memcached
16.02.03_Developing_a_memcached_Application
16.02.04_Getting_memcached_Statistics
16.02.05_memcached_FAQ
17.00.00_Replication
17.01.00_Replication_Configuration
17.01.01_How_to_Set_Up_Replication
17.01.02_Replication_Formats
17.01.03_Replication_with_Global_Transaction_Identifiers
17.01.04_Replication_and_Binary_Logging_Options_and_Variables
17.01.05_Common_Replication_Administration_Tasks
17.02.00_Replication_Implementation
17.02.01_Replication_Implementation_Details
17.02.02_Replication_Relay_and_Status_Logs
17.02.03_How_Servers_Evaluate_Replication_Filtering_Rules
17.03.00_Replication_Solutions
17.03.01_Using_Replication_for_Backups
17.03.02_Handling_an_Unexpected_Halt_of_a_Replication_Slave
17.03.03_Using_Replication_with_Different_Master_and_Slave_Storage_Engines
17.03.04_Using_Replication_for_Scale-Out
17.03.05_Replicating_Different_Databases_to_Different_Slaves
17.03.06_Improving_Replication_Performance
17.03.07_Switching_Masters_During_Failover
17.03.08_Setting_Up_Replication_to_Use_Secure_Connections
17.03.09_Semisynchronous_Replication
17.03.10_Delayed_Replication
17.04.00_Replication_Notes_and_Tips
17.04.01_Replication_Features_and_Issues
17.04.02_Replication_Compatibility_Between_MySQL_Versions
17.04.03_Upgrading_a_Replication_Setup
17.04.04_Troubleshooting_Replication
17.04.05_How_to_Report_Replication_Bugs_or_Problems
18.00.00_MySQL_NDB_Cluster_7.3_and_NDB_Cluster_7.4
18.01.00_NDB_Cluster_Overview
18.01.01_NDB_Cluster_Core_Concepts
18.01.02_NDB_Cluster_Nodes_Node_Groups_Replicas_and_Partitions
18.01.03_NDB_Cluster_Hardware_Software_and_Networking_Requirements
18.01.04_What_is_New_in_NDB_Cluster
18.01.05_MySQL_Server_Using_InnoDB_Compared_with_NDB_Cluster
18.01.06_Known_Limitations_of_NDB_Cluster
18.02.00_NDB_Cluster_Installation
18.02.01_The_NDB_Cluster_Auto-Installer
18.02.02_Installation_of_NDB_Cluster_on_Linux
18.02.03_Installing_NDB_Cluster_on_Windows
18.02.04_Initial_Configuration_of_NDB_Cluster
18.02.05_Initial_Startup_of_NDB_Cluster
18.02.06_NDB_Cluster_Example_with_Tables_and_Data
18.02.07_Safe_Shutdown_and_Restart_of_NDB_Cluster
18.02.08_Upgrading_and_Downgrading_NDB_Cluster
18.03.00_Configuration_of_NDB_Cluster
18.03.01_Quick_Test_Setup_of_NDB_Cluster
18.03.02_Overview_of_NDB_Cluster_Configuration_Parameters_Options_and_Variables
18.03.03_NDB_Cluster_Configuration_Files
18.03.04_Using_High-Speed_Interconnects_with_NDB_Cluster
18.04.00_NDB_Cluster_Programs
18.04.01_ndbd_The_NDB_Cluster_Data_Node_Daemon
18.04.02_ndbinfo_select_all_Select_From_ndbinfo_Tables
18.04.03_ndbmtd_The_NDB_Cluster_Data_Node_Daemon_Multi-Threaded
18.04.04_ndb_mgmd_The_NDB_Cluster_Management_Server_Daemon
18.04.05_ndb_mgm_The_NDB_Cluster_Management_Client
18.04.06_ndb_blob_tool_Check_and_Repair_BLOB_and_TEXT_columns_of_NDB_Cluster_Tables
18.04.07_ndb_config_Extract_NDB_Cluster_Configuration_Information
18.04.08_ndb_cpcd_Automate_Testing_for_NDB_Development
18.04.09_ndb_delete_all_Delete_All_Rows_from_an_NDB_Table
18.04.10_ndb_desc_Describe_NDB_Tables
18.04.11_ndb_drop_index_Drop_Index_from_an_NDB_Table
18.04.12_ndb_drop_table_Drop_an_NDB_Table
18.04.13_ndb_error_reporter_NDB_Error-Reporting_Utility
18.04.14_ndb_index_stat_NDB_Index_Statistics_Utility
18.04.15_ndb_print_backup_file_Print_NDB_Backup_File_Contents
18.04.16_ndb_print_file_Print_NDB_Disk_Data_File_Contents
18.04.17_ndb_print_schema_file_Print_NDB_Schema_File_Contents
18.04.18_ndb_print_sys_file_Print_NDB_System_File_Contents
18.04.19_ndbd_redo_log_reader_Check_and_Print_Content_of_Cluster_Redo_Log
18.04.20_ndb_restore_Restore_an_NDB_Cluster_Backup
18.04.21_ndb_select_all_Print_Rows_from_an_NDB_Table
18.04.22_ndb_select_count_Print_Row_Counts_for_NDB_Tables
18.04.23_ndb_setup.py_Start_browser-based_Auto-Installer_for_NDB_Cluster
18.04.24_ndb_show_tables_Display_List_of_NDB_Tables
18.04.25_ndb_size.pl_NDBCLUSTER_Size_Requirement_Estimator
18.04.26_ndb_waiter_Wait_for_NDB_Cluster_to_Reach_a_Given_Status
18.04.27_Options_Common_to_NDB_Cluster_Programs_Options_Common_to_NDB_Cluster_Programs
18.05.00_Management_of_NDB_Cluster
18.05.01_Summary_of_NDB_Cluster_Start_Phases
18.05.02_Commands_in_the_NDB_Cluster_Management_Client
18.05.03_Online_Backup_of_NDB_Cluster
18.05.04_MySQL_Server_Usage_for_NDB_Cluster
18.05.05_Performing_a_Rolling_Restart_of_an_NDB_Cluster
18.05.06_Event_Reports_Generated_in_NDB_Cluster
18.05.07_NDB_Cluster_Log_Messages
18.05.08_NDB_Cluster_Single_User_Mode
18.05.09_Quick_Reference:_NDB_Cluster_SQL_Statements
18.05.10_The_ndbinfo_NDB_Cluster_Information_Database
18.05.11_NDB_Cluster_Security_Issues
18.05.12_NDB_Cluster_Disk_Data_Tables
18.05.13_Adding_NDB_Cluster_Data_Nodes_Online
18.05.14_Distributed_MySQL_Privileges_for_NDB_Cluster
18.05.15_NDB_API_Statistics_Counters_and_Variables
18.06.00_NDB_Cluster_Replication
18.06.01_NDB_Cluster_Replication:_Abbreviations_and_Symbols
18.06.02_General_Requirements_for_NDB_Cluster_Replication
18.06.03_Known_Issues_in_NDB_Cluster_Replication
18.06.04_NDB_Cluster_Replication_Schema_and_Tables
18.06.05_Preparing_the_NDB_Cluster_for_Replication
18.06.06_Starting_NDB_Cluster_Replication_Single_Replication_Channel
18.06.07_Using_Two_Replication_Channels_for_NDB_Cluster_Replication
18.06.08_Implementing_Failover_with_NDB_Cluster_Replication
18.06.09_NDB_Cluster_Backups_With_NDB_Cluster_Replication
18.06.10_NDB_Cluster_Replication:_Multi-Master_and_Circular_Replication
18.06.11_NDB_Cluster_Replication_Conflict_Resolution
18.07.00_NDB_Cluster_Release_Notes
19.00.00_Partitioning
19.01.00_Overview_of_Partitioning_in_MySQL
19.02.00_Partitioning_Types
19.02.01_RANGE_Partitioning
19.02.02_LIST_Partitioning
19.02.03_COLUMNS_Partitioning
19.02.04_HASH_Partitioning
19.02.05_KEY_Partitioning
19.02.06_Subpartitioning
19.02.07_How_MySQL_Partitioning_Handles_NULL
19.03.00_Partition_Management
19.03.01_Management_of_RANGE_and_LIST_Partitions
19.03.02_Management_of_HASH_and_KEY_Partitions
19.03.03_Exchanging_Partitions_and_Subpartitions_with_Tables
19.03.04_Maintenance_of_Partitions
19.03.05_Obtaining_Information_About_Partitions
19.04.00_Partition_Pruning
19.05.00_Partition_Selection
19.06.00_Restrictions_and_Limitations_on_Partitioning
19.06.01_Partitioning_Keys_Primary_Keys_and_Unique_Keys
19.06.02_Partitioning_Limitations_Relating_to_Storage_Engines
19.06.03_Partitioning_Limitations_Relating_to_Functions
19.06.04_Partitioning_and_Locking
20.00.00_Stored_Programs_and_Views
20.01.00_Defining_Stored_Programs
20.02.00_Using_Stored_Routines_Procedures_and_Functions
20.02.01_Stored_Routine_Syntax
20.02.02_Stored_Routines_and_MySQL_Privileges
20.02.03_Stored_Routine_Metadata
20.02.04_Stored_Procedures_Functions_Triggers_and_LAST_INSERT_ID
20.03.00_Using_Triggers
20.03.01_Trigger_Syntax_and_Examples
20.03.02_Trigger_Metadata
20.04.00_Using_the_Event_Scheduler
20.04.01_Event_Scheduler_Overview
20.04.02_Event_Scheduler_Configuration
20.04.03_Event_Syntax
20.04.04_Event_Metadata
20.04.05_Event_Scheduler_Status
20.04.06_The_Event_Scheduler_and_MySQL_Privileges
20.05.00_Using_Views
20.05.01_View_Syntax
20.05.02_View_Processing_Algorithms
20.05.03_Updatable_and_Insertable_Views
20.05.04_The_View_WITH_CHECK_OPTION_Clause
20.05.05_View_Metadata
20.06.00_Access_Control_for_Stored_Programs_and_Views
20.07.00_Binary_Logging_of_Stored_Programs
21.00.00_INFORMATION_SCHEMA_Tables
21.01.00_The_INFORMATION_SCHEMA_CHARACTER_SETS_Table
21.02.00_The_INFORMATION_SCHEMA_COLLATIONS_Table
21.03.00_The_INFORMATION_SCHEMA_COLLATION_CHARACTER_SET_APPLICABILITY_Table
21.04.00_The_INFORMATION_SCHEMA_COLUMNS_Table
21.05.00_The_INFORMATION_SCHEMA_COLUMN_PRIVILEGES_Table
21.06.00_The_INFORMATION_SCHEMA_ENGINES_Table
21.07.00_The_INFORMATION_SCHEMA_EVENTS_Table
21.08.00_The_INFORMATION_SCHEMA_GLOBAL_STATUS_and_SESSION_STATUS_Tables
21.09.00_The_INFORMATION_SCHEMA_GLOBAL_VARIABLES_and_SESSION_VARIABLES_Tables
21.10.00_The_INFORMATION_SCHEMA_KEY_COLUMN_USAGE_Table
21.11.00_The_INFORMATION_SCHEMA_OPTIMIZER_TRACE_Table
21.12.00_The_INFORMATION_SCHEMA_PARAMETERS_Table
21.13.00_The_INFORMATION_SCHEMA_PARTITIONS_Table
21.14.00_The_INFORMATION_SCHEMA_PLUGINS_Table
21.15.00_The_INFORMATION_SCHEMA_PROCESSLIST_Table
21.16.00_The_INFORMATION_SCHEMA_PROFILING_Table
21.17.00_The_INFORMATION_SCHEMA_REFERENTIAL_CONSTRAINTS_Table
21.18.00_The_INFORMATION_SCHEMA_ROUTINES_Table
21.19.00_The_INFORMATION_SCHEMA_SCHEMATA_Table
21.20.00_The_INFORMATION_SCHEMA_SCHEMA_PRIVILEGES_Table
21.21.00_The_INFORMATION_SCHEMA_STATISTICS_Table
21.22.00_The_INFORMATION_SCHEMA_TABLES_Table
21.23.00_The_INFORMATION_SCHEMA_TABLESPACES_Table
21.24.00_The_INFORMATION_SCHEMA_TABLE_CONSTRAINTS_Table
21.25.00_The_INFORMATION_SCHEMA_TABLE_PRIVILEGES_Table
21.26.00_The_INFORMATION_SCHEMA_TRIGGERS_Table
21.27.00_The_INFORMATION_SCHEMA_USER_PRIVILEGES_Table
21.28.00_The_INFORMATION_SCHEMA_VIEWS_Table
21.29.00_InnoDB_INFORMATION_SCHEMA_Tables
21.29.01_The_INFORMATION_SCHEMA_INNODB_BUFFER_PAGE_Table
21.29.02_The_INFORMATION_SCHEMA_INNODB_BUFFER_PAGE_LRU_Table
21.29.03_The_INFORMATION_SCHEMA_INNODB_BUFFER_POOL_STATS_Table
21.29.04_The_INFORMATION_SCHEMA_INNODB_CMP_and_INNODB_CMP_RESET_Tables
21.29.05_The_INFORMATION_SCHEMA_INNODB_CMPMEM_and_INNODB_CMPMEM_RESET_Tables
21.29.06_The_INFORMATION_SCHEMA_INNODB_CMP_PER_INDEX_and_INNODB_CMP_PER_INDEX_RESET_Tables
21.29.07_The_INFORMATION_SCHEMA_INNODB_FT_BEING_DELETED_Table
21.29.08_The_INFORMATION_SCHEMA_INNODB_FT_CONFIG_Table
21.29.09_The_INFORMATION_SCHEMA_INNODB_FT_DEFAULT_STOPWORD_Table
21.29.10_The_INFORMATION_SCHEMA_INNODB_FT_DELETED_Table
21.29.11_The_INFORMATION_SCHEMA_INNODB_FT_INDEX_CACHE_Table
21.29.12_The_INFORMATION_SCHEMA_INNODB_FT_INDEX_TABLE_Table
21.29.13_The_INFORMATION_SCHEMA_INNODB_LOCKS_Table
21.29.14_The_INFORMATION_SCHEMA_INNODB_LOCK_WAITS_Table
21.29.15_The_INFORMATION_SCHEMA_INNODB_METRICS_Table
21.29.16_The_INFORMATION_SCHEMA_INNODB_SYS_COLUMNS_Table
21.29.17_The_INFORMATION_SCHEMA_INNODB_SYS_DATAFILES_Table
21.29.18_The_INFORMATION_SCHEMA_INNODB_SYS_FIELDS_Table
21.29.19_The_INFORMATION_SCHEMA_INNODB_SYS_FOREIGN_Table
21.29.20_The_INFORMATION_SCHEMA_INNODB_SYS_FOREIGN_COLS_Table
21.29.21_The_INFORMATION_SCHEMA_INNODB_SYS_INDEXES_Table
21.29.22_The_INFORMATION_SCHEMA_INNODB_SYS_TABLES_Table
21.29.23_The_INFORMATION_SCHEMA_INNODB_SYS_TABLESPACES_Table
21.29.24_The_INFORMATION_SCHEMA_INNODB_SYS_TABLESTATS_View
21.29.25_The_INFORMATION_SCHEMA_INNODB_TRX_Table
21.30.00_MySQL_Cluster_INFORMATION_SCHEMA_Tables
21.30.01_The_INFORMATION_SCHEMA_FILES_Table
21.30.02_The_INFORMATION_SCHEMA_ndb_transid_mysql_connection_map_Table
21.31.00_Thread_Pool_INFORMATION_SCHEMA_Tables
21.31.01_The_INFORMATION_SCHEMA_TP_THREAD_GROUP_STATE_Table
21.31.02_The_INFORMATION_SCHEMA_TP_THREAD_GROUP_STATS_Table
21.31.03_The_INFORMATION_SCHEMA_TP_THREAD_STATE_Table
21.32.00_Connection-Control_INFORMATION_SCHEMA_Tables
21.32.01_The_INFORMATION_SCHEMA_CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS_Table
21.33.00_Extensions_to_SHOW_Statements
22.00.00_MySQL_Performance_Schema
22.01.00_Performance_Schema_Quick_Start
22.02.00_Performance_Schema_Build_and_Startup_Configuration
22.02.01_Performance_Schema_Build_Configuration
22.02.02_Performance_Schema_Startup_Configuration
22.03.00_Performance_Schema_Runtime_Configuration
22.03.01_Performance_Schema_Event_Timing