Here's a snapshot from a mysql environment:

mysql> LOAD DATA LOCAL INFILE 'c:/mysql/miamibilling-Cash.txt'
    ->  REPLACE INTO TABLE ln_cash
    ->  FIELDS TERMINATED BY '|'
    ->          ENCLOSED BY '~'
    ->  LINES TERMINATED BY '\r\n'
    -> ;
Query OK, 16374 rows affected (20.83 sec)
Records: 16374  Deleted: 0  Skipped: 0  Warnings: 69

mysql> show warnings;
Empty set (0.00 sec)

What am I doing wrong that I can't find out what the 69 warnings are?
I'm using 4.1.0 alpha.

Thanks.

Randy

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to