<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - CSV Storage Engine</title>
        <description>Forum for CSV Storage Engine</description>
        <link>https://forums.mysql.com/list.php?127</link>
        <lastBuildDate>Tue, 16 Jun 2026 09:29:58 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?127,741266,741266#msg-741266</guid>
            <title>ERROR 1064 with LOAD DATA statement (FIELDS COLUMNS) (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,741266,741266#msg-741266</link>
            <description><![CDATA[ I have the following SQL statement which I source into mysql (5.7.44, Windows 10):<br />
<br />
drop table if exists test;<br />
create table test (col1 VARCHAR(64), col2 VARCHAR(80) );<br />
LOAD DATA LOCAL INFILE &quot;t.csv&quot; INTO TABLE test FIELDS OPTIONALLY ENCLOSED BY &#039;&quot;&#039; ESCAPED BY &#039;&quot;&#039; COLUMNS TERMINATED BY &#039;;&#039; LINES TERMINATED BY &#039;\r\n&#039; ;<br />
<br />
The Data is the following:<br />
<br />
E605;^M<br />
E507;^M&quot;A string^M<br />
spanning several lines &quot;some Umlauts in &quot;üöä&quot; to show&quot;^M<br />
escaping^M<br />
last line&quot;^M<br />
E600;&quot;once^M<br />
again&quot;^M<br />
<br />
The error occurs when I add the FIELDS related keywords:<br />
FIELDS OPTIONALLY ENCLOSED BY &#039;&quot;&#039; ESCAPED BY &#039;&quot;&#039;]]></description>
            <dc:creator>Christoph Kukulies</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Sun, 05 Oct 2025 14:43:32 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,695769,695769#msg-695769</guid>
            <title>parsing csv file to analyze insert, update operations (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,695769,695769#msg-695769</link>
            <description><![CDATA[ I am trying to find some csv parsing mechanism so that it detect insert and update operation to be performed.<br />
<br />
a.csv<br />
<br />
id  name   age   operation<br />
1.   abc    23    insert<br />
2.   xyz    50    insert<br />
3.   pqr    45    update<br />
4.   efg    20    insert  <br />
<br />
Above is the csv file structure that I need to parse.<br />
<br />
I already have stored procedures for the create and update the records.<br />
Records with id(1,2,4) to be pass to create stored procedure and <br />
id(3) to be pass to update stored procedure.]]></description>
            <dc:creator>Kaushik Shete</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Tue, 06 Apr 2021 15:49:32 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,685011,685011#msg-685011</guid>
            <title>MySql after inset trigger not exporting new inserted data into csv file (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,685011,685011#msg-685011</link>
            <description><![CDATA[ I am calling the procedure to export a newly inserted record into the CSV file from MySQL after insert trigger. For dynamic file generation, I wrote a PHP script. The procedure is invoking this PHP script by UDF function, sys_exec. The problem, I am facing here is my trigger is calling procedure before actually inserting data into the database so after every after insert trigger call, I am getting old records in CSV file. Is there any solution to get only new inserted data into CSV file? <br />
Here is my after insert trigger, which gives a call to the procedure for exporting CSV file:<br />
BEGIN<br />
    call exportFile();<br />
END<br />
<br />
exportFile Procedure: <br />
BEGIN<br />
DECLARE RESULT INT;<br />
SET RESULT =  sys_exec(&#039;php C:/export.php&#039;);<br />
END<br />
<br />
PHP script to generate a new CSV file and write a new inserted record in the file:<br />
<br />
$query = &quot; select id from table &quot;;<br />
$result = mysqli_query($conn, $query);<br />
while($row = mysqli_fetch_row($result)) {<br />
    fputcsv($fp, $row);<br />
<br />
}]]></description>
            <dc:creator>Priyadarshni Sagar</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Sun, 08 Mar 2020 16:59:14 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,675717,675717#msg-675717</guid>
            <title>INTO OUTFILE Error 2 (2 replies)</title>
            <link>https://forums.mysql.com/read.php?127,675717,675717#msg-675717</link>
            <description><![CDATA[ Good day, I am trying to run the following command but it does not seem to work.<br />
<br />
[root@ ]# mysql -pPassword asteriskcdrdb -s -b -e &quot;select &#039;Account ID&#039;,&#039;Destination&#039;,&#039;Operator&#039;,&#039;Provider&#039;,&#039;Date&#039;,&#039;BillSec&#039;,&#039;Rate id&#039;,&#039;Cost&#039; UNION select accountcode,dst,&#039;PBX&#039;,route_name,date_format(calldate,&#039;%Y/%c/%e %H:%i&#039;),billsec as Duration,route_id,round(cost,5) from cdr where calldate &gt; &#039;$prev_date&#039; and calldate &lt; &#039;$cur_date&#039; and cost &gt; 0 and accountcode=&#039;$accountcode&#039; UNION select &#039;&#039;,&#039;&#039;,&#039;&#039;,&#039;&#039;,&#039;&#039;,&#039;&#039;,concat(&#039;R&#039;,sum(round(cost,5))),&#039;&#039; from cdr where calldate &gt; &#039;$prev_date&#039; and calldate &lt; &#039;$cur_date&#039; and cost &gt; 0 and accountcode=&#039;$accountcode&#039; INTO OUTFILE &#039;/tmp/VoipBilling-$date/CDR/$accountcode-$date.csv&#039; FIELDS TERMINATED BY &#039;,&#039;;&quot;<br />
<br />
Error is: ERROR 1 (HY000) at line 1: Can&#039;t create/write to file &#039;/tmp/VoipBilling-/CDR/-.csv&#039; (Errcode: 2)<br />
<br />
Note the filepath in the error code and the filepath specified differs. Almost as if Mariadb does not know to create the folder with the date i.e /tmp/VoipBilling-2019-06-22/CDR/BILLTEST-2019-06-22.csv&#039;&#039;<br />
<br />
Instead it wants to write it as &#039;/tmp/VoipBilling-/CDR/-.csv&#039;<br />
<br />
When I run the same command but change the output path to not use the $date it works. i.e [root@ ]# mysql -pPassword asteriskcdrdb -s -b -e &quot;select &#039;Account ID&#039;,&#039;Destination&#039;,&#039;Operator&#039;,&#039;Provider&#039;,&#039;Date&#039;,&#039;BillSec&#039;,&#039;Rate id&#039;,&#039;Cost&#039; UNION select accountcode,dst,&#039;PBX&#039;,route_name,date_format(calldate,&#039;%Y/%c/%e %H:%i&#039;),billsec as Duration,route_id,round(cost,5) from cdr where calldate &gt; &#039;$prev_date&#039; and calldate &lt; &#039;$cur_date&#039; and cost &gt; 0 and accountcode=&#039;$accountcode&#039; UNION select &#039;&#039;,&#039;&#039;,&#039;&#039;,&#039;&#039;,&#039;&#039;,&#039;&#039;,concat(&#039;R&#039;,sum(round(cost,5))),&#039;&#039; from cdr where calldate &gt; &#039;$prev_date&#039; and calldate &lt; &#039;$cur_date&#039; and cost &gt; 0 and accountcode=&#039;$accountcode&#039; INTO OUTFILE &#039;/tmp/VoipBilling/CDR/accountcode.csv&#039; FIELDS TERMINATED BY &#039;,&#039;;&quot;<br />
<br />
So it is safe to say this is not a folder permision but the command not being able to create the folder with $date specified.<br />
<br />
Please assist]]></description>
            <dc:creator>Llewellyn Pienaar</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Sat, 22 Jun 2019 16:09:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,667194,667194#msg-667194</guid>
            <title>Uploading CSV (2 replies)</title>
            <link>https://forums.mysql.com/read.php?127,667194,667194#msg-667194</link>
            <description><![CDATA[ Sorry if this is a very basic question, but ....<br />
<br />
I&#039;m in the process of setting up a MySQL database and have a one line test entry.<br />
<br />
When the database is running live I need to be able to sort by one of the columns (surname) so have been trying to see how I may do this.<br />
<br />
I can export the database as a CSV file, which is then opened in a spreadsheet (Open Office Calc) where it may be sorted.<br />
<br />
However, I am unable to import it back again as whatever I try I have the error message:<br />
<br />
     Invalid column count in CSV input on line 1.<br />
<br />
Yet I have ten columns in both MySQL and the CSV file<br />
<br />
The columns look like this:<br />
<br />
&quot;id&quot; &quot;username&quot; &quot;firstname&quot; &quot;surname&quot; &quot;password&quot; &quot;email&quot; &quot;active&quot; &quot;code&quot; &quot;role&quot; &quot;avatar&quot;<br />
<br />
<br />
When I export the file into OO Calc I use the | to separate the fields.  I know I have to edit this out if uploading to a flat database, but what should I be doing to successfully import the CSV file into MySQL please?  At present I have been changing the &quot;Columns separated with:&quot; field from a comma to the | separator and I&#039;ve tried entering: <br />
<br />
id,username,firstname,surname,password,email,active,code,role,avatar<br />
<br />
in the Column names field, but it made no difference.]]></description>
            <dc:creator>Peter Richards</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Sat, 23 Jun 2018 04:10:05 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,653719,653719#msg-653719</guid>
            <title>how to automate Loading mutiple .csv files from folder (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,653719,653719#msg-653719</link>
            <description><![CDATA[ Hi all, <br />
How to load with one call to load multiple .csv files sitting in the folder.<br />
<br />
And once done to move them to archive  <br />
 <br />
Any instruction to execute that?]]></description>
            <dc:creator>Info question</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Fri, 23 Dec 2016 00:05:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,653453,653453#msg-653453</guid>
            <title>When to use CSV storage engine for MySQL? (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,653453,653453#msg-653453</link>
            <description><![CDATA[ When to use CSV storage engine for MySQL?]]></description>
            <dc:creator>Mukul chadha</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Wed, 14 Dec 2016 06:35:49 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,636061,636061#msg-636061</guid>
            <title>Unable to import csv by sqlimport (3 replies)</title>
            <link>https://forums.mysql.com/read.php?127,636061,636061#msg-636061</link>
            <description><![CDATA[ Hey Team,<br />
<br />
Im trying to import the below csv file data-<br />
Names<br />
Gould, Cherokee<br />
Mccall, Quyn<br />
Blair, Jerome<br />
Norris, Austin<br />
Bush, Vera<br />
Bryant, Macy<br />
Bray, Raphael<br />
Kelley, Drake<br />
Moore, Yardley<br />
Compton, Pascale<br />
Howell, Martena<br />
<br />
But i get the below error during its mysqlimport operation-<br />
C:\Program Files\MySQL\MySQL Server 5.6\bin&gt;.\mysqlimport.exe Events h:\Desktop\Nameslist.csv -u root -h dcw01 -vr --local -p --fields-enclo<br />
sed-by=&#039;&quot;&#039;<br />
Enter password: ********<br />
Connecting to dcw01<br />
Selecting database Events<br />
Loading data from LOCAL file: h:/Desktop/Nameslist.csv into Nameslist<br />
.\mysqlimport.exe: Error: 1083, Field separator argument is not what is expected; check the manual, when using table: Nameslist<br />
<br />
Do suggest how this can be fixed.]]></description>
            <dc:creator>Alan Jebakumar</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Thu, 22 Oct 2015 04:02:53 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,616204,616204#msg-616204</guid>
            <title>Import txt files with  fixed width (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,616204,616204#msg-616204</link>
            <description><![CDATA[ hi,<br />
I have to do a procedure to import data from text files.<br />
The fields have fixed width and are not delimited with &quot;; &quot; character or similar.<br />
I can not use sql like this:<br />
LOAD DATA INFILE &#039;/ tmp / test.txt&#039; INTO TABLE test FIELDS TERMINATED BY &#039;;&#039;<br />
<br />
Thanks a lot]]></description>
            <dc:creator>mariacristina branca</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Fri, 27 Jun 2014 13:41:50 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,610862,610862#msg-610862</guid>
            <title>How to load multiple csvs from a hierarchy structure? (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,610862,610862#msg-610862</link>
            <description><![CDATA[ Hi all, <br />
i am on a Windows machime.<br />
I have a directory A with many subdirectories A1, A2, ... An (some hundreds). <br />
Each subdirectory Ax has some csv files Ax1 Ax2 ...Axm (some tens). <br />
Each csv file has the same structure and i build the LOAD DATA INFILE statement to load the data on a mysql unique table. <br />
 LOAD DATA INFILE filename ....<br />
How can i reiterate automatically the single load data infile to load all the csvs without moving them and regroup the csvs?? <br />
Any instruction to execute that? <br />
Thanks for your help <br />
Roberto]]></description>
            <dc:creator>Roberto B.</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Mon, 24 Mar 2014 22:12:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,594667,594667#msg-594667</guid>
            <title>Cron bash MySQL Query from 2 tables - export to CSV (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,594667,594667#msg-594667</link>
            <description><![CDATA[ I am really bad at creating MySQL queries and need some help. I need to create a bash file to be triggered by a cron job once a week - that queries two tables, grabbing data where the user IDs match in both tables, and adding the select data to a CSV export file. I would like the CSV to be comma separated. Right now the best I can get it tab separated, but that&#039;s not my current problem....<br />
<br />
My issue in getting this query to run is my syntax (which I know is wrong as I have simply stolen snippets from various articles online). I did get each DB query to work separately (grabbing from one table with one query and another table with another query). Now I need to combine them to grab only the data I need.<br />
<br />
Here&#039;s my current (non working) bash file:<br />
<br />
!/bin/bash<br />
mysql -u USERNAME --password=PASSWORD --database=xxxx_DBNAME --execute=&#039;SELECT xxxx_videotraining_user.user_id, xxxx_videotraining_user.training_title, xxxx_videotraining_user.status, xxxx_users.id, xxxx_users.name, xxxx_users.user_employer, xxxx_users.user_ss_number WHERE xxxx_videotraining_user.user_id = xxxx_users.id AND xxxx_videotraining_user.status = &quot;Completed&quot; AND xxxx_users.user_ss_number &gt; &quot;1&quot; ORDER BY xxxx_videotraining_user.user_id LIMIT 0, 10000 AND &#039; -C &gt; /home/xxxx/subs/vtc/DB_EXPORTS/xxxx_videotraining_completed.csv<br />
<br />
I think you can see what I am trying to accomplish here - any help would be greatly appreciated!<br />
<br />
NEXT: is there a way to email the results to a specific email address (or multiple addresses) using the bash file?<br />
<br />
Thank you.<br />
--Kevin]]></description>
            <dc:creator>Kevin Mc</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Fri, 13 Sep 2013 22:07:14 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,585760,585760#msg-585760</guid>
            <title>Script that recognises the name of a column in a CSV file and matches it to the correspondent column, with the same name, in a MySql database (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,585760,585760#msg-585760</link>
            <description><![CDATA[ Hi,<br />
<br />
we are using PHP and MySql for our application.<br />
<br />
we have many CSV files with different fields&#039; order and some fields are empty, for example:<br />
<br />
- CSV1 has the following fields order: name, description, date, address, phone<br />
- CSV2 has the following fields order: address, description, name, date<br />
- CSV3 has the following fields order: name, address<br />
<br />
To upload these data in our database (and then online), we now need to have all the CSVs&#039; fields always in the same order, so for example: name, descrition, phone, address, date. To do this we need to manually move the columns in the CSVs.<br />
<br />
My question is: if the CSV files have the columns in a different order (but with the same field names), is it possible to match a CSV column to its right position in the database, <br />
without having to edit manually the position of the columns in the CSV? <br />
<br />
So basically a script that recognise the name of a column in a CSV file (for ex. address) and match it (and its content) to the correspondent column in our MySql database.<br />
<br />
Many thanks,<br />
Sarah]]></description>
            <dc:creator>Sarah Raniero</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Wed, 08 May 2013 14:40:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,579080,579080#msg-579080</guid>
            <title>Import Data from CSV - Dont insert records that shows warning(s) or error(s) (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,579080,579080#msg-579080</link>
            <description><![CDATA[ Hello All,<br />
<br />
I&#039;m importing data from .csv file to Mysql db using &quot;LOAD DATA LOCAL INFILE&quot; query.<br />
.csv contains foll: <br />
<br />
ID | Name | Date | Price<br />
<br />
01 | abc  | 13-02-2013 | 1500<br />
02 | nbd  | blahblahbl | 1000<br />
03 | kgj  | 11-02-2012 | jghj<br />
<br />
My Mysql Table contains following columns:<br />
Id INTEGER <br />
NAME Varchat(100)<br />
InsertionTimeStamp Date<br />
Price INTEGER <br />
<br />
MySQL query to load .csv data to the table above :<br />
<br />
LOAD DATA LOCAL INFILE &#039;UserDetails.csv&#039; INTO TABLE userdetails<br />
FIELDS TERMINATED BY &#039;,&#039;<br />
IGNORE 1 LINES<br />
 (Id,Name,InsertionTimeStamp,Price)<br />
 set InsertionTimeStamp = str_to_date(@d,&#039;%d-%m-%Y&#039;);<br />
<br />
When I executed the query, 3 records got inserted into the table with 2 warnings<br />
<br />
a) Incorrect datetime value : &#039;blahblahbl&#039; for function str_to_date<br />
b) Data truncate at row 3 (because of invalid INTEGER for Price column)<br />
<br />
Question :<br />
<br />
1. Is there any way for avoiding data to be inserted in table which shows warnings/errors or the row which has invalid data <br />
<br />
I dont want Row 2 &amp; Row 3 to be inserted as it contains invalid data<br />
<br />
2. For WARNING of Incorrect datetime value above, can I get the row no also?<br />
Basically I want to get exact warning/error with the row number.<br />
<br />
Please help!<br />
<br />
Best Regards!]]></description>
            <dc:creator>connect fc</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Wed, 13 Feb 2013 10:49:58 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,573349,573349#msg-573349</guid>
            <title>data from Excel Sheets(in differtent formats) to Mysql server  import (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,573349,573349#msg-573349</link>
            <description><![CDATA[ <a href="http://www.alexband.net/forum/topics/hunted-season-1-episode-4-online-streaming-free-2012"  rel="nofollow">Hunted Season 1 Episode 4</a> Just about every period associated with Numerous Adjacent Best Product offers from in search oftough luck shows as well as starts with 15age 14 contestants. Every single episode, i dissenter is eradicated, <a href="http://www.alexband.net/forum/topics/blue-bloods-season-3-episode-7-online-streaming-free-in-hd-2012"  rel="nofollow">Blue Bloods Season 3 Episode 7</a> nevertheless throughout rare conditions some sort of double liquidation or perhaps zero liquidation was presented with through opinion on the judgment control panel. Makeovers ar applied to help participants at the outset of the growing season (generally following your 1st or 2nd eradication within the finals), as well as a trip to a worldwide terminus can be timetabled with about ii-thirds of the way over the period (usually <a href="http://www.alexband.net/forum/topics/haven-season-3-episode-8-online-streaming-free-on-movietail-2012"  rel="nofollow">Haven Season 3 Episode 8</a> with 5-6 participants staying).<br />
<br />
Americas Next Top Model Season 19 Episode 11 Online : Over who is going to smash the particular fiercest offer within the cascading down falls is victorious the particular honour of obtaining <a href="http://www.iphone4up.com/forum/topic/366-americas-next-top-model-season-19-episode-11-online-streaming-free/"  rel="nofollow">Americas Next Top Model Season 19 Episode 11</a><br />
 the woman image acceptance this surfaces involving Tyra&#039;s household.A brand new edition regarding &quot;North americaazines Up coming Circus tent Modelling&quot;, produced and also organised aside Tyra Banks, dividends having fresh partners, fresh natural talent and a brand new decide the actual audience. The women will certainly battle against eachother to help create the esteemed subject associated with &quot;The united statesersus Subsequent Leading Modelling&quot; and also vie for the life history-establishing choice deal that also includes unexampled companions Smashbox Cosmetics, Nine Western world and also Pvc Newspaper. The actual indicate unearths the actual modification of everyday women into potentially ferocious supermodels, along with individuals <a href="http://www.iphone4up.com/forum/topic/367-nikita-season-3-episode-4-online-streaming-free-in-hd-2012/"  rel="nofollow">Nikita Season 3 Episode 4</a> experiencing regular testing in which determine who can make shortened. Together with coaching aside supermodel Tyra Financial institutions along with contact with large-page mode-marketplace gurus, this finalists vie within a hugely more rapid custom modeling rendering boot camp - an accident program for you to supermodel reputation. <br />
<br />
Sort, exactly who used to coach Team recruits just before conquering you to definitely decease pertaining to failing to kill his or her concentrate on, have been discovered to get kidnapped <a href="http://igpgame.com/forums/topic/5-fringe-season-5-episode-6-online-streaming-free-in-hd/"  rel="nofollow">Fringe Season 5 Episode 6</a> a new girl as well as qualified the woman&#039;s as a kid-jewellry. He&#039;s the woman&#039;s grab a unpredictable volatile to finish that unsuccessful objective. Now Nikita along with Alex really need to get by way of her earlier she kills the Pakistani embassador. Mia, a good hole-and-corner(a) Split agent examining the actual home FTO, third Trend, is charged in the course of a good FBI foray into. Whenever Nikita and also Alex springtime her, <a href="http://soundcloud.com/grimm-season-2-episode-1/grimm-season-2-episode-11"  rel="nofollow">Grimm Season 2 Episode 11</a> your lover turns on these individuals, unveiling to presenting lost belief inwards Section and have became a member of finally Wave&#039;s cause. But as Section detects, 3rd Wave&#039;s head is in category while using the oral sex of any security company, using the team to fight any Oughout.Ersus. Senator to generate more cash. <a href="http://bleacherreport.com/users/1628355-undercover-boss-season-4-episode-2-online-streaming-free"  rel="nofollow">Undercover Boss Season 4 Episode 2</a><br />
<br />
Nikita Season 3 Episode 4 Online : Now i&#039;m guess When i weren&#039;t alone obtaining a little foggy whenever Liza <a href="http://soundcloud.com/shark-tank-season-4/shark-tank-season-4-episode-9"  rel="nofollow">Shark Tank Season 4 Episode 9</a> reunited with her mom and dad -- affectingly collection in order to Florencia plus the Machine&#039;s &quot;Never Let Me Proceed&quot; -- as Alex and Nikita seemed on. As the occurrence doubtless emphasised the amount of Nikita has to offer while both equally a tutor and electric potential rear, it turned out great to discover Alex granted yet another deal using true aroused bodyweight, due to the fact Fonseca tends to bring these kinds of command and also shade to <a href="http://bleacherreport.com/users/1628388-jungle-gold-season-1-episode-3-online-streaming-free"  rel="nofollow">Jungle Gold Season 1 Episode 3</a> the occasions.]]></description>
            <dc:creator>dimonddick dimonddick</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Fri, 09 Nov 2012 12:01:11 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,565192,565192#msg-565192</guid>
            <title>Can&#039;t load huge CSV file (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,565192,565192#msg-565192</link>
            <description><![CDATA[ Hello,<br />
<br />
My problem is a little bit complicated to understand. I have a csv file (27M) with more than 1048576 lines. <br />
<br />
Firstly, I&#039;ve tried to load it in a temporal table I&#039;ve created in mySQl, but when I excecute the follow instruction in MySQL QUery Browser: <br />
<br />
&quot;LOAD DATA LOCAL INFILE &#039;file.csv&#039;<br />
INTO TABLE Temp FIELDS TERMINATED BY &#039;,&#039;<br />
LINES TERMINATED BY &#039;\r\n&#039; IGNORE 1 LINES (column1,column2,column3,Column4,Column5,Column6)&quot;<br />
<br />
The result is &quot;Query Returned no Resulset&quot;.<br />
<br />
Secondly, I&#039;ve opened the file with Excel (obviously, Excel has told me that is not possible to load the whole file) and I&#039;ve saved it with only 1048576 lines. Then, when I tried to load the new file again, it works!!!<br />
<br />
I&#039;ve changed the max_allowed_packet=100M but definitely it doesn&#039;t work.<br />
<br />
I&#039;ve tried delete rows in notepad and I&#039;ve let the file with 1048576 lines but still doesn&#039;t work. It seems that Excel &quot;add something&quot; to the file.<br />
<br />
I hope you understand.]]></description>
            <dc:creator>Fabian Pinzon</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Thu, 16 Aug 2012 10:42:19 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,563313,563313#msg-563313</guid>
            <title>Copy an existing database to another machine (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,563313,563313#msg-563313</link>
            <description><![CDATA[ I want to copy an existing database from one machine to another. How can i export the whole database to a zip file or anyother csv file.]]></description>
            <dc:creator>Deep Lotia</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Mon, 30 Jul 2012 06:05:09 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,420221,420221#msg-420221</guid>
            <title>Export Table to Excel Sheet (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,420221,420221#msg-420221</link>
            <description><![CDATA[ Hello, im wondering, this:<br />
<br />
I have one table, and i want to export it to a CSV file.I know how to use the select * from table INTO OUTFILE &#039;/tmp/test.txt&#039;, BUT Thats not the problem.<br />
<br />
For Example:<br />
<br />
TABLE users<br />
------------<br />
id     names<br />
1      jerry<br />
2      michael<br />
<br />
i want this table ordered by fields in CSV, but all appears in the first COLUMN of the excel....<br />
<br />
<br />
CSV FIELDS<br />
-----------<br />
A1=1 jerry<br />
A2=2 michael<br />
<br />
So, how can i put the data, ordered in each field of the excel ?.... like this:<br />
<br />
CSV FIELDS<br />
-----------<br />
A1=1 B1=jerry<br />
A2=2 B2=michael<br />
<br />
My email is <a href="mailto:&#118;&#105;&#99;&#116;&#111;&#114;&#122;&#112;&#56;&#54;&#64;&#104;&#111;&#116;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;">&#118;&#105;&#99;&#116;&#111;&#114;&#122;&#112;&#56;&#54;&#64;&#104;&#111;&#116;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;</a>, THANK YOU VERY MUCH.]]></description>
            <dc:creator>Victor Hernan Zevallos Puppi</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Wed, 18 May 2011 06:39:50 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,413596,413596#msg-413596</guid>
            <title>migrating  Huge data from CSV File to mysql (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,413596,413596#msg-413596</link>
            <description><![CDATA[ Hi,<br />
<br />
i need to  migrate a huge(3.6GB) CSV data file to mysql,<br />
I tried with PHP script but it looks like won&#039;t work,<br />
<br />
please any one can assist me a way to resolve this problem.<br />
<br />
<br />
thanks :)]]></description>
            <dc:creator>Mahesh Dyade</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Thu, 24 Mar 2011 08:03:30 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,408749,408749#msg-408749</guid>
            <title>date format problem (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,408749,408749#msg-408749</link>
            <description><![CDATA[ I have the following file in CSV format:<br />
<br />
7,748857bb01f0731b58bbabd13a88bfad,<a href="http://www.coloradoboomerangs.com/,Colorado"  rel="nofollow">http://www.coloradoboomerangs.com/,Colorado</a> Boomerangs,12/15/2005 19:31<br />
<br />
When I use import statement from mysqladmin in order to import this csv file into a table in mysql then populated date column show date and time in (0000-00-00 00:00:00) format, which is given below:<br />
<br />
12 	2f87c060c8ada01d4500 	<a href="http://www.cs.stir.ac.uk/~kjt/"  rel="nofollow">http://www.cs.stir.ac.uk/~kjt/</a> 	BibTeX Style Examples 	0000-00-00 00:00:00<br />
<br />
How can I solve this problem so date should be populate like this <br />
<br />
12 	2f87c060c8ada01d4500 	<a href="http://www.cs.stir.ac.uk/~kjt/"  rel="nofollow">http://www.cs.stir.ac.uk/~kjt/</a> 	BibTeX Style Examples 12/15/2005 19:31<br />
<br />
Regards]]></description>
            <dc:creator>ch faisal</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Mon, 21 Feb 2011 09:31:58 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,385281,385281#msg-385281</guid>
            <title>import CSV file with Spanish Accents (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,385281,385281#msg-385281</link>
            <description><![CDATA[ Hello,<br />
<br />
I need to import a CSV file into my table with Spanish Accents. Tried to import, but the spanish accents are not inserting into the table. I&#039;ve already applied &quot;SET NAMES UTF-8&quot; and the table Collation as utf8_general_ci. Here is my create query of the table,<br />
<br />
CREATE TABLE `v_customer_master` (<br />
 `cus_master_id` int(10) NOT NULL auto_increment,<br />
 `cus_type` varchar(255) NOT NULL,<br />
 `company_name` varchar(255) NOT NULL,<br />
 `job_title` varchar(150) NOT NULL,<br />
 `name` varchar(255) NOT NULL,<br />
 `last_name` varchar(255) NOT NULL,<br />
 `dob` varchar(30) NOT NULL,<br />
 `tax` varchar(30) NOT NULL,<br />
 `email` varchar(255) NOT NULL,<br />
 `alternate_email` varchar(255) NOT NULL,<br />
 `security_question` varchar(255) NOT NULL,<br />
 `answer` varchar(255) NOT NULL,<br />
 `username` varchar(255) NOT NULL,<br />
 `pwd` varchar(255) NOT NULL,<br />
 `country` varchar(150) NOT NULL,<br />
 `state` varchar(150) NOT NULL,<br />
 `city` varchar(255) NOT NULL,<br />
 `address1` varchar(255) NOT NULL,<br />
 `address2` varchar(255) NOT NULL,<br />
 `zipcode` varchar(20) NOT NULL,<br />
 `phone1` varchar(20) NOT NULL,<br />
 `phone2` varchar(20) NOT NULL,<br />
 `mobile` varchar(15) NOT NULL,<br />
 `fax` varchar(20) NOT NULL,<br />
 `website` varchar(255) NOT NULL,<br />
 `note` text NOT NULL,<br />
 `hear_about` varchar(255) NOT NULL,<br />
 `activity_type` varchar(255) NOT NULL,<br />
 `no_of_emp` varchar(255) NOT NULL,<br />
 `newsletter` varchar(250) NOT NULL,<br />
 `sp_discount` varchar(250) NOT NULL,<br />
 `friend_name` varchar(255) NOT NULL,<br />
 `friend_email` varchar(255) NOT NULL,<br />
 `account_type` varchar(250) NOT NULL,<br />
 `business_type` varchar(150) NOT NULL,<br />
 `tax_zone` varchar(250) NOT NULL,<br />
 `discount` float NOT NULL,<br />
 `currency` varchar(250) NOT NULL,<br />
 `language` varchar(250) NOT NULL,<br />
 `photo` varchar(255) NOT NULL,<br />
 `small_logo` varchar(255) NOT NULL,<br />
 `big_logo` varchar(255) NOT NULL,<br />
 `sign` varchar(255) NOT NULL,<br />
 `assigned_to_master_dist` varchar(250) NOT NULL,<br />
 `assigned_to_dist` varchar(250) NOT NULL,<br />
 `assigned_to_agent` varchar(250) NOT NULL,<br />
 `assigned_to_engineering` varchar(255) NOT NULL,<br />
 `customer_status` varchar(255) NOT NULL,<br />
 `reg_date_time` varchar(250) NOT NULL,<br />
 `last_login_date_time` varchar(250) NOT NULL,<br />
 PRIMARY KEY  (`cus_master_id`)<br />
) ENGINE=InnoDB AUTO_INCREMENT=23101 DEFAULT CHARSET=utf8<br />
<br />
<br />
Can anyone assist me how to go with that.. and explain me briefly how to import the spanish accents into my table.<br />
<br />
Thanks in advance.]]></description>
            <dc:creator>manikandan muthuraj</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Mon, 13 Sep 2010 15:57:19 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,367397,367397#msg-367397</guid>
            <title>Source file with list of path (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,367397,367397#msg-367397</link>
            <description><![CDATA[ Hi<br />
<br />
I have this problem: i must to import a csv file with a list of path in my Mysql DB.<br />
The file is like this:<br />
<br />
&quot;C:\Document\001\file1.jpg&quot;<br />
&quot;C:\Document\001\file2.jpg&quot;<br />
&quot;C:\Document\001\file3.jpg&quot;<br />
&quot;C:\Document\001\file4.jpg&quot;<br />
&quot;C:\Document\001\file5.jpg&quot;<br />
<br />
if i use the &quot;load data&quot; command in the table i have an output like this:<br />
<br />
C:Document001file1.jpg<br />
C:Document001file2.jpg<br />
C:Document001file3.jpg<br />
C:Document001file4.jpg<br />
C:Document001file5.jpg<br />
<br />
the character &quot;\&quot; is lost. I think the problem is that the character &quot;\&quot; is a special character for Mysql.<br />
how can i do to solve this problem?<br />
<br />
Thanks]]></description>
            <dc:creator>D&#039;Auria Francesco</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Thu, 13 May 2010 15:51:42 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,330380,330380#msg-330380</guid>
            <title>Fixed-length fields (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,330380,330380#msg-330380</link>
            <description><![CDATA[ I have a CSV file with fixed-width fields in it. I know how to import them normally:<br />
<br />
FIELDS TERMINATED BY &#039;&#039; ENCLOSED BY &#039;&#039;<br />
<br />
... unfortunately, each field also has a space separating it from the next. I don&#039;t want to have to create a mirror table with single-character fields between each one just to import the data, so is there another way? Like a placeholder variable or cast?<br />
<br />
Also, the table fields are VarChar, will that cause an issue as well?]]></description>
            <dc:creator>Patrick Zahra</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Wed, 24 Feb 2010 16:27:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,281864,281864#msg-281864</guid>
            <title>CSV Engine Undocumented Limitations? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,281864,281864#msg-281864</link>
            <description><![CDATA[ Can someone explain why I can &#039;see&#039; ie. SELECT COUNT(*) FROM... only 2,209,217 rows of my 12,338,857 row CSV file?  The file size is about 5GB (should that make a difference?), row size is around 450, all recs have the same len and all fields are fixed length CHARs.  Are there some undocumented limitations at work here?<br />
<br />
For what it&#039;s worth...<br />
<br />
mysql&gt; show table status\G<br />
*************************** 1. row ***************************<br />
           Name: m199907<br />
         Engine: CSV<br />
        Version: 10<br />
     Row_format: Fixed<br />
           Rows: 2<br />
 Avg_row_length: 0<br />
    Data_length: 0<br />
Max_data_length: 0<br />
   Index_length: 0<br />
      Data_free: 0<br />
 Auto_increment: NULL<br />
    Create_time: NULL<br />
    Update_time: NULL<br />
     Check_time: NULL<br />
      Collation: latin1_swedish_ci<br />
       Checksum: NULL<br />
 Create_options:<br />
        Comment:<br />
1 row in set (0.00 sec)]]></description>
            <dc:creator>Steve Martin</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Fri, 18 Sep 2009 08:14:41 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,243709,243709#msg-243709</guid>
            <title>Issue when export a table to CSV file (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,243709,243709#msg-243709</link>
            <description><![CDATA[ Hi all,<br />
<br />
I have a table, in which a particular field may have a string with &quot;\n&quot; char.  So when I try to export this table to csv file, the record with this field will be seperated to two lines, not like other records.  I am using &quot;\n&quot; as LINES TERMINATED BY.  I was trying to use &quot;FIELDS ESCAPED BY &#039;\&#039;&quot;, but got errors.<br />
<br />
I need find a way to replace the &quot;\n&quot; in the filed to white space.<br />
<br />
Thanks,<br />
Jingyu.]]></description>
            <dc:creator>Jingyu Qi</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Sun, 01 Feb 2009 00:01:00 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,241363,241363#msg-241363</guid>
            <title>load data date fields (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,241363,241363#msg-241363</link>
            <description><![CDATA[ Please help me with syntax to load date format data as below. <br />
<br />
table <br />
+-------+-------------+------+-----+---------+-------+ <br />
| Field | Type | Null | Key | Default | Extra | <br />
+-------+-------------+------+-----+---------+-------+ <br />
| name | varchar(10) | YES | | NULL | | <br />
| dte | date | YES | | NULL | | <br />
+-------+-------------+------+-----+---------+-------+ <br />
<br />
data file <br />
<br />
aaa, 5-Jan-2009 <br />
aaa, 5-Feb-2009 <br />
<br />
what should i do to load this data into mysql table. <br />
<br />
i am using below command/syntax but its loading all in this format. <br />
<br />
LOAD DATA INFILE &#039;/tmp/ld.txt&#039; INTO TABLE test1 FIELDS TERMINATED BY &#039;,&#039; LINES TERMINATED BY &#039;\n&#039;; <br />
(name,@dte) <br />
SET dte = (str_to_date(@dte, &#039;%d-%m-%y&#039;); <br />
<br />
MySql&gt; select * from test1; <br />
+------+------------+ <br />
| name | dte | <br />
+------+------------+ <br />
| aaa | 0000-00-00 | <br />
| aaa | 0000-00-00 | <br />
<br />
<br />
I want date to be in 2008-01-05 format, Please help me.]]></description>
            <dc:creator>New eba</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Thu, 08 Jan 2009 01:30:02 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,231326,231326#msg-231326</guid>
            <title>How to convert *.ddl to *.sql file (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,231326,231326#msg-231326</link>
            <description><![CDATA[ Hi everbody,<br />
<br />
I am using MySQL database server for my project but i have database file in form of *.ddl...but to run following mysql dump command, i need *.sql file...<br />
<br />
  mysql dbname -uroot -ppass &lt; test.sql<br />
<br />
can anyone give me an idea how to convert *.ddl file into *.sql file...then i can use it easily...I tried by saving this ddl file with sql extension...but when i run mysql dump command it failed because some of the statements in that ddl file are not supported by MySQL..some of those are<br />
<br />
CONNECT TO RXDATABASE;<br />
<br />
CREATE SCHEMA GENRXDB;<br />
<br />
SET SCHEMA=GENRXDB;<br />
<br />
Please help me in this regard]]></description>
            <dc:creator>vasu pampana</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Thu, 23 Oct 2008 11:12:04 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,231061,231061#msg-231061</guid>
            <title>Excessive warning messages on import (1 reply)</title>
            <link>https://forums.mysql.com/read.php?127,231061,231061#msg-231061</link>
            <description><![CDATA[ I am drowning in warning messages.  The situation:  I am importing millions of rows of data in different tables. The data comes from an external source.  The data is enclosed in double quotes and comma separated, consistent with RFC 4180.  (There are samples below of the table and the data.)  MySQL issues a warning whenever it encounters an empty field (&quot;&quot;) that is being imported into a decimal column.  I do not want to populate the empty fields with numeric values because they are actually empty and populating them will skew the information. Because the data has decimal fields on every row that are empty, the import process is filling up the hard drive with warning messages.<br />
<br />
A typical warning message is &quot;1366: Incorrect decimal value &#039;&#039; for column &#039;NBR_FIELD_1&#039; at row 2&quot;, where there is a unique warning message for column of each row.<br />
<br />
Is there a way to stop the warning messages?  Is there another alternative that I&#039;m overlooking?<br />
<br />
(FYI, MySQL issues an error and stops if the empty field is being imported into an INTEGER column.)<br />
<br />
Table Structure<br />
================<br />
<br />
Field                      Type            Collation          Null<br />
-------------------------  --------------  -----------------  ----<br />
NBR_FIELD_1                decimal(9,0)                       NO<br />
VCHAR_FIELD_1              varchar(30)     latin1_swedish_ci  YES<br />
NBR_FIELD_2                decimal(6,0)                       YES<br />
VCHAR_FIELD_2              varchar(30)     latin1_swedish_ci  YES<br />
NBR_FIELD_3                decimal(9,0)                       YES<br />
IS_VIRTUAL                 char(1)         latin1_swedish_ci  YES<br />
VCHAR_FIELD_3              varchar(30)     latin1_swedish_ci  YES<br />
NBR_FIELD_4                decimal(6,0)                       YES<br />
VCHAR_FIELD_4              varchar(30)     latin1_swedish_ci  YES<br />
ARE_CONTIGUOUS             char(1)         latin1_swedish_ci  YES<br />
ARE_MULTIPLES              char(1)         latin1_swedish_ci  YES<br />
IS_AGGREGATE               char(1)         latin1_swedish_ci  YES<br />
NBR_FIELD_5                decimal(12,0)                      YES<br />
ALLOW_OVERSUBSCRIPTION     char(1)         latin1_swedish_ci  YES<br />
NBR_FIELD_6                decimal(12,2)                      YES<br />
NBR_FIELD_7                decimal(18,0)                      YES<br />
NBR_FIELD_8                decimal(18,0)                      YES<br />
USE_IN_PATHS               char(1)         latin1_swedish_ci  YES<br />
USE_IN_NETWORK             char(1)         latin1_swedish_ci  YES<br />
LOAD_TIMESTAMP             datetime                           YES<br />
<br />
<br />
Sample Data:<br />
============<br />
&quot;1028&quot;,&quot;768K&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;N&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;N&quot;,&quot;768000&quot;,&quot;Y&quot;,&quot;0.00&quot;,&quot;768000&quot;,&quot;768000&quot;,&quot;Y&quot;,&quot;N&quot;,&quot;2008.10.14 18:00:15&quot;<br />
&quot;1029&quot;,&quot;832K&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;N&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;N&quot;,&quot;832000&quot;,&quot;Y&quot;,&quot;0.00&quot;,&quot;832000&quot;,&quot;832000&quot;,&quot;Y&quot;,&quot;N&quot;,&quot;2008.10.14 18:00:15&quot;<br />
&quot;1030&quot;,&quot;896K&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;N&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;&quot;,&quot;N&quot;,&quot;896000&quot;,&quot;Y&quot;,&quot;0.00&quot;,&quot;896000&quot;,&quot;896000&quot;,&quot;Y&quot;,&quot;N&quot;,&quot;2008.10.14 18:00:15&quot;<br />
<br />
SQL to perform data load:<br />
=========================<br />
USE MY_DATABASE;<br />
SET SESSION SQL_MODE=&quot;ALLOW_INVALID_DATES&quot;;<br />
TRUNCATE TABLE MY_TABLE;<br />
LOAD DATA INFILE &quot;K:/MySampleData.csv&quot;<br />
	INTO TABLE MY_TABLE<br />
	FIELDS TERMINATED BY &#039;,&#039; OPTIONALLY ENCLOSED BY &#039;&quot;&#039;<br />
	LINES TERMINATED BY &#039;\r\n&#039;;]]></description>
            <dc:creator>Craig Harrington</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Tue, 21 Oct 2008 20:36:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,218409,218409#msg-218409</guid>
            <title>DateTime from CSV file (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,218409,218409#msg-218409</link>
            <description><![CDATA[ I was wondering if someone knows how to do this. I have a very large CSV file (44 million+ records, over 1GB) that I have entered into a db using the replace file method described in the MySQL 5.1.23 article. I have a problem with the datetime format already in my file, which is &quot;dd/mm/yy hh:mm:ss&quot; all in one column. Is there a way to automatically format datetime to fit this format? -Thanks]]></description>
            <dc:creator>Jean-Benoit Lesage</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Mon, 14 Jul 2008 14:29:36 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,216810,216810#msg-216810</guid>
            <title>csv row/records eliminated (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,216810,216810#msg-216810</link>
            <description><![CDATA[ Hello<br />
<br />
Can I get some help please to a seemingly simple problem.  I have a excel/csv file.  The data is in ROWS and Column format.  I want to insert into mysql using the below sql code.  It works but..... <br />
<br />
The PROBLEM IS:  it is broken up into rows/records in mysql,  I need it to ignore the returns or breaks or whatever tells it to go to another row and continue to insert the data into the fields in one record.  Did I explain that right?<br />
<br />
LOAD DATA INFILE &#039;filename.csv&#039; <br />
INTO TABLE tablename <br />
FIELDS TERMINATED BY &#039;,&#039;<br />
(`1`, `2`, `3`, `4`, `5`, `6`)<br />
<br />
I dont know what I am doing so I may not have explained it properly please ask any questions that you may be confused about.]]></description>
            <dc:creator>heather campagna</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Wed, 02 Jul 2008 23:29:38 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?127,216048,216048#msg-216048</guid>
            <title>How to give another name to csv storage engine (no replies)</title>
            <link>https://forums.mysql.com/read.php?127,216048,216048#msg-216048</link>
            <description><![CDATA[ I want to give another name to csv storage engine?<br />
How to do it ?]]></description>
            <dc:creator>advait deodhar</dc:creator>
            <category>CSV Storage Engine</category>
            <pubDate>Fri, 27 Jun 2008 05:54:41 +0000</pubDate>
        </item>
    </channel>
</rss>
