Oracle 5.0 Reference Manual page 1194

Table of Contents

Advertisement

SHOW SLAVE STATUS
SHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]
SHOW PROFILES
SHOW [GLOBAL | SESSION] STATUS [like_or_where]
SHOW TABLE STATUS [FROM db_name] [like_or_where]
SHOW [FULL] TABLES [FROM db_name] [like_or_where]
SHOW TRIGGERS [FROM db_name] [like_or_where]
SHOW [GLOBAL | SESSION] VARIABLES [like_or_where]
SHOW WARNINGS [LIMIT [offset,] row_count]
like_or_where:
LIKE 'pattern'
| WHERE
expr
If the syntax for a given
string that can contain the SQL "%" and "_" wildcard characters. The pattern is useful for restricting
statement output to matching values.
Several
SHOW
rows to display. See
Many MySQL APIs (such as PHP) enable you to treat the result returned from a
as you would a result set from a SELECT; see
documentation for more information. In addition, you can work in SQL with results from queries on
tables in the
statements. See
13.7.5.1.
SHOW BINARY LOGS
SHOW BINARY LOGS
SHOW MASTER LOGS
Lists the binary log files on the server. This statement is used as part of the procedure described in
Section 13.4.1.1,
purged.
mysql>
SHOW BINARY LOGS;
+---------------+-----------+
| Log_name
+---------------+-----------+
| binlog.000015 |
| binlog.000016 |
+---------------+-----------+
SHOW MASTER LOGS
of MySQL 5.0.7.
You must have the
13.7.5.2.
SHOW BINLOG EVENTS
SHOW BINLOG EVENTS
[IN 'log_name'] [FROM pos] [LIMIT [offset,] row_count]
Shows the events in the binary log. If you do not specify 'log_name', the first binary log is displayed.
The
LIMIT
Syntax".
statement includes a
SHOW
statements also accept a
Section 19.18, "Extensions to
INFORMATION_SCHEMA
Chapter 19,
INFORMATION_SCHEMA
Syntax
"PURGE BINARY LOGS
| File_size |
724935 |
733481 |
is equivalent to
[578]
privilege to use this statement.
SUPER
Syntax
clause has the same syntax as for the
Note
Issuing a
SHOW BINLOG EVENTS
and resource-consuming process because the server returns to the client the
complete contents of the binary log (which includes all statements executed by
the server that modify data). As an alternative to
the
mysqlbinlog
Syntax
SHOW
LIKE 'pattern'
clause that provides more flexibility in specifying which
WHERE
Statements".
SHOW
Chapter 20, Connectors and
database, which you cannot easily do with results from
Tables.
Syntax", that shows how to determine which logs can be
LOGS. The
SHOW BINARY
statement. See
SELECT
with no
utility to save the binary log to a text file for later examination
1174
[896]
part,
'pattern'
SHOW
APIs, or your API
column is displayed as
File_size
Section 13.2.8,
clause could start a very time-
LIMIT
SHOW BINLOG
is a
statement
SHOW
"SELECT
EVENTS, use

Advertisement

Table of Contents
loading

This manual is also suitable for:

Mysql 5.0

Table of Contents