<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: File Size Limitation in XML Mapper in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428310#M105745</link>
    <description>&lt;P&gt;for 1&lt;/P&gt;
&lt;P&gt;Assume the following XML&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="iso-8859-1" ?&amp;gt;
&amp;lt;NHL&amp;gt;
  &amp;lt;CONFERENCE&amp;gt; Eastern 
    &amp;lt;DIVISION&amp;gt; Southeast  
      &amp;lt;TEAM name="Thrashers"  abbrev="ATL" /&amp;gt;  
      &amp;lt;TEAM name="Hurricanes" abbrev="CAR" /&amp;gt;  
      &amp;lt;TEAM name="Panthers"   abbrev="FLA" /&amp;gt;  
      &amp;lt;TEAM name="Lightning"  abbrev="TB" /&amp;gt;  
      &amp;lt;TEAM name="Capitals"   abbrev="WSH" /&amp;gt;  
   &amp;lt;/DIVISION&amp;gt;
 &amp;lt;/CONFERENCE&amp;gt; 

 &amp;lt;CONFERENCE&amp;gt; Western
   &amp;lt;DIVISION&amp;gt; Pacific  
     &amp;lt;TEAM name="Stars"   abbrev="DAL" /&amp;gt;  
     &amp;lt;TEAM name="Kings"   abbrev="LA" /&amp;gt;  
     &amp;lt;TEAM name="Ducks"   abbrev="ANA" /&amp;gt;  
     &amp;lt;TEAM name="Coyotes" abbrev="PHX" /&amp;gt;  
     &amp;lt;TEAM name="Sharks"  abbrev="SJ" /&amp;gt;  
   &amp;lt;/DIVISION&amp;gt;
  &amp;lt;/CONFERENCE&amp;gt; 
&amp;lt;/NHL&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;lt;TEAM .../&amp;gt; is the repeating element that will make up one observation&lt;/P&gt;
&lt;P&gt;we only need one &amp;lt;TEAM ... /&amp;gt; entry to build the XML map file, the others can be deleted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also &amp;lt;CONFERENCE&amp;gt; and &amp;lt;DIVISION&amp;gt; appear more than once, but we only need them once&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For 2&lt;/P&gt;
&lt;P&gt;If you have a XSD you can build the map file from this&lt;/P&gt;
&lt;P&gt;File -&amp;gt; Open XML Schema&lt;/P&gt;
&lt;P&gt;Tools -&amp;gt; Automap using XSD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the Map file created might not be what you want&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jan 2018 10:21:26 GMT</pubDate>
    <dc:creator>BrunoMueller</dc:creator>
    <dc:date>2018-01-17T10:21:26Z</dc:date>
    <item>
      <title>File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428267#M105729</link>
      <description>&lt;P&gt;&lt;SPAN&gt;When I read a 55K records from XML file via SAS XML Mapper to create a .map file, it prompts an error message "The file size exceeds the recommended maximum. ......".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can Mapper read only small XML files &amp;lt; 5K or less? &lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 06:29:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428267#M105729</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T06:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428276#M105731</link>
      <description>&lt;P&gt;Have a look at this Usage note&amp;nbsp;&lt;A href="http://support.sas.com/kb/39/804.html" target="_blank"&gt;http://support.sas.com/kb/39/804.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It explains various ways&amp;nbsp;how to handle this situation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I usually recommend to make the XML file smaller and build the map file.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 07:42:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428276#M105731</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T07:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428302#M105742</link>
      <description>&lt;P&gt;Could you please help me understand how can I achieve the following?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Cut the XML file where the elements repeat and map this file, which is a subset of the larger XML file.
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;If you have the schema, create an XMLMap file from the schema rather than the XML file.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Wed, 17 Jan 2018 09:16:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428302#M105742</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T09:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428310#M105745</link>
      <description>&lt;P&gt;for 1&lt;/P&gt;
&lt;P&gt;Assume the following XML&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="iso-8859-1" ?&amp;gt;
&amp;lt;NHL&amp;gt;
  &amp;lt;CONFERENCE&amp;gt; Eastern 
    &amp;lt;DIVISION&amp;gt; Southeast  
      &amp;lt;TEAM name="Thrashers"  abbrev="ATL" /&amp;gt;  
      &amp;lt;TEAM name="Hurricanes" abbrev="CAR" /&amp;gt;  
      &amp;lt;TEAM name="Panthers"   abbrev="FLA" /&amp;gt;  
      &amp;lt;TEAM name="Lightning"  abbrev="TB" /&amp;gt;  
      &amp;lt;TEAM name="Capitals"   abbrev="WSH" /&amp;gt;  
   &amp;lt;/DIVISION&amp;gt;
 &amp;lt;/CONFERENCE&amp;gt; 

 &amp;lt;CONFERENCE&amp;gt; Western
   &amp;lt;DIVISION&amp;gt; Pacific  
     &amp;lt;TEAM name="Stars"   abbrev="DAL" /&amp;gt;  
     &amp;lt;TEAM name="Kings"   abbrev="LA" /&amp;gt;  
     &amp;lt;TEAM name="Ducks"   abbrev="ANA" /&amp;gt;  
     &amp;lt;TEAM name="Coyotes" abbrev="PHX" /&amp;gt;  
     &amp;lt;TEAM name="Sharks"  abbrev="SJ" /&amp;gt;  
   &amp;lt;/DIVISION&amp;gt;
  &amp;lt;/CONFERENCE&amp;gt; 
&amp;lt;/NHL&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;lt;TEAM .../&amp;gt; is the repeating element that will make up one observation&lt;/P&gt;
&lt;P&gt;we only need one &amp;lt;TEAM ... /&amp;gt; entry to build the XML map file, the others can be deleted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also &amp;lt;CONFERENCE&amp;gt; and &amp;lt;DIVISION&amp;gt; appear more than once, but we only need them once&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For 2&lt;/P&gt;
&lt;P&gt;If you have a XSD you can build the map file from this&lt;/P&gt;
&lt;P&gt;File -&amp;gt; Open XML Schema&lt;/P&gt;
&lt;P&gt;Tools -&amp;gt; Automap using XSD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the Map file created might not be what you want&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 10:21:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428310#M105745</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T10:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428311#M105746</link>
      <description>&lt;P&gt;Have a go at&amp;nbsp;creating the map file automatically, see&amp;nbsp;the doc for more information&lt;/P&gt;
&lt;P&gt;&lt;A href="http://go.documentation.sas.com/?docsetId=engxml&amp;amp;docsetTarget=p03yh3krbywig1n1v6lgkuwb3csa.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Importing an XML Document Using the AUTOMAP= Option to Generate an XMLMap&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 10:24:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428311#M105746</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T10:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428312#M105747</link>
      <description>&lt;P&gt;Per the document ,the following SAS statements import the XML document Nhl.xml. In my case, I do not have .map file to get it done.&amp;nbsp;Could you please guide me how to proceed now?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="n1wlgwsoiffu8yn1cugjzfsg1qy9" class="xis-codeBlock"&gt;
&lt;PRE class="xis-code"&gt;filename nhl 'C:\Example\Nhl.xml'; /*&lt;SPAN class="xis-calloutAnchor"&gt;1&lt;/SPAN&gt;*/
filename map 'C:\Output\NhlGenerate.map'; /*&lt;SPAN class="xis-calloutAnchor"&gt;2&lt;/SPAN&gt;*/

libname nhl xmlv2 automap=replace xmlmap=map; /*&lt;SPAN class="xis-calloutAnchor"&gt;3&lt;/SPAN&gt;*/

proc print data=nhl.team; /*&lt;SPAN class="xis-calloutAnchor"&gt;4&lt;/SPAN&gt;*/
run;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 17 Jan 2018 10:28:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428312#M105747</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T10:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428316#M105748</link>
      <description>&lt;P&gt;I'm trying to understand the first part of your response. In the example below, although&amp;nbsp;&lt;SPAN&gt;&amp;lt;TEAM .../&amp;gt; is the repeating element, each of the element seem to have different record and I'm not certain how can I make it to one observation. Appreciate if you could guide me here.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 10:33:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428316#M105748</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T10:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428317#M105749</link>
      <description>there is no way around reading the documentation!&lt;BR /&gt;&lt;BR /&gt;check the description for /*3*/&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Jan 2018 10:34:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428317#M105749</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T10:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428322#M105750</link>
      <description>&lt;P&gt;Whether the 'team' refers to a SAS dataset below?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="xis-code"&gt;proc print data=nhl.team; /*&lt;SPAN class="xis-calloutAnchor"&gt;4&lt;/SPAN&gt;*/
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 10:54:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428322#M105750</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T10:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428356#M105764</link>
      <description>&lt;P&gt;I tried the following code, but I'm not finding the .map file in /wrk1. There is no error or warning in the log file. Appreciate if you could guide me here to generate .map file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBNAME test "/shared/sas" ;
filename testing "/wrk1/dynamic_new.xml"; /*1*/
filename map "/wrk1/dynamic_new.map"; /*2*/

libname testing xml xmlmap=map; /*3*/

data dynamic; 
set test.DYNAMIC(obs=1000); 
run; 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Jan 2018 13:31:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428356#M105764</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T13:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428362#M105767</link>
      <description>&lt;P&gt;Which SAS version are you using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run this code and&amp;nbsp;provide the log&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put NOTE: &amp;amp;=sysscpl;
%put NOTE: &amp;amp;=sysvlong;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Your example code differs quite a bit from the example in the doc:&lt;/P&gt;
&lt;P&gt;for instance your are missing&amp;nbsp;the&amp;nbsp;automap=replace&lt;/P&gt;
&lt;P&gt;you are also using&amp;nbsp;the XML versus the XMLV2 engine&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any reasons for the changes?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run Proc CONTENTS on the testing library to see which tables are available, then you can use a DATA Step to read the actual data.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 13:53:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428362#M105767</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T13:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428371#M105768</link>
      <description>&lt;P&gt;Here you go.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;23         GOPTIONS ACCESSIBLE;
24         %put NOTE: &amp;amp;=sysscpl;
NOTE: &amp;amp;=sysscpl
25         %put NOTE: &amp;amp;=sysvlong;
NOTE: &amp;amp;=sysvlong&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'm using SAS 9.2 and if I use&amp;nbsp;&lt;SPAN&gt;automap=replace and&amp;nbsp;XMLV2 I used to receive an error.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;33         proc contents data=testing._all_ nods;
34         run;

ERROR: Physical file does not exist, /wrk1/dynamic_new.map.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Jan 2018 14:12:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428371#M105768</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T14:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428376#M105770</link>
      <description>&lt;P&gt;So I see, the AUTOMAP= option is available beginning with SAS® 9.3 TS1M2, so it is not available to you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to go to the approach of reducing the size of your XML file as explained earlier and then build the map from it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you know what you want to read from the XML files you can build the map file yourself with an text editor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some editors, like Notepad++, have support to actually look at the structure, you may also use your browser to look at the content of the xml file to figure out the structure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On linux system you might have the following command&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;xmllint –format file.xml&lt;/PRE&gt;
&lt;P&gt;available to make an XML easier to read&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 14:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428376#M105770</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T14:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428390#M105775</link>
      <description>&lt;P&gt;Whether It is easy to r&lt;SPAN&gt;educe the size of my XML file when it is generated from the SAS dataset which has 55000 records and 25 variables to&amp;nbsp;build the map from it?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 14:51:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428390#M105775</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T14:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428406#M105779</link>
      <description>&lt;P&gt;I do not understand, if your XML file is created from a SAS data set, why would you want to read it again into SAS?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since your XML file is created from a SAS data set, you can control the number of obs written to that file, so&amp;nbsp;you can build your XML map file using the SAS XML Mapper program.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 15:19:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428406#M105779</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T15:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428415#M105781</link>
      <description>Could you please help me to know how can I create the Map file from SAS XML&lt;BR /&gt;mapper?&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Jan 2018 15:25:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428415#M105781</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-17T15:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428421#M105783</link>
      <description>Have a look here&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/sgf/2016/06/24/tips-for-reading-xml-files-into-sas-software/" target="_blank"&gt;https://blogs.sas.com/content/sgf/2016/06/24/tips-for-reading-xml-files-into-sas-software/&lt;/A&gt;</description>
      <pubDate>Wed, 17 Jan 2018 15:30:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428421#M105783</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T15:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428664#M105854</link>
      <description>&lt;P&gt;Being guilty of very, very briefly perusing the link, I wrote my own map file for the CDISC define.xml (perhaps no substitute for the SAS Clinical Standards Toolkit).&amp;nbsp; I spent a weekend morning over a prolonged breakfast and reading &lt;A href="https://www.w3schools.com/xml/.&amp;nbsp;" target="_blank"&gt;https://www.w3schools.com/xml/.&amp;nbsp;&lt;/A&gt; With a nod to Jozef Aerts (XML4Pharma) on the Linkedin CDISC Define-XML group,&amp;nbsp;I learned the hard way about the importance of namespaces in XML.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With a few references in hand, I can write XML (or write a SAS program that writes XML "manually").&amp;nbsp; The OP did not specify the nature of the XML, but very likely a group exists that will provide useful advice, or, in my usual case, corrections.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2018 00:15:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428664#M105854</guid>
      <dc:creator>KevinViel</dc:creator>
      <dc:date>2018-01-18T00:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428685#M105858</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&amp;lt;?xml version="1.0" encoding="iso-8859-1" ?&amp;gt;
&amp;lt;NHL&amp;gt;
  &amp;lt;CONFERENCE&amp;gt; Eastern 
    &amp;lt;DIVISION&amp;gt; Southeast  
      &amp;lt;TEAM name="Thrashers"  abbrev="ATL" /&amp;gt;  
      &amp;lt;TEAM name="Hurricanes" abbrev="CAR" /&amp;gt;  
      &amp;lt;TEAM name="Panthers"   abbrev="FLA" /&amp;gt;  
      &amp;lt;TEAM name="Lightning"  abbrev="TB" /&amp;gt;  
      &amp;lt;TEAM name="Capitals"   abbrev="WSH" /&amp;gt;  
   &amp;lt;/DIVISION&amp;gt;
 &amp;lt;/CONFERENCE&amp;gt; 

 &amp;lt;CONFERENCE&amp;gt; Western
   &amp;lt;DIVISION&amp;gt; Pacific  
     &amp;lt;TEAM name="Stars"   abbrev="DAL" /&amp;gt;  
     &amp;lt;TEAM name="Kings"   abbrev="LA" /&amp;gt;  
     &amp;lt;TEAM name="Ducks"   abbrev="ANA" /&amp;gt;  
     &amp;lt;TEAM name="Coyotes" abbrev="PHX" /&amp;gt;  
     &amp;lt;TEAM name="Sharks"  abbrev="SJ" /&amp;gt;  
   &amp;lt;/DIVISION&amp;gt;
  &amp;lt;/CONFERENCE&amp;gt; 
&amp;lt;/NHL&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In the above example, could you please help me understand how will you cut the repeating elements?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2018 05:24:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428685#M105858</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-18T05:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: File Size Limitation in XML Mapper</title>
      <link>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428701#M105863</link>
      <description>&lt;P&gt;Like so&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="iso-8859-1" ?&amp;gt;
&amp;lt;NHL&amp;gt;
  &amp;lt;CONFERENCE&amp;gt; Eastern 
    &amp;lt;DIVISION&amp;gt; Southeast  
      &amp;lt;TEAM name="Thrashers"  abbrev="ATL" /&amp;gt;  
   &amp;lt;/DIVISION&amp;gt;
 &amp;lt;/CONFERENCE&amp;gt; 
&amp;lt;/NHL&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 18 Jan 2018 07:58:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/File-Size-Limitation-in-XML-Mapper/m-p/428701#M105863</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-18T07:58:30Z</dc:date>
    </item>
  </channel>
</rss>

