<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>The New Import/Export Specification OM</title><link>http://blogs.msdn.com/thirdoffive/archive/2006/10/12/the-new-import-export-specification-om.aspx</link><description>In previous versions of Access (such as Access 2003), you can save the steps from an import or export operation into what we call Import/Export Specifications (Imex Specs). After saving it, you can always load it back so you don't have to customize the</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: The New Import/Export Specification OM</title><link>http://blogs.msdn.com/thirdoffive/archive/2006/10/12/the-new-import-export-specification-om.aspx#820501</link><pubDate>Thu, 12 Oct 2006 21:39:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:820501</guid><dc:creator>grovelli</dc:creator><description>&lt;p&gt;I'm an energy manager and Access is invaluable at managing all of all my data. I use VBA extensively but don't know squat about XML.&lt;/p&gt;
&lt;p&gt;What's the meaning of the question mark in&lt;/p&gt;
&lt;p&gt; ? CurrentProject.ImportExportSpecifications.Item(0).XML&lt;/p&gt;
&lt;p&gt;and what are those angle brackets for?&lt;/p&gt;
&lt;p&gt;and what's xmlns?&lt;/p&gt;
&lt;p&gt;Is the Imex spec above automatically created or you have to build it yourself? And, if so, where does an Access aficionado get the knowledge to build the spec above?&lt;/p&gt;
&lt;p&gt;I suppose a general XML book doesn't teach you about AccessObject, FieldDelimiter, Columns PrimaryKey and the rest and how to put them together in the ensemble above. :-) &lt;/p&gt;
</description></item><item><title>re: The New Import/Export Specification OM</title><link>http://blogs.msdn.com/thirdoffive/archive/2006/10/12/the-new-import-export-specification-om.aspx#820520</link><pubDate>Thu, 12 Oct 2006 21:50:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:820520</guid><dc:creator>ThirdOfFive</dc:creator><description>&lt;p&gt;Hi grovelli,&lt;/p&gt;
&lt;p&gt;I'm happy you use Access :) You should keep in mind that all the XML goo that I mentioned above is not necessary if you only care about the UI. Even if you do want to automate everything programmatically, it isn't obvious that you do need to change the XML above. You can always use the UI to create the imex spec you want and then roll with it. I just exposed it so in case anybody wants to something more sophisticated/complicated with it (as in generating imex specs on the fly), which is something you couldn't really do with Access 2003.&lt;/p&gt;
&lt;p&gt;Let me address your issues:&lt;/p&gt;
&lt;p&gt;1) By &amp;quot;? CurrentProject.ImportExportSpecifications.Item(0).XML&amp;quot;, I meant try running &amp;quot;? CurrentProject.ImportExportSpecifications.Item(0).XML&amp;quot; on your immediate window in VBE.&lt;/p&gt;
&lt;p&gt;2) You might want to read up on XML so you can grok the angle brakets, xmlns (XML namespace), etc. If you need a reference, let me know.&lt;/p&gt;
&lt;p&gt;3) The Imex spec above is auto-generated by Access. You can create one using the UI (in which you will never see the XML), and then use the VBE command I mentioned above to get it out and then tweak it (say, by changing the file name, etc).&lt;/p&gt;
&lt;p&gt;4) An XML book will not go into the detail of what AccessObject, FieldDelimiter means, as you noticed. But their meaning is quite straightforward to figure out as you play with the UI and export different Imex Specs. If you are really stuck I can try to go into more detail about them.&lt;/p&gt;
&lt;p&gt;take care,&lt;/p&gt;
&lt;p&gt;3oF&lt;/p&gt;
</description></item><item><title>re: The New Import/Export Specification OM</title><link>http://blogs.msdn.com/thirdoffive/archive/2006/10/12/the-new-import-export-specification-om.aspx#820607</link><pubDate>Thu, 12 Oct 2006 22:21:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:820607</guid><dc:creator>grovelli</dc:creator><description>&lt;p&gt;Thank you very much Hugh, &lt;/p&gt;
&lt;p&gt;and what about the question marks in &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;/p&gt;
&lt;p&gt;I'll try and manage imex specs with the UI for now, I think I'm already saturated with SQL, VBA, ADO and its extensions(on its way out?) DAO(resurrected?), DDL, you name it :-)&lt;/p&gt;
</description></item><item><title>re: The New Import/Export Specification OM</title><link>http://blogs.msdn.com/thirdoffive/archive/2006/10/12/the-new-import-export-specification-om.aspx#820623</link><pubDate>Thu, 12 Oct 2006 22:27:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:820623</guid><dc:creator>ThirdOfFive</dc:creator><description>&lt;p&gt;No problem.&lt;/p&gt;
&lt;p&gt;That is the XML declaration (&lt;a rel="nofollow" target="_new" href="http://www.w3.org/TR/2006/REC-xml-20060816/"&gt;http://www.w3.org/TR/2006/REC-xml-20060816/&lt;/a&gt;). It tells the XML parser which XML version we're using. The question mark shows it is a special kind of markup.&lt;/p&gt;
</description></item><item><title>re: The New Import/Export Specification OM</title><link>http://blogs.msdn.com/thirdoffive/archive/2006/10/12/the-new-import-export-specification-om.aspx#820648</link><pubDate>Thu, 12 Oct 2006 22:32:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:820648</guid><dc:creator>grovelli</dc:creator><description>&lt;p&gt;Thank you again.&lt;/p&gt;
&lt;p&gt;I'd forgotten macros to add to the list :-)&lt;/p&gt;
</description></item><item><title>re: The New Import/Export Specification OM</title><link>http://blogs.msdn.com/thirdoffive/archive/2006/10/12/the-new-import-export-specification-om.aspx#821715</link><pubDate>Fri, 13 Oct 2006 11:01:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:821715</guid><dc:creator>Mark</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I work for a mailing house and we have 1000+ import specs set up in Access 2003.&lt;/p&gt;
&lt;p&gt;Thinking ahead will there be a way to convert these specs to the Access 2007 programmable specs?&lt;/p&gt;
&lt;p&gt;I suppose we could get the information from the system tables and then create them afresh.&lt;/p&gt;
&lt;p&gt;Will the old specs still work?&lt;/p&gt;
&lt;p&gt;Many Thanks&lt;/p&gt;
&lt;p&gt;Mark&lt;/p&gt;
</description></item></channel></rss>