Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
2267676c
Commit
2267676c
authored
Apr 17, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
manual.texi Table types are @code{}, not @strong{}.
Docs/manual.texi: Table types are @code{}, not @strong{}.
parent
07b71692
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
Docs/manual.texi
Docs/manual.texi
+13
-13
No files found.
Docs/manual.texi
View file @
2267676c
...
@@ -4909,12 +4909,12 @@ low-level table types to be called from the SQL engine, and each table
...
@@ -4909,12 +4909,12 @@ low-level table types to be called from the SQL engine, and each table
type can be optimised for different performance characteristics.
type can be optimised for different performance characteristics.
@item
@item
All MySQL table types (except @
strong
{InnoDB}) are implemented as files
All MySQL table types (except @
code
{InnoDB}) are implemented as files
(one table per file), which makes it really easy to backup, move, delete
(one table per file), which makes it really easy to backup, move, delete
and even symlink databases and tables, even when the server is down.
and even symlink databases and tables, even when the server is down.
@item
@item
Tools to repair and optimise @
strong
{MyISAM} tables (the most common
Tools to repair and optimise @
code
{MyISAM} tables (the most common
MySQL table type). A repair tool is only needed when a physical corruption
MySQL table type). A repair tool is only needed when a physical corruption
of a data file happens, usually from a hardware failure. It allows a
of a data file happens, usually from a hardware failure. It allows a
majority of the data to be recovered.
majority of the data to be recovered.
...
@@ -8239,7 +8239,7 @@ link and the original database is deleted. (This didn't happen in 3.22
...
@@ -8239,7 +8239,7 @@ link and the original database is deleted. (This didn't happen in 3.22
because configure didn't detect the @code{readlink} system call).
because configure didn't detect the @code{readlink} system call).
@item
@item
@code{OPTIMIZE TABLE} now only works for @
strong
{MyISAM} tables.
@code{OPTIMIZE TABLE} now only works for @
code
{MyISAM} tables.
For other table types, you can use @code{ALTER TABLE} to optimise the table.
For other table types, you can use @code{ALTER TABLE} to optimise the table.
During @code{OPTIMIZE TABLE} the table is now locked from other threads.
During @code{OPTIMIZE TABLE} the table is now locked from other threads.
...
@@ -18887,7 +18887,7 @@ Deleted records are maintained in a linked list and subsequent @code{INSERT}
...
@@ -18887,7 +18887,7 @@ Deleted records are maintained in a linked list and subsequent @code{INSERT}
operations reuse old record positions. You can use @code{OPTIMIZE TABLE} to
operations reuse old record positions. You can use @code{OPTIMIZE TABLE} to
reclaim the unused space and to defragment the data file.
reclaim the unused space and to defragment the data file.
For the moment @code{OPTIMIZE TABLE} only works on @
strong
{MyISAM} and
For the moment @code{OPTIMIZE TABLE} only works on @
code
{MyISAM} and
@code{BDB} tables. For @code{BDB} tables, @code{OPTIMIZE TABLE} is
@code{BDB} tables. For @code{BDB} tables, @code{OPTIMIZE TABLE} is
currently mapped to @code{ANALYZE TABLE}. @xref{ANALYZE TABLE}.
currently mapped to @code{ANALYZE TABLE}. @xref{ANALYZE TABLE}.
...
@@ -21521,7 +21521,7 @@ The following table shows which table types our standard @strong{MySQL-Max}
...
@@ -21521,7 +21521,7 @@ The following table shows which table types our standard @strong{MySQL-Max}
binaries includes:
binaries includes:
@multitable @columnfractions .15 .10 .10
@multitable @columnfractions .15 .10 .10
@item @strong{System} @tab @
strong{BDB} @tab @strong
{InnoDB}
@item @strong{System} @tab @
code{BDB} @tab @code
{InnoDB}
@item AIX 4.3 @tab N @tab Y
@item AIX 4.3 @tab N @tab Y
@item HP-UX 11.0 @tab N @tab Y
@item HP-UX 11.0 @tab N @tab Y
@item Linux-Alpha @tab N @tab Y
@item Linux-Alpha @tab N @tab Y
...
@@ -36822,7 +36822,7 @@ high-byte first.
...
@@ -36822,7 +36822,7 @@ high-byte first.
@node MyISAM table formats, MyISAM table problems, Key space, MyISAM
@node MyISAM table formats, MyISAM table problems, Key space, MyISAM
@subsection MyISAM Table Formats
@subsection MyISAM Table Formats
@
strong
{MyISAM} supports 3 different table types. Two of them are chosen
@
code
{MyISAM} supports 3 different table types. Two of them are chosen
automatically depending on the type of columns you are using. The third,
automatically depending on the type of columns you are using. The third,
compressed tables, can only be created with the @code{myisampack} tool.
compressed tables, can only be created with the @code{myisampack} tool.
...
@@ -37648,8 +37648,8 @@ set-variable = innodb_file_io_threads=4
...
@@ -37648,8 +37648,8 @@ set-variable = innodb_file_io_threads=4
set-variable = innodb_lock_wait_timeout=50
set-variable = innodb_lock_wait_timeout=50
@end example
@end example
Note that @
strong{InnoDB
does not create directories:
Note that @
code{InnoDB} @strong{
does not create directories:
you
have to
create them yourself.}
you
must
create them yourself.}
Use the Unix or MS-DOS @code{mkdir} command to create
Use the Unix or MS-DOS @code{mkdir} command to create
the data and log group home directories.
the data and log group home directories.
Check also that the MySQL server
Check also that the MySQL server
...
@@ -39384,7 +39384,7 @@ Finland
...
@@ -39384,7 +39384,7 @@ Finland
* BDB start:: BDB startup options
* BDB start:: BDB startup options
* BDB characteristics:: Characteristics of @code{BDB} tables:
* BDB characteristics:: Characteristics of @code{BDB} tables:
* BDB TODO:: Things we need to fix for BDB in the near future:
* BDB TODO:: Things we need to fix for BDB in the near future:
* BDB portability:: Operating systems supported by @
strong
{BDB}
* BDB portability:: Operating systems supported by @
code
{BDB}
* BDB restrictions:: Restrictions on BDB Tables
* BDB restrictions:: Restrictions on BDB Tables
* BDB errors:: Errors That May Occur When Using BDB Tables
* BDB errors:: Errors That May Occur When Using BDB Tables
@end menu
@end menu
...
@@ -39595,7 +39595,7 @@ Change to not use page locks at all when we are scanning tables.
...
@@ -39595,7 +39595,7 @@ Change to not use page locks at all when we are scanning tables.
@node BDB portability, BDB restrictions, BDB TODO, BDB
@node BDB portability, BDB restrictions, BDB TODO, BDB
@subsection Operating systems supported by @
strong
{BDB}
@subsection Operating systems supported by @
code
{BDB}
If you after having built MySQL with support for BDB tables get
If you after having built MySQL with support for BDB tables get
the following error in the log file when you start @code{mysqld}:
the following error in the log file when you start @code{mysqld}:
...
@@ -49275,12 +49275,12 @@ present in previous versions. We have added three new
...
@@ -49275,12 +49275,12 @@ present in previous versions. We have added three new
table types:
table types:
@table @asis
@table @asis
@item @
strong
{MyISAM}
@item @
code
{MyISAM}
A new ISAM library which is tuned for SQL and supports large files.
A new ISAM library which is tuned for SQL and supports large files.
@item @
strong{BerkeleyDB} or @strong
{BDB}
@item @
code{BerkeleyDB} or @code
{BDB}
Uses the Berkeley DB library from Sleepycat Software to implement
Uses the Berkeley DB library from Sleepycat Software to implement
transaction-safe tables.
transaction-safe tables.
@item @
strong
{InnoDB}
@item @
code
{InnoDB}
A transaction-safe table handler that supports row level locking, and many
A transaction-safe table handler that supports row level locking, and many
Oracle-like features.
Oracle-like features.
@end table
@end table
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment