<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Importing CSV File Into Database &#8211; SQL in Sixty Seconds #018 &#8211; Video</title>
	<atom:link href="http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 23 May 2013 14:22:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Matt</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-471319</link>
		<dc:creator><![CDATA[Matt]]></dc:creator>
		<pubDate>Wed, 08 May 2013 10:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-471319</guid>
		<description><![CDATA[Great post. How can I load a file if I don&#039;t have the name just the directory it suppose to be in?]]></description>
		<content:encoded><![CDATA[<p>Great post. How can I load a file if I don&#8217;t have the name just the directory it suppose to be in?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandru Metzak</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-433380</link>
		<dc:creator><![CDATA[Alexandru Metzak]]></dc:creator>
		<pubDate>Thu, 07 Mar 2013 12:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-433380</guid>
		<description><![CDATA[it&#039;s the file on the same server as the db?]]></description>
		<content:encoded><![CDATA[<p>it&#8217;s the file on the same server as the db?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James McDaniel</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-424562</link>
		<dc:creator><![CDATA[James McDaniel]]></dc:creator>
		<pubDate>Wed, 20 Feb 2013 19:43:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-424562</guid>
		<description><![CDATA[I am using:
BULK INSERT mdb_cleanse.dbo.[@repository employee list]
    FROM &#039;C:\Users\fa01jjm\Documents\SQL Server Management Studio\Projects\Run Queries\Employee_List.csv&#039; 
    WITH 
    ( 
        FIELDTERMINATOR = &#039;,&#039;, 
        ROWTERMINATOR = &#039;\n&#039; 
    )

I get an error saying the OS cannot find the path specified]]></description>
		<content:encoded><![CDATA[<p>I am using:<br />
BULK INSERT mdb_cleanse.dbo.[@repository employee list]<br />
    FROM &#8216;C:\Users\fa01jjm\Documents\SQL Server Management Studio\Projects\Run Queries\Employee_List.csv&#8217;<br />
    WITH<br />
    (<br />
        FIELDTERMINATOR = &#8216;,&#8217;,<br />
        ROWTERMINATOR = &#8216;\n&#8217;<br />
    )</p>
<p>I get an error saying the OS cannot find the path specified</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nitnit</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-398577</link>
		<dc:creator><![CDATA[nitnit]]></dc:creator>
		<pubDate>Mon, 24 Dec 2012 12:53:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-398577</guid>
		<description><![CDATA[thanks! that was very helpful!]]></description>
		<content:encoded><![CDATA[<p>thanks! that was very helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brij</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-370713</link>
		<dc:creator><![CDATA[brij]]></dc:creator>
		<pubDate>Wed, 07 Nov 2012 09:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-370713</guid>
		<description><![CDATA[ $value) $data[$key] = addslashes($data[$key]);
 $con = mysql_connect($server,$DBusername,$DBpassword);
mysql_select_db($database, $con);
  //mysql_connect($server, $DBusername, $DBpassword) or die (&quot;$DatabaseError 54&quot;); 
echo $query = mysql_query(&quot;INSERT INTO $tablename (

`name`,
`text`
)
VALUES(&#039;$data[0]&#039;, &#039;$data[1]&#039;)&quot;);
$result = mysql_query($query);


}


}

?&gt;]]></description>
		<content:encoded><![CDATA[<p> $value) $data[$key] = addslashes($data[$key]);<br />
 $con = mysql_connect($server,$DBusername,$DBpassword);<br />
mysql_select_db($database, $con);<br />
  //mysql_connect($server, $DBusername, $DBpassword) or die (&#8220;$DatabaseError 54&#8243;);<br />
echo $query = mysql_query(&#8220;INSERT INTO $tablename (</p>
<p>`name`,<br />
`text`<br />
)<br />
VALUES(&#8216;$data[0]&#8216;, &#8216;$data[1]&#8216;)&#8221;);<br />
$result = mysql_query($query);</p>
<p>}</p>
<p>}</p>
<p>?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanjay</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-349339</link>
		<dc:creator><![CDATA[Sanjay]]></dc:creator>
		<pubDate>Sat, 15 Sep 2012 17:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-349339</guid>
		<description><![CDATA[I am getting below error.

The OLE DB provider &quot;BULK&quot; for linked server &quot;(null)&quot; reported an error. The provider did not give any information about the error.]]></description>
		<content:encoded><![CDATA[<p>I am getting below error.</p>
<p>The OLE DB provider &#8220;BULK&#8221; for linked server &#8220;(null)&#8221; reported an error. The provider did not give any information about the error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: April</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-321270</link>
		<dc:creator><![CDATA[April]]></dc:creator>
		<pubDate>Sun, 29 Jul 2012 18:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-321270</guid>
		<description><![CDATA[What would be really useful is a script that created the table and imported the data to that table. This seems quite tedious. For example, why would I go through all of the trouble creating the table, then creating a script identifying the table headers then importing all of the data.

What I would like to see here is a REAL USEFUL import CSV file, taking the first line as the header (Don&#039;t forget to add the record Numbers Incremental) and then adding the data to those headers. Can this be done?]]></description>
		<content:encoded><![CDATA[<p>What would be really useful is a script that created the table and imported the data to that table. This seems quite tedious. For example, why would I go through all of the trouble creating the table, then creating a script identifying the table headers then importing all of the data.</p>
<p>What I would like to see here is a REAL USEFUL import CSV file, taking the first line as the header (Don&#8217;t forget to add the record Numbers Incremental) and then adding the data to those headers. Can this be done?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Powershell &#8211; Importing CSV File Into Database &#8211; Video &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-306254</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Powershell &#8211; Importing CSV File Into Database &#8211; Video &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Wed, 27 Jun 2012 01:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-306254</guid>
		<description><![CDATA[[...] was reading an excellent post from my great friend Pinal about loading data from CSV files, SQL SERVER – Importing CSV File Into Database – SQL in Sixty Seconds #018 – Video,   to SQL Server and was honored to write another guest post on SQL Authority about the magic of [...]]]></description>
		<content:encoded><![CDATA[<p>[...] was reading an excellent post from my great friend Pinal about loading data from CSV files, SQL SERVER – Importing CSV File Into Database – SQL in Sixty Seconds #018 – Video,   to SQL Server and was honored to write another guest post on SQL Authority about the magic of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MAW74656</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-304053</link>
		<dc:creator><![CDATA[MAW74656]]></dc:creator>
		<pubDate>Thu, 21 Jun 2012 19:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-304053</guid>
		<description><![CDATA[How about a quick video on simplest way to convert a user defined function into a script for testing purposes?]]></description>
		<content:encoded><![CDATA[<p>How about a quick video on simplest way to convert a user defined function into a script for testing purposes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajith Nair</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-303546</link>
		<dc:creator><![CDATA[Ajith Nair]]></dc:creator>
		<pubDate>Wed, 20 Jun 2012 11:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-303546</guid>
		<description><![CDATA[Brad has a point there. Microsoft&#039;s parser is quite error-prone. Asu, I would advice that you write a CSV parser in whatever platform you&#039;re developing. It&#039;s quite easy. For a .Net example, see: http://pastebin.com/vZgpGNEG]]></description>
		<content:encoded><![CDATA[<p>Brad has a point there. Microsoft&#8217;s parser is quite error-prone. Asu, I would advice that you write a CSV parser in whatever platform you&#8217;re developing. It&#8217;s quite easy. For a .Net example, see: <a href="http://pastebin.com/vZgpGNEG" rel="nofollow">http://pastebin.com/vZgpGNEG</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asu</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-303449</link>
		<dc:creator><![CDATA[Asu]]></dc:creator>
		<pubDate>Wed, 20 Jun 2012 04:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-303449</guid>
		<description><![CDATA[I have arround 16 crores of records in 16  csv files each  having 1 crores of records. It is all about TRAI registred Mobile number and some other information.
I am using Mysql and Sql server also.

I am using bulk insert but it is too slow.

How efficiently I can upload and also Update  new date for each week.(update twice in a week)

Please advice.]]></description>
		<content:encoded><![CDATA[<p>I have arround 16 crores of records in 16  csv files each  having 1 crores of records. It is all about TRAI registred Mobile number and some other information.<br />
I am using Mysql and Sql server also.</p>
<p>I am using bulk insert but it is too slow.</p>
<p>How efficiently I can upload and also Update  new date for each week.(update twice in a week)</p>
<p>Please advice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Purton</title>
		<link>http://blog.sqlauthority.com/2012/06/20/sql-server-importing-csv-file-into-database-sql-in-sixty-seconds-018-video/#comment-303434</link>
		<dc:creator><![CDATA[Brad Purton]]></dc:creator>
		<pubDate>Wed, 20 Jun 2012 03:46:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19471#comment-303434</guid>
		<description><![CDATA[It may be simple here, but how often is it this simple in the real world with large datasets where data is missing, implicit casts fail etc.?]]></description>
		<content:encoded><![CDATA[<p>It may be simple here, but how often is it this simple in the real world with large datasets where data is missing, implicit casts fail etc.?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
