You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

662 lines
15 KiB

  1. '\" t
  2. .\" Title: \fBmysqlimport\fR
  3. .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
  4. .\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
  5. .\" Date: 04/06/2010
  6. .\" Manual: MySQL Database System
  7. .\" Source: MySQL 5.1
  8. .\" Language: English
  9. .\"
  10. .TH "\FBMYSQLIMPORT\FR" "1" "04/06/2010" "MySQL 5\&.1" "MySQL Database System"
  11. .\" -----------------------------------------------------------------
  12. .\" * set default formatting
  13. .\" -----------------------------------------------------------------
  14. .\" disable hyphenation
  15. .nh
  16. .\" disable justification (adjust text to left margin only)
  17. .ad l
  18. .\" -----------------------------------------------------------------
  19. .\" * MAIN CONTENT STARTS HERE *
  20. .\" -----------------------------------------------------------------
  21. .\" mysqlimport
  22. .\" importing: data
  23. .\" data: importing
  24. .\" files: text
  25. .\" text files: importing
  26. .SH "NAME"
  27. mysqlimport \- a data import program
  28. .SH "SYNOPSIS"
  29. .HP \w'\fBmysqlimport\ [\fR\fB\fIoptions\fR\fR\fB]\ \fR\fB\fIdb_name\fR\fR\fB\ \fR\fB\fItextfile1\fR\fR\fB\ \&.\&.\&.\fR\ 'u
  30. \fBmysqlimport [\fR\fB\fIoptions\fR\fR\fB] \fR\fB\fIdb_name\fR\fR\fB \fR\fB\fItextfile1\fR\fR\fB \&.\&.\&.\fR
  31. .SH "DESCRIPTION"
  32. .PP
  33. The
  34. \fBmysqlimport\fR
  35. client provides a command\-line interface to the
  36. LOAD DATA INFILE
  37. SQL statement\&. Most options to
  38. \fBmysqlimport\fR
  39. correspond directly to clauses of
  40. LOAD DATA INFILE
  41. syntax\&. See
  42. Section\ \&12.2.6, \(lqLOAD DATA INFILE Syntax\(rq\&.
  43. .PP
  44. Invoke
  45. \fBmysqlimport\fR
  46. like this:
  47. .sp
  48. .if n \{\
  49. .RS 4
  50. .\}
  51. .nf
  52. shell> \fBmysqlimport [\fR\fB\fIoptions\fR\fR\fB] \fR\fB\fIdb_name\fR\fR\fB \fR\fB\fItextfile1\fR\fR\fB [\fR\fB\fItextfile2\fR\fR\fB \&.\&.\&.]\fR
  53. .fi
  54. .if n \{\
  55. .RE
  56. .\}
  57. .PP
  58. For each text file named on the command line,
  59. \fBmysqlimport\fR
  60. strips any extension from the file name and uses the result to determine the name of the table into which to import the file\'s contents\&. For example, files named
  61. patient\&.txt,
  62. patient\&.text, and
  63. patient
  64. all would be imported into a table named
  65. patient\&.
  66. .PP
  67. For additional information about
  68. \fBmysqldump\fR, see
  69. Section\ \&6.4, \(lqUsing mysqldump for Backups\(rq\&.
  70. .PP
  71. \fBmysqldump\fR
  72. supports the following options, which can be specified on the command line or in the
  73. [mysqldump]
  74. and
  75. [client]
  76. option file groups\&.
  77. \fBmysqldump\fR
  78. also supports the options for processing option files described at
  79. Section\ \&4.2.3.3.1, \(lqCommand-Line Options that Affect Option-File Handling\(rq\&.
  80. .sp
  81. .RS 4
  82. .ie n \{\
  83. \h'-04'\(bu\h'+03'\c
  84. .\}
  85. .el \{\
  86. .sp -1
  87. .IP \(bu 2.3
  88. .\}
  89. .\" mysqlimport: help option
  90. .\" help option: mysqlimport
  91. \fB\-\-help\fR,
  92. \fB\-?\fR
  93. .sp
  94. Display a help message and exit\&.
  95. .RE
  96. .sp
  97. .RS 4
  98. .ie n \{\
  99. \h'-04'\(bu\h'+03'\c
  100. .\}
  101. .el \{\
  102. .sp -1
  103. .IP \(bu 2.3
  104. .\}
  105. .\" mysqlimport: character-sets-dir option
  106. .\" character-sets-dir option: mysqlimport
  107. \fB\-\-character\-sets\-dir=\fR\fB\fIpath\fR\fR
  108. .sp
  109. The directory where character sets are installed\&. See
  110. Section\ \&9.5, \(lqCharacter Set Configuration\(rq\&.
  111. .RE
  112. .sp
  113. .RS 4
  114. .ie n \{\
  115. \h'-04'\(bu\h'+03'\c
  116. .\}
  117. .el \{\
  118. .sp -1
  119. .IP \(bu 2.3
  120. .\}
  121. .\" mysqlimport: columns option
  122. .\" columns option: mysqlimport
  123. \fB\-\-columns=\fR\fB\fIcolumn_list\fR\fR,
  124. \fB\-c \fR\fB\fIcolumn_list\fR\fR
  125. .sp
  126. This option takes a comma\-separated list of column names as its value\&. The order of the column names indicates how to match data file columns with table columns\&.
  127. .RE
  128. .sp
  129. .RS 4
  130. .ie n \{\
  131. \h'-04'\(bu\h'+03'\c
  132. .\}
  133. .el \{\
  134. .sp -1
  135. .IP \(bu 2.3
  136. .\}
  137. .\" mysqlimport: compress option
  138. .\" compress option: mysqlimport
  139. \fB\-\-compress\fR,
  140. \fB\-C\fR
  141. .sp
  142. Compress all information sent between the client and the server if both support compression\&.
  143. .RE
  144. .sp
  145. .RS 4
  146. .ie n \{\
  147. \h'-04'\(bu\h'+03'\c
  148. .\}
  149. .el \{\
  150. .sp -1
  151. .IP \(bu 2.3
  152. .\}
  153. .\" mysqlimport: debug option
  154. .\" debug option: mysqlimport
  155. \fB\-\-debug[=\fR\fB\fIdebug_options\fR\fR\fB]\fR,
  156. \fB\-# [\fR\fB\fIdebug_options\fR\fR\fB]\fR
  157. .sp
  158. Write a debugging log\&. A typical
  159. \fIdebug_options\fR
  160. string is
  161. \'d:t:o,\fIfile_name\fR\'\&. The default is
  162. \'d:t:o\'\&.
  163. .RE
  164. .sp
  165. .RS 4
  166. .ie n \{\
  167. \h'-04'\(bu\h'+03'\c
  168. .\}
  169. .el \{\
  170. .sp -1
  171. .IP \(bu 2.3
  172. .\}
  173. .\" mysqlimport: debug-check option
  174. .\" debug-check option: mysqlimport
  175. \fB\-\-debug\-check\fR
  176. .sp
  177. Print some debugging information when the program exits\&. This option was added in MySQL 5\&.1\&.21\&.
  178. .RE
  179. .sp
  180. .RS 4
  181. .ie n \{\
  182. \h'-04'\(bu\h'+03'\c
  183. .\}
  184. .el \{\
  185. .sp -1
  186. .IP \(bu 2.3
  187. .\}
  188. .\" mysqlimport: debug-info option
  189. .\" debug-info option: mysqlimport
  190. \fB\-\-debug\-info\fR
  191. .sp
  192. Print debugging information and memory and CPU usage statistics when the program exits\&. This option was added in MySQL 5\&.1\&.14\&.
  193. .RE
  194. .sp
  195. .RS 4
  196. .ie n \{\
  197. \h'-04'\(bu\h'+03'\c
  198. .\}
  199. .el \{\
  200. .sp -1
  201. .IP \(bu 2.3
  202. .\}
  203. .\" mysqlimport: default-character-set option
  204. .\" default-character-set option: mysqlimport
  205. \fB\-\-default\-character\-set=\fR\fB\fIcharset_name\fR\fR
  206. .sp
  207. Use
  208. \fIcharset_name\fR
  209. as the default character set\&. See
  210. Section\ \&9.5, \(lqCharacter Set Configuration\(rq\&.
  211. .RE
  212. .sp
  213. .RS 4
  214. .ie n \{\
  215. \h'-04'\(bu\h'+03'\c
  216. .\}
  217. .el \{\
  218. .sp -1
  219. .IP \(bu 2.3
  220. .\}
  221. .\" mysqlimport: delete option
  222. .\" delete option: mysqlimport
  223. \fB\-\-delete\fR,
  224. \fB\-D\fR
  225. .sp
  226. Empty the table before importing the text file\&.
  227. .RE
  228. .sp
  229. .RS 4
  230. .ie n \{\
  231. \h'-04'\(bu\h'+03'\c
  232. .\}
  233. .el \{\
  234. .sp -1
  235. .IP \(bu 2.3
  236. .\}
  237. .\" mysqldump: fields-terminated-by option
  238. .\" fields-terminated-by option: mysqldump
  239. \fB\-\-fields\-terminated\-by=\&.\&.\&.\fR,
  240. .\" mysqldump: fields-enclosed-by option
  241. .\" fields-enclosed-by option: mysqldump
  242. \fB\-\-fields\-enclosed\-by=\&.\&.\&.\fR,
  243. .\" mysqldump: fields-optionally-enclosed-by option
  244. .\" fields-optionally-enclosed-by option: mysqldump
  245. \fB\-\-fields\-optionally\-enclosed\-by=\&.\&.\&.\fR,
  246. .\" mysqldump: fields-escaped-by option
  247. .\" fields-escaped-by option: mysqldump
  248. \fB\-\-fields\-escaped\-by=\&.\&.\&.\fR
  249. .sp
  250. These options have the same meaning as the corresponding clauses for
  251. LOAD DATA INFILE\&. See
  252. Section\ \&12.2.6, \(lqLOAD DATA INFILE Syntax\(rq\&.
  253. .RE
  254. .sp
  255. .RS 4
  256. .ie n \{\
  257. \h'-04'\(bu\h'+03'\c
  258. .\}
  259. .el \{\
  260. .sp -1
  261. .IP \(bu 2.3
  262. .\}
  263. .\" mysqlimport: force option
  264. .\" force option: mysqlimport
  265. \fB\-\-force\fR,
  266. \fB\-f\fR
  267. .sp
  268. Ignore errors\&. For example, if a table for a text file does not exist, continue processing any remaining files\&. Without
  269. \fB\-\-force\fR,
  270. \fBmysqlimport\fR
  271. exits if a table does not exist\&.
  272. .RE
  273. .sp
  274. .RS 4
  275. .ie n \{\
  276. \h'-04'\(bu\h'+03'\c
  277. .\}
  278. .el \{\
  279. .sp -1
  280. .IP \(bu 2.3
  281. .\}
  282. .\" mysqlimport: host option
  283. .\" host option: mysqlimport
  284. \fB\-\-host=\fR\fB\fIhost_name\fR\fR,
  285. \fB\-h \fR\fB\fIhost_name\fR\fR
  286. .sp
  287. Import data to the MySQL server on the given host\&. The default host is
  288. localhost\&.
  289. .RE
  290. .sp
  291. .RS 4
  292. .ie n \{\
  293. \h'-04'\(bu\h'+03'\c
  294. .\}
  295. .el \{\
  296. .sp -1
  297. .IP \(bu 2.3
  298. .\}
  299. .\" mysqlimport: ignore option
  300. .\" ignore option: mysqlimport
  301. \fB\-\-ignore\fR,
  302. \fB\-i\fR
  303. .sp
  304. See the description for the
  305. \fB\-\-replace\fR
  306. option\&.
  307. .RE
  308. .sp
  309. .RS 4
  310. .ie n \{\
  311. \h'-04'\(bu\h'+03'\c
  312. .\}
  313. .el \{\
  314. .sp -1
  315. .IP \(bu 2.3
  316. .\}
  317. .\" mysqlimport: ignore-lines option
  318. .\" ignore-lines option: mysqlimport
  319. \fB\-\-ignore\-lines=\fR\fB\fIN\fR\fR
  320. .sp
  321. Ignore the first
  322. \fIN\fR
  323. lines of the data file\&.
  324. .RE
  325. .sp
  326. .RS 4
  327. .ie n \{\
  328. \h'-04'\(bu\h'+03'\c
  329. .\}
  330. .el \{\
  331. .sp -1
  332. .IP \(bu 2.3
  333. .\}
  334. .\" mysqldump: lines-terminated-by option
  335. .\" lines-terminated-by option: mysqldump
  336. \fB\-\-lines\-terminated\-by=\&.\&.\&.\fR
  337. .sp
  338. This option has the same meaning as the corresponding clause for
  339. LOAD DATA INFILE\&. For example, to import Windows files that have lines terminated with carriage return/linefeed pairs, use
  340. \fB\-\-lines\-terminated\-by="\er\en"\fR\&. (You might have to double the backslashes, depending on the escaping conventions of your command interpreter\&.) See
  341. Section\ \&12.2.6, \(lqLOAD DATA INFILE Syntax\(rq\&.
  342. .RE
  343. .sp
  344. .RS 4
  345. .ie n \{\
  346. \h'-04'\(bu\h'+03'\c
  347. .\}
  348. .el \{\
  349. .sp -1
  350. .IP \(bu 2.3
  351. .\}
  352. .\" mysqlimport: local option
  353. .\" local option: mysqlimport
  354. \fB\-\-local\fR,
  355. \fB\-L\fR
  356. .sp
  357. Read input files locally from the client host\&.
  358. .RE
  359. .sp
  360. .RS 4
  361. .ie n \{\
  362. \h'-04'\(bu\h'+03'\c
  363. .\}
  364. .el \{\
  365. .sp -1
  366. .IP \(bu 2.3
  367. .\}
  368. .\" mysqlimport: lock-tables option
  369. .\" lock-tables option: mysqlimport
  370. \fB\-\-lock\-tables\fR,
  371. \fB\-l\fR
  372. .sp
  373. Lock
  374. \fIall\fR
  375. tables for writing before processing any text files\&. This ensures that all tables are synchronized on the server\&.
  376. .RE
  377. .sp
  378. .RS 4
  379. .ie n \{\
  380. \h'-04'\(bu\h'+03'\c
  381. .\}
  382. .el \{\
  383. .sp -1
  384. .IP \(bu 2.3
  385. .\}
  386. .\" mysqlimport: low-priority option
  387. .\" low-priority option: mysqlimport
  388. \fB\-\-low\-priority\fR
  389. .sp
  390. Use
  391. LOW_PRIORITY
  392. when loading the table\&. This affects only storage engines that use only table\-level locking (such as
  393. MyISAM,
  394. MEMORY, and
  395. MERGE)\&.
  396. .RE
  397. .sp
  398. .RS 4
  399. .ie n \{\
  400. \h'-04'\(bu\h'+03'\c
  401. .\}
  402. .el \{\
  403. .sp -1
  404. .IP \(bu 2.3
  405. .\}
  406. .\" mysqlimport: password option
  407. .\" password option: mysqlimport
  408. \fB\-\-password[=\fR\fB\fIpassword\fR\fR\fB]\fR,
  409. \fB\-p[\fR\fB\fIpassword\fR\fR\fB]\fR
  410. .sp
  411. The password to use when connecting to the server\&. If you use the short option form (\fB\-p\fR), you
  412. \fIcannot\fR
  413. have a space between the option and the password\&. If you omit the
  414. \fIpassword\fR
  415. value following the
  416. \fB\-\-password\fR
  417. or
  418. \fB\-p\fR
  419. option on the command line,
  420. \fBmysqlimport\fR
  421. prompts for one\&.
  422. .sp
  423. Specifying a password on the command line should be considered insecure\&. See
  424. Section\ \&5.3.2.2, \(lqEnd-User Guidelines for Password Security\(rq\&. You can use an option file to avoid giving the password on the command line\&.
  425. .RE
  426. .sp
  427. .RS 4
  428. .ie n \{\
  429. \h'-04'\(bu\h'+03'\c
  430. .\}
  431. .el \{\
  432. .sp -1
  433. .IP \(bu 2.3
  434. .\}
  435. .\" mysqlimport: pipe option
  436. .\" pipe option: mysqlimport
  437. \fB\-\-pipe\fR,
  438. \fB\-W\fR
  439. .sp
  440. On Windows, connect to the server via a named pipe\&. This option applies only if the server supports named\-pipe connections\&.
  441. .RE
  442. .sp
  443. .RS 4
  444. .ie n \{\
  445. \h'-04'\(bu\h'+03'\c
  446. .\}
  447. .el \{\
  448. .sp -1
  449. .IP \(bu 2.3
  450. .\}
  451. .\" mysqlimport: port option
  452. .\" port option: mysqlimport
  453. \fB\-\-port=\fR\fB\fIport_num\fR\fR,
  454. \fB\-P \fR\fB\fIport_num\fR\fR
  455. .sp
  456. The TCP/IP port number to use for the connection\&.
  457. .RE
  458. .sp
  459. .RS 4
  460. .ie n \{\
  461. \h'-04'\(bu\h'+03'\c
  462. .\}
  463. .el \{\
  464. .sp -1
  465. .IP \(bu 2.3
  466. .\}
  467. .\" mysqlimport: protocol option
  468. .\" protocol option: mysqlimport
  469. \fB\-\-protocol={TCP|SOCKET|PIPE|MEMORY}\fR
  470. .sp
  471. The connection protocol to use for connecting to the server\&. It is useful when the other connection parameters normally would cause a protocol to be used other than the one you want\&. For details on the allowable values, see
  472. Section\ \&4.2.2, \(lqConnecting to the MySQL Server\(rq\&.
  473. .RE
  474. .sp
  475. .RS 4
  476. .ie n \{\
  477. \h'-04'\(bu\h'+03'\c
  478. .\}
  479. .el \{\
  480. .sp -1
  481. .IP \(bu 2.3
  482. .\}
  483. .\" mysqlimport: replace option
  484. .\" replace option: mysqlimport
  485. \fB\-\-replace\fR,
  486. \fB\-r\fR
  487. .sp
  488. The
  489. \fB\-\-replace\fR
  490. and
  491. \fB\-\-ignore\fR
  492. options control handling of input rows that duplicate existing rows on unique key values\&. If you specify
  493. \fB\-\-replace\fR, new rows replace existing rows that have the same unique key value\&. If you specify
  494. \fB\-\-ignore\fR, input rows that duplicate an existing row on a unique key value are skipped\&. If you do not specify either option, an error occurs when a duplicate key value is found, and the rest of the text file is ignored\&.
  495. .RE
  496. .sp
  497. .RS 4
  498. .ie n \{\
  499. \h'-04'\(bu\h'+03'\c
  500. .\}
  501. .el \{\
  502. .sp -1
  503. .IP \(bu 2.3
  504. .\}
  505. .\" mysqlimport: silent option
  506. .\" silent option: mysqlimport
  507. \fB\-\-silent\fR,
  508. \fB\-s\fR
  509. .sp
  510. Silent mode\&. Produce output only when errors occur\&.
  511. .RE
  512. .sp
  513. .RS 4
  514. .ie n \{\
  515. \h'-04'\(bu\h'+03'\c
  516. .\}
  517. .el \{\
  518. .sp -1
  519. .IP \(bu 2.3
  520. .\}
  521. .\" mysqlimport: socket option
  522. .\" socket option: mysqlimport
  523. \fB\-\-socket=\fR\fB\fIpath\fR\fR,
  524. \fB\-S \fR\fB\fIpath\fR\fR
  525. .sp
  526. For connections to
  527. localhost, the Unix socket file to use, or, on Windows, the name of the named pipe to use\&.
  528. .RE
  529. .sp
  530. .RS 4
  531. .ie n \{\
  532. \h'-04'\(bu\h'+03'\c
  533. .\}
  534. .el \{\
  535. .sp -1
  536. .IP \(bu 2.3
  537. .\}
  538. .\" mysqlimport: SSL options
  539. .\" SSL options: mysqlimport
  540. \fB\-\-ssl*\fR
  541. .sp
  542. Options that begin with
  543. \fB\-\-ssl\fR
  544. specify whether to connect to the server via SSL and indicate where to find SSL keys and certificates\&. See
  545. Section\ \&5.5.6.3, \(lqSSL Command Options\(rq\&.
  546. .RE
  547. .sp
  548. .RS 4
  549. .ie n \{\
  550. \h'-04'\(bu\h'+03'\c
  551. .\}
  552. .el \{\
  553. .sp -1
  554. .IP \(bu 2.3
  555. .\}
  556. .\" mysqlimport: user option
  557. .\" user option: mysqlimport
  558. \fB\-\-user=\fR\fB\fIuser_name\fR\fR,
  559. \fB\-u \fR\fB\fIuser_name\fR\fR
  560. .sp
  561. The MySQL user name to use when connecting to the server\&.
  562. .RE
  563. .sp
  564. .RS 4
  565. .ie n \{\
  566. \h'-04'\(bu\h'+03'\c
  567. .\}
  568. .el \{\
  569. .sp -1
  570. .IP \(bu 2.3
  571. .\}
  572. .\" mysqlimport: use-threads option
  573. .\" use-threads option: mysqlimport
  574. \fB\-\-use\-threads=\fR\fB\fIN\fR\fR
  575. .sp
  576. Load files in parallel using
  577. \fIN\fR
  578. threads\&. This option was added in MySQL 5\&.1\&.7\&.
  579. .RE
  580. .sp
  581. .RS 4
  582. .ie n \{\
  583. \h'-04'\(bu\h'+03'\c
  584. .\}
  585. .el \{\
  586. .sp -1
  587. .IP \(bu 2.3
  588. .\}
  589. .\" mysqlimport: verbose option
  590. .\" verbose option: mysqlimport
  591. \fB\-\-verbose\fR,
  592. \fB\-v\fR
  593. .sp
  594. Verbose mode\&. Print more information about what the program does\&.
  595. .RE
  596. .sp
  597. .RS 4
  598. .ie n \{\
  599. \h'-04'\(bu\h'+03'\c
  600. .\}
  601. .el \{\
  602. .sp -1
  603. .IP \(bu 2.3
  604. .\}
  605. .\" mysqlimport: version option
  606. .\" version option: mysqlimport
  607. \fB\-\-version\fR,
  608. \fB\-V\fR
  609. .sp
  610. Display version information and exit\&.
  611. .RE
  612. .PP
  613. Here is a sample session that demonstrates use of
  614. \fBmysqlimport\fR:
  615. .sp
  616. .if n \{\
  617. .RS 4
  618. .\}
  619. .nf
  620. shell> \fBmysql \-e \'CREATE TABLE imptest(id INT, n VARCHAR(30))\' test\fR
  621. shell> \fBed\fR
  622. a
  623. 100 Max Sydow
  624. 101 Count Dracula
  625. \&.
  626. w imptest\&.txt
  627. 32
  628. q
  629. shell> \fBod \-c imptest\&.txt\fR
  630. 0000000 1 0 0 \et M a x S y d o w \en 1 0
  631. 0000020 1 \et C o u n t D r a c u l a \en
  632. 0000040
  633. shell> \fBmysqlimport \-\-local test imptest\&.txt\fR
  634. test\&.imptest: Records: 2 Deleted: 0 Skipped: 0 Warnings: 0
  635. shell> \fBmysql \-e \'SELECT * FROM imptest\' test\fR
  636. +\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
  637. | id | n |
  638. +\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
  639. | 100 | Max Sydow |
  640. | 101 | Count Dracula |
  641. +\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
  642. .fi
  643. .if n \{\
  644. .RE
  645. .\}
  646. .SH "COPYRIGHT"
  647. .br
  648. .PP
  649. Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc.
  650. .PP
  651. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
  652. .PP
  653. 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.
  654. .PP
  655. 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/.
  656. .sp
  657. .SH "SEE ALSO"
  658. For more information, please refer to the MySQL Reference Manual,
  659. which may already be installed locally and which is also available
  660. online at http://dev.mysql.com/doc/.
  661. .SH AUTHOR
  662. Sun Microsystems, Inc. (http://www.mysql.com/).