<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Importing</title>
	<atom:link href="http://www.tempestinateapot.org/2006/07/importing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tempestinateapot.org/2006/07/importing/</link>
	<description>coffee, tea...?</description>
	<lastBuildDate>Thu, 08 Dec 2011 16:40:39 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Christine</title>
		<link>http://www.tempestinateapot.org/2006/07/importing/comment-page-1/#comment-6870</link>
		<dc:creator>Christine</dc:creator>
		<pubDate>Fri, 14 Jul 2006 03:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.tempestinateapot.org/?p=1169#comment-6870</guid>
		<description>The MT import feature wouldn&#039;t work?  How odd.  I did it years ago, so I don&#039;t remember the details of my move.  I know that the MT data dump used to be wonky if you used IE, so I wonder if that is still the case.  Also, when using characters for a delimiter, I like the ~ or the ^ since they don&#039;t normally appear in typed text.  Those were the ones I used to use when I did data imports and exports back when I worked for a law firm.

Back to the real point of my comment though - I will have to add the 1940s House to my Netflix queue!  I watched a similar show on PBS a few years ago - I think it was a BBC production also.  It was about a house around the turn of the century and how the owners and the staff lived two separate lives.  Really, really interesting.  I bet the 1940s one was really cool!  Especially since I have always been fascinated by WWII history.  They had to chase me out of the War Rooms when I was in London - I spent too much time trying to read everything at the Churchhill Museum!</description>
		<content:encoded><![CDATA[<p>The MT import feature wouldn&#8217;t work?  How odd.  I did it years ago, so I don&#8217;t remember the details of my move.  I know that the MT data dump used to be wonky if you used IE, so I wonder if that is still the case.  Also, when using characters for a delimiter, I like the ~ or the ^ since they don&#8217;t normally appear in typed text.  Those were the ones I used to use when I did data imports and exports back when I worked for a law firm.</p>
<p>Back to the real point of my comment though &#8211; I will have to add the 1940s House to my Netflix queue!  I watched a similar show on PBS a few years ago &#8211; I think it was a BBC production also.  It was about a house around the turn of the century and how the owners and the staff lived two separate lives.  Really, really interesting.  I bet the 1940s one was really cool!  Especially since I have always been fascinated by WWII history.  They had to chase me out of the War Rooms when I was in London &#8211; I spent too much time trying to read everything at the Churchhill Museum!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.tempestinateapot.org/2006/07/importing/comment-page-1/#comment-6796</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 04 Jul 2006 17:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.tempestinateapot.org/?p=1169#comment-6796</guid>
		<description>yes, I had a feeling it was something like that, I probably should have tried using some very &quot;unused&quot; characters instead.....perhaps tab delimited or something....</description>
		<content:encoded><![CDATA[<p>yes, I had a feeling it was something like that, I probably should have tried using some very &#8220;unused&#8221; characters instead&#8230;..perhaps tab delimited or something&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Old Man</title>
		<link>http://www.tempestinateapot.org/2006/07/importing/comment-page-1/#comment-6795</link>
		<dc:creator>The Old Man</dc:creator>
		<pubDate>Mon, 03 Jul 2006 15:45:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.tempestinateapot.org/?p=1169#comment-6795</guid>
		<description>I&#039;m very rusty at these kinds of things, but many of the underlying principles haven&#039;t changed over the 38+ years since I&#039;ve learned programming (almost all forgotten now).

When you are transferring info between unlike systems, programming languages, etc. to make things convenient there are agreed or defined deliminters to separate data items, like commas in the CSV files.  To accomodate an imbedded comma within the data, it precedes it with an excape character, to tell the decoder that the following comma is to be treated as a comma in the data, and not as a delimiter.  My guess would be that if you read the fine print in the instructions for the programs you&#039;re using, you will discover that the escape character for the EXCEL CSV file is a control character for MySQL telling it that it&#039;s reached end-of-file, or something else that you didn&#039;t want to get.  The escape character used to often be an @, but since it is used so frequently these days, it&#039;s probably something else, maybe a 2 or 3 character sequence.  For example, how do you suppose Excel creates a .CSV file with the contents of a cell to be something like:  This is a ,,,, test ?  Actually, it put &quot; around the entire cell contents.</description>
		<content:encoded><![CDATA[<p>I&#8217;m very rusty at these kinds of things, but many of the underlying principles haven&#8217;t changed over the 38+ years since I&#8217;ve learned programming (almost all forgotten now).</p>
<p>When you are transferring info between unlike systems, programming languages, etc. to make things convenient there are agreed or defined deliminters to separate data items, like commas in the CSV files.  To accomodate an imbedded comma within the data, it precedes it with an excape character, to tell the decoder that the following comma is to be treated as a comma in the data, and not as a delimiter.  My guess would be that if you read the fine print in the instructions for the programs you&#8217;re using, you will discover that the escape character for the EXCEL CSV file is a control character for MySQL telling it that it&#8217;s reached end-of-file, or something else that you didn&#8217;t want to get.  The escape character used to often be an @, but since it is used so frequently these days, it&#8217;s probably something else, maybe a 2 or 3 character sequence.  For example, how do you suppose Excel creates a .CSV file with the contents of a cell to be something like:  This is a ,,,, test ?  Actually, it put &#8221; around the entire cell contents.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sparker</title>
		<link>http://www.tempestinateapot.org/2006/07/importing/comment-page-1/#comment-6794</link>
		<dc:creator>sparker</dc:creator>
		<pubDate>Mon, 03 Jul 2006 13:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.tempestinateapot.org/?p=1169#comment-6794</guid>
		<description>Whew! For a minute there I thought it was 2001!</description>
		<content:encoded><![CDATA[<p>Whew! For a minute there I thought it was 2001!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EricaLucci</title>
		<link>http://www.tempestinateapot.org/2006/07/importing/comment-page-1/#comment-6793</link>
		<dc:creator>EricaLucci</dc:creator>
		<pubDate>Sun, 02 Jul 2006 22:47:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.tempestinateapot.org/?p=1169#comment-6793</guid>
		<description>The new site looks great!  Good job, Jason!  Hope you&#039;re enjoying it, Karen.</description>
		<content:encoded><![CDATA[<p>The new site looks great!  Good job, Jason!  Hope you&#8217;re enjoying it, Karen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.tempestinateapot.org/2006/07/importing/comment-page-1/#comment-6792</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sun, 02 Jul 2006 17:22:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.tempestinateapot.org/?p=1169#comment-6792</guid>
		<description>OK, well I gave up on the CSV file and went with PHP.  If anyone ever needs a script to transfer data from MT tables to WP tables just say the word, I have one that works!!!!</description>
		<content:encoded><![CDATA[<p>OK, well I gave up on the CSV file and went with PHP.  If anyone ever needs a script to transfer data from MT tables to WP tables just say the word, I have one that works!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.tempestinateapot.org/2006/07/importing/comment-page-1/#comment-3</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sun, 02 Jul 2006 10:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.tempestinateapot.org/?p=1169#comment-3</guid>
		<description>If anyone knows why it is an Excel CSV file is only partially digested by MySQL please let me know.  I would presume the escape values are the issue, but after a lot of experimentation I cannot pinpoint what exactly the escape value issue might be. Cheers</description>
		<content:encoded><![CDATA[<p>If anyone knows why it is an Excel CSV file is only partially digested by MySQL please let me know.  I would presume the escape values are the issue, but after a lot of experimentation I cannot pinpoint what exactly the escape value issue might be. Cheers</p>
]]></content:encoded>
	</item>
</channel>
</rss>

