<?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 for Andrew Friedl</title>
	<atom:link href="http://www.andrewfriedl.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andrewfriedl.com</link>
	<description>Analyst/Consultant/Coder</description>
	<lastBuildDate>Thu, 09 May 2013 01:04:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on MS Access Import/Export Specifications by drdave4394</title>
		<link>http://www.andrewfriedl.com/2010/10/ms-access-importexport-specifications/comment-page-1/#comment-270</link>
		<dc:creator>drdave4394</dc:creator>
		<pubDate>Thu, 09 May 2013 01:04:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewfriedl.com/?p=446#comment-270</guid>
		<description><![CDATA[Thanks so much for this code.  I do not have VBA experience but this sounds like what I am looking for.  After playing with it, I can not seem to get it to run.  Can you maybe direct me as to what parts of the code I need to change with my database&#039;s locations?

The saved import I want to edit is called &quot;TwitterPersonalBackup&quot;
It is a pull from twitter&#039;s website and I am looking to change the URL.  
I have a Query which is building the next URL to search.  Is it possible to have the new URL change based on that Query?

Thanks so much!]]></description>
		<content:encoded><![CDATA[<p>Thanks so much for this code.  I do not have VBA experience but this sounds like what I am looking for.  After playing with it, I can not seem to get it to run.  Can you maybe direct me as to what parts of the code I need to change with my database&#8217;s locations?</p>
<p>The saved import I want to edit is called &#8220;TwitterPersonalBackup&#8221;<br />
It is a pull from twitter&#8217;s website and I am looking to change the URL.<br />
I have a Query which is building the next URL to search.  Is it possible to have the new URL change based on that Query?</p>
<p>Thanks so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MS Access Import/Export Specifications by Michael Hansen</title>
		<link>http://www.andrewfriedl.com/2010/10/ms-access-importexport-specifications/comment-page-1/#comment-165</link>
		<dc:creator>Michael Hansen</dc:creator>
		<pubDate>Tue, 11 Dec 2012 09:49:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewfriedl.com/?p=446#comment-165</guid>
		<description><![CDATA[Great article.  I needed to have more control over importing Excel spreadhseets into Access 2010 and TransferSpreadsheet doesn&#039;t help.  Based on your article an some additional research, I ended up using the ImportExportSpecification.  Here are a couple of handy little routins to customize the importexport XML once you have created one using &quot; Save Steps&quot;.

&lt;code&gt;&lt;pre&gt;
&#039;For modifying the name And/Or the XML
Public Sub fixImportSpecs(myTable As String, strFind As String, strRepl As String)
    Dim mySpec As ImportExportSpecification
    
    Set mySpec = CurrentProject.ImportExportSpecifications.Item(myTable)
    
    mySpec.XML = Replace(mySpec.XML, strFind, strRepl)
    Set mySpec = Nothing

End Sub

Public Sub MyExcelChangeName(OldName As String, NewName As String)
    Dim mySpec As ImportExportSpecification
    Dim myNewSpec As ImportExportSpecification
    Set mySpec = CurrentProject.ImportExportSpecifications.Item(OldName)
    
    CurrentProject.ImportExportSpecifications.Add NewName, mySpec.XML
    mySpec.Delete
    Set mySpec = Nothing
    Set myNewSpec = Nothing

End Sub

&#039;to run the import spec from vba code
Public Sub MyExcelTransfer(myTempTable As String, myPath As String)
    Dim mySpec As ImportExportSpecification
    Dim myNewSpec As ImportExportSpecification
    Set mySpec = CurrentProject.ImportExportSpecifications.Item(myTempTable)
    CurrentProject.ImportExportSpecifications.Add &quot;TemporaryImport&quot;, mySpec.XML
    Set myNewSpec = CurrentProject.ImportExportSpecifications.Item(&quot;TemporaryImport&quot;)
    
    myNewSpec.XML = Replace(myNewSpec.XML, &quot;\\MyComputer\ChangeThis&quot;, myPath)
    myNewSpec.Execute
    myNewSpec.Delete
    Set mySpec = Nothing
    Set myNewSpec = Nothing

End Sub
&lt;/pre&gt;&lt;/code&gt;

Hope this helps someone.  cheers.]]></description>
		<content:encoded><![CDATA[<p>Great article.  I needed to have more control over importing Excel spreadhseets into Access 2010 and TransferSpreadsheet doesn&#8217;t help.  Based on your article an some additional research, I ended up using the ImportExportSpecification.  Here are a couple of handy little routins to customize the importexport XML once you have created one using &#8221; Save Steps&#8221;.</p>
<p><code>
<pre>
'For modifying the name And/Or the XML
Public Sub fixImportSpecs(myTable As String, strFind As String, strRepl As String)
    Dim mySpec As ImportExportSpecification
    
    Set mySpec = CurrentProject.ImportExportSpecifications.Item(myTable)
    
    mySpec.XML = Replace(mySpec.XML, strFind, strRepl)
    Set mySpec = Nothing

End Sub

Public Sub MyExcelChangeName(OldName As String, NewName As String)
    Dim mySpec As ImportExportSpecification
    Dim myNewSpec As ImportExportSpecification
    Set mySpec = CurrentProject.ImportExportSpecifications.Item(OldName)
    
    CurrentProject.ImportExportSpecifications.Add NewName, mySpec.XML
    mySpec.Delete
    Set mySpec = Nothing
    Set myNewSpec = Nothing

End Sub

'to run the import spec from vba code
Public Sub MyExcelTransfer(myTempTable As String, myPath As String)
    Dim mySpec As ImportExportSpecification
    Dim myNewSpec As ImportExportSpecification
    Set mySpec = CurrentProject.ImportExportSpecifications.Item(myTempTable)
    CurrentProject.ImportExportSpecifications.Add "TemporaryImport", mySpec.XML
    Set myNewSpec = CurrentProject.ImportExportSpecifications.Item("TemporaryImport")
    
    myNewSpec.XML = Replace(myNewSpec.XML, "\\MyComputer\ChangeThis", myPath)
    myNewSpec.Execute
    myNewSpec.Delete
    Set mySpec = Nothing
    Set myNewSpec = Nothing

End Sub
</pre>
<p></code></p>
<p>Hope this helps someone.  cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on KudzuASP: The Template Engine for Classic ASP by danielcovington</title>
		<link>http://www.andrewfriedl.com/2010/02/kudzuasp-template-engine-for-asp/comment-page-1/#comment-99</link>
		<dc:creator>danielcovington</dc:creator>
		<pubDate>Mon, 13 Aug 2012 12:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewfriedl.com/?p=403#comment-99</guid>
		<description><![CDATA[This looks great do you have a small sample showning how to use this in code]]></description>
		<content:encoded><![CDATA[<p>This looks great do you have a small sample showning how to use this in code</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on An SFTP test server you can run on your desktop by realromeo76</title>
		<link>http://www.andrewfriedl.com/2012/06/an-sftp-test-server-you-can-run-on-your-desktop/comment-page-1/#comment-89</link>
		<dc:creator>realromeo76</dc:creator>
		<pubDate>Fri, 06 Jul 2012 10:08:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewfriedl.com/?p=877#comment-89</guid>
		<description><![CDATA[P-E-R-F-E-C-T helps me a lot]]></description>
		<content:encoded><![CDATA[<p>P-E-R-F-E-C-T helps me a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on An SFTP test server you can run on your desktop by ossie1971</title>
		<link>http://www.andrewfriedl.com/2012/06/an-sftp-test-server-you-can-run-on-your-desktop/comment-page-1/#comment-87</link>
		<dc:creator>ossie1971</dc:creator>
		<pubDate>Fri, 29 Jun 2012 15:18:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewfriedl.com/?p=877#comment-87</guid>
		<description><![CDATA[Perfect, using this has allowed me to rule out sftp issues with our remote server. Unfortunately this means it&#039;s a problem with my code :(]]></description>
		<content:encoded><![CDATA[<p>Perfect, using this has allowed me to rule out sftp issues with our remote server. Unfortunately this means it&#8217;s a problem with my code <img src='http://www.andrewfriedl.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MS Access Import/Export Specifications by Andrew</title>
		<link>http://www.andrewfriedl.com/2010/10/ms-access-importexport-specifications/comment-page-1/#comment-43</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Sun, 22 Apr 2012 18:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewfriedl.com/?p=446#comment-43</guid>
		<description><![CDATA[Unfortunately I do not have any experience with TOAD.  I am completing and useful code library named IncreLogic.ETL that can be found at IncreLogic.com.  The library has the functionality to build and then store and retrieve import/export specifications that include complex data transforms,  There is no GUI though as it it primarily for programmers.]]></description>
		<content:encoded><![CDATA[<p>Unfortunately I do not have any experience with TOAD.  I am completing and useful code library named IncreLogic.ETL that can be found at IncreLogic.com.  The library has the functionality to build and then store and retrieve import/export specifications that include complex data transforms,  There is no GUI though as it it primarily for programmers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MS Access Import/Export Specifications by vishwas</title>
		<link>http://www.andrewfriedl.com/2010/10/ms-access-importexport-specifications/comment-page-1/#comment-42</link>
		<dc:creator>vishwas</dc:creator>
		<pubDate>Sun, 22 Apr 2012 13:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewfriedl.com/?p=446#comment-42</guid>
		<description><![CDATA[Hi Andrew,

Thanks for the above info. I was finding out how to save the SPECS in SQL (TOAD), when we want to import the text data into a table in SQL.  (we do have a import/export SPECS in Access, do we have samething in toad?)

I was just trying to save the SPECS, like we do in the ACCESS in SQL. Please help you if have any idea.

Thanks,
Vishwas]]></description>
		<content:encoded><![CDATA[<p>Hi Andrew,</p>
<p>Thanks for the above info. I was finding out how to save the SPECS in SQL (TOAD), when we want to import the text data into a table in SQL.  (we do have a import/export SPECS in Access, do we have samething in toad?)</p>
<p>I was just trying to save the SPECS, like we do in the ACCESS in SQL. Please help you if have any idea.</p>
<p>Thanks,<br />
Vishwas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MS Access Import/Export Specifications by Bruce Armstrong</title>
		<link>http://www.andrewfriedl.com/2010/10/ms-access-importexport-specifications/comment-page-1/#comment-30</link>
		<dc:creator>Bruce Armstrong</dc:creator>
		<pubDate>Tue, 06 Mar 2012 18:23:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewfriedl.com/?p=446#comment-30</guid>
		<description><![CDATA[Thanks for the MS Access Import/Export Specifications
hint, I had to reconstruct one of these from an old Access database and it&#039;s just what I needed.

BTW, we have a similar background in age and technology, it was fun to read yours. I started out with the same computer! These days are managing .NET with Oracle and SQL during the day and teaching classes at night at a technical college.

Nice looking web site.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the MS Access Import/Export Specifications<br />
hint, I had to reconstruct one of these from an old Access database and it&#8217;s just what I needed.</p>
<p>BTW, we have a similar background in age and technology, it was fun to read yours. I started out with the same computer! These days are managing .NET with Oracle and SQL during the day and teaching classes at night at a technical college.</p>
<p>Nice looking web site.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
