Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 20th, 2012  |  syntax: None  |  size: 1.29 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. --tab=path, -T path
  2.  
  3.            Produce tab-separated text-format data files. For each dumped table, mysqldump creates a tbl_name.sql file that contains the CREATE TABLE
  4.            statement that creates the table, and the server writes a tbl_name.txt file that contains its data. The option value is the directory in
  5.            which to write the files.
  6.  
  7.                Note
  8.                This option should be used only when mysqldump is run on the same machine as the mysqld server. You must have the FILE privilege, and the
  9.                server must have permission to write files in the directory that you specify.
  10.            By default, the .txt data files are formatted using tab characters between column values and a newline at the end of each line. The format
  11.            can be specified explicitly using the --fields-xxx and --lines-terminated-by options.
  12.  
  13.            As of MySQL 5.1.38, column values are converted to the character set specified by the --default-character-set option. Prior to 5.1.38 or if
  14.            no such option is present, values are dumped using the binary character set. In effect, there is no character set conversion. If a table
  15.            contains columns in several character sets, the output data file will as well and you may not be able to reload the file correctly.