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
|
.\" Title: \fBndb_select_all\fR
.\" Author:
.\" Generator: DocBook XSL Stylesheets v1.70.1 <http://docbook.sf.net/>
.\" Date: 01/11/2008
.\" Manual: MySQL Database System
.\" Source: MySQL 5.0
.\"
.TH "\fBNDB_SELECT_ALL\fR" "1" "01/11/2008" "MySQL 5.0" "MySQL Database System"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
ndb_select_all \- print rows from NDB table
.SH "SYNOPSIS"
.HP 67
\fBndb_select_all \-c \fR\fB\fIconnect_string\fR\fR\fB \fR\fB\fItbl_name\fR\fR\fB \-d \fR\fB\fIdb_name\fR\fR\fB [> \fR\fB\fIfile_name\fR\fR\fB]\fR
.SH "DESCRIPTION"
.PP
\fBndb_select_all\fR
prints all rows from an
NDB
table to
stdout.
.PP
\fBUsage\fR:
.sp
.RS 3n
.nf
ndb_select_all \-c \fIconnect_string\fR \fItbl_name\fR \-d \fIdb_name\fR [> \fIfile_name\fR]
.fi
.RE
.PP
\fBAdditional Options\fR:
.TP 3n
\(bu
\fB\-\-lock=\fR\fB\fIlock_type\fR\fR,
\fB\-l \fR\fB\fIlock_type\fR\fR
.sp
Employs a lock when reading the table. Possible values for
\fIlock_type\fR
are:
.RS 3n
.TP 3n
\(bu
0: Read lock
.TP 3n
\(bu
1: Read lock with hold
.TP 3n
\(bu
2: Exclusive read lock
.RE
.IP "" 3n
There is no default value for this option.
.TP 3n
\(bu
\fB\-\-order=\fR\fB\fIindex_name\fR\fR,
\fB\-o \fR\fB\fIindex_name\fR\fR
.sp
Orders the output according to the index named
\fIindex_name\fR. Note that this is the name of an index, not of a column, and that the index must have been explicitly named when created.
.TP 3n
\(bu
\fB\-\-descending\fR,
\fB\-z\fR
.sp
Sorts the output in descending order. This option can be used only in conjunction with the
\fB\-o\fR
(\fB\-\-order\fR) option.
.TP 3n
\(bu
\fB\-\-header=FALSE\fR
.sp
Excludes column headers from the output.
.TP 3n
\(bu
\fB\-\-useHexFormat\fR
\fB\-x\fR
.sp
Causes all numeric values to be displayed in hexadecimal format. This does not affect the output of numerals contained in strings or datetime values.
.TP 3n
\(bu
\fB\-\-delimiter=\fR\fB\fIcharacter\fR\fR,
\fB\-D \fR\fB\fIcharacter\fR\fR
.sp
Causes the
\fIcharacter\fR
to be used as a column delimiter. Only table data columns are separated by this delimiter.
.sp
The default delimiter is the tab character.
.TP 3n
\(bu
\fB\-\-rowid\fR
.sp
Adds a
ROWID
column providing information about the fragments in which rows are stored.
.TP 3n
\(bu
\fB\-\-gci\fR
.sp
Adds a column to the output showing the global checkpoint at which each row was last updated. See
Section\ 12, \(lqMySQL Cluster Glossary\(rq, and
Section\ 6.3.2, \(lqLog Events\(rq, for more information about checkpoints.
.TP 3n
\(bu
\fB\-\-tupscan\fR,
\fB\-t\fR
.sp
Scan the table in the order of the tuples.
.TP 3n
\(bu
\fB\-\-nodata\fR
.sp
Causes any table data to be omitted.
.sp
.RE
.PP
\fBSample Output\fR:
.PP
Output from a MySQL
SELECT
statement:
.sp
.RS 3n
.nf
mysql> \fBSELECT * FROM ctest1.fish;\fR
+\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-+
| id | name |
+\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-+
| 3 | shark |
| 6 | puffer |
| 2 | tuna |
| 4 | manta ray |
| 5 | grouper |
| 1 | guppy |
+\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-+
6 rows in set (0.04 sec)
.fi
.RE
.PP
Output from the equivalent invocation of
\fBndb_select_all\fR:
.sp
.RS 3n
.nf
shell> \fB./ndb_select_all \-c localhost fish \-d ctest1\fR
id name
3 [shark]
6 [puffer]
2 [tuna]
4 [manta ray]
5 [grouper]
1 [guppy]
6 rows returned
NDBT_ProgramExit: 0 \- OK
.fi
.RE
.PP
Note that all string values are enclosed by square brackets (\(lq[...]\(rq) in the output of
\fBndb_select_all\fR. For a further example, consider the table created and populated as shown here:
.sp
.RS 3n
.nf
CREATE TABLE dogs (
id INT(11) NOT NULL AUTO_INCREMENT,
name VARCHAR(25) NOT NULL,
breed VARCHAR(50) NOT NULL,
PRIMARY KEY pk (id),
KEY ix (name)
)
ENGINE=NDB;
INSERT INTO dogs VALUES
('', 'Lassie', 'collie'),
('', 'Scooby\-Doo', 'Great Dane'),
('', 'Rin\-Tin\-Tin', 'German Shepherd'),
('', 'Rosscoe', 'Mutt');
.fi
.RE
.PP
This demonstrates the use of several additional
\fBndb_select_all\fR
options:
.sp
.RS 3n
.nf
shell> \fB./ndb_select_all \-d ctest1 dogs \-o ix \-z \-\-gci\fR
GCI id name breed
834461 2 [Scooby\-Doo] [Great Dane]
834878 4 [Rosscoe] [Mutt]
834463 3 [Rin\-Tin\-Tin] [German Shepherd]
835657 1 [Lassie] [Collie]
4 rows returned
NDBT_ProgramExit: 0 \- OK
.fi
.RE
.SH "COPYRIGHT"
.PP
Copyright 2007\-2008 MySQL AB
.PP
This documentation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
.PP
This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
.PP
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110\-1301 USA or see http://www.gnu.org/licenses/.
.SH "SEE ALSO"
For more information, please refer to the MySQL Reference Manual,
which may already be installed locally and which is also available
online at http://dev.mysql.com/doc/.
.SH AUTHOR
MySQL AB (http://www.mysql.com/).
|