<?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: SAS university edition: can't load data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155911#M298863</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Perhaps this narrative regarding DBMS might help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DBMS=&lt;SPAN class="userSuppliedValue"&gt;identifier&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="paraSimpleFirst"&gt;specifies the type of data to import. You can import JMP files (DBMS=JMP) or delimited files. To import a tab-delimited file, specify TAB as the identifier. To import any other delimited file that does not end in .CSV, specify DLM as the identifier. For a comma-separated file with a .CSV extension, DBMS= is optional. The IMPORT procedure recognizes .CSV as an extension for a comma-separated file. &lt;/P&gt;&lt;DIV&gt;&lt;SPAN class="summarySee"&gt;See:&lt;/SPAN&gt;&lt;SPAN class="xrefSee"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/n0ku4pxzx3d2len10ozjgyjbrpl9.htm#n1xc846vt9nzy5n1ol14y2t2kupg" title=""&gt;DBMS Identifiers Supported in Base SAS&lt;/A&gt;&lt;SPAN class="xrefText"&gt; for more information about identifiers for this option.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Feb 2015 20:15:44 GMT</pubDate>
    <dc:creator>AminB</dc:creator>
    <dc:date>2015-02-05T20:15:44Z</dc:date>
    <item>
      <title>SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155908#M298860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying a simple proc import:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc import out = test datafile = "/folders/myfolders/cchs05.dta";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which gives me an error message saying 'physical file does not exist, '&lt;SPAN style="font-size: 13.3333330154419px;"&gt;/folders/myfolders/cchs05.dta'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know I set up myfolders correctly because my libname statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname testlib "/folders/myfolders";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I saved 'cchs05.dta' to myfolders.&amp;nbsp; In fact, I can see it from the SAS studio tab under my folders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried logging in and out.&amp;nbsp; And using a data step but my infile statement gives a similar error.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clearly, I'm missing something obvious but I really can't figure it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Lyming&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11407i617A3924C535D7F7/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="SAS problem.PNG" title="SAS problem.PNG" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 18:41:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155908#M298860</guid>
      <dc:creator>LymingHuang</dc:creator>
      <dc:date>2015-02-05T18:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155909#M298861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could it be that SAS does not recognize the .DTA file extension? The following example appears online. Maybe it can help you, specifically the DBMS and DELIMITER options. I am sorry but I have only imported CSV and EXCEL files into SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="a002256249"&gt;&lt;/A&gt;proc import datafile='c:\temp\tab.txt'&lt;/P&gt;&lt;P&gt;&amp;nbsp; out=class&lt;/P&gt;&lt;P&gt;&amp;nbsp; dbms=dlm&lt;/P&gt;&lt;P&gt;&amp;nbsp; replace;&lt;/P&gt;&lt;P&gt;&amp;nbsp; delimiter='09'x;&lt;/P&gt;&lt;P&gt;&amp;nbsp; datarow=5;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 19:12:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155909#M298861</guid>
      <dc:creator>AminB</dc:creator>
      <dc:date>2015-02-05T19:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155910#M298862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try making sure to specify a DBMS, so SAS know what type of file it's trying to import&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 20:07:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155910#M298862</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-02-05T20:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155911#M298863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Perhaps this narrative regarding DBMS might help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DBMS=&lt;SPAN class="userSuppliedValue"&gt;identifier&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="paraSimpleFirst"&gt;specifies the type of data to import. You can import JMP files (DBMS=JMP) or delimited files. To import a tab-delimited file, specify TAB as the identifier. To import any other delimited file that does not end in .CSV, specify DLM as the identifier. For a comma-separated file with a .CSV extension, DBMS= is optional. The IMPORT procedure recognizes .CSV as an extension for a comma-separated file. &lt;/P&gt;&lt;DIV&gt;&lt;SPAN class="summarySee"&gt;See:&lt;/SPAN&gt;&lt;SPAN class="xrefSee"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/n0ku4pxzx3d2len10ozjgyjbrpl9.htm#n1xc846vt9nzy5n1ol14y2t2kupg" title=""&gt;DBMS Identifiers Supported in Base SAS&lt;/A&gt;&lt;SPAN class="xrefText"&gt; for more information about identifiers for this option.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 20:15:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155911#M298863</guid>
      <dc:creator>AminB</dc:creator>
      <dc:date>2015-02-05T20:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155912#M298864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the suggestions but I don't think that's it...I think it's something more fundamental.&amp;nbsp; I also have the data in .txt format but running a datastep with an infile statement gives the same error.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Also, the SAS documentation seems to say '.dta' is not recognized as a DMBS identifier.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 22:51:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155912#M298864</guid>
      <dc:creator>LymingHuang</dc:creator>
      <dc:date>2015-02-05T22:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155913#M298865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. restart UE&lt;/P&gt;&lt;P&gt;2. post code/ log from text version that failed. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 23:55:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155913#M298865</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-02-05T23:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155914#M298866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You say this works fine:&lt;/P&gt;&lt;P&gt;libname testlib "/folders/myfolders";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this generate any error (test creating a data set)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data testlib.test;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x=1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;(a basic test to see if you can write to that location)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 23:57:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155914#M298866</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-02-05T23:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155915#M298867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again for the suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The test dataset worked for the library...but nothing else.&amp;nbsp; I've included a log file below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here are the first 5 rows of a dataset in /folders/myfolders/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 21213&amp;nbsp; 293.76&lt;/P&gt;&lt;P&gt;1 38122&amp;nbsp; 743.82&lt;/P&gt;&lt;P&gt;1 55113 2984.93&lt;/P&gt;&lt;P&gt;1 40111&amp;nbsp; 975.96&lt;/P&gt;&lt;P&gt;1 40114&amp;nbsp; 387.17&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SAStestlog1.JPG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/9047_SAStestlog1.JPG" width="450" /&gt;&lt;IMG alt="SAStestlog2.JPG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/9048_SAStestlog2.JPG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 02:31:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155915#M298867</guid>
      <dc:creator>LymingHuang</dc:creator>
      <dc:date>2015-02-06T02:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155916#M298868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens with either of the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc import datafile='&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;/folders/myfolders/cchs05.dta&lt;/SPAN&gt;'&lt;/P&gt;&lt;P&gt;&amp;nbsp; out=want&lt;/P&gt;&lt;P&gt;&amp;nbsp; dbms=dlm&lt;/P&gt;&lt;P&gt;&amp;nbsp; replace;&lt;/P&gt;&lt;P&gt;datarow=1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; delimiter='09'x;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;infile &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;/folders/myfolders/cchs05.dta&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;' dlm='09'x truncover firstobs=1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;input ID MRN VALUE;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 03:13:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155916#M298868</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-02-06T03:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155917#M298869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename oscmd pipe "ls -l /folders/myfolders 2&amp;gt;&amp;amp;1";&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;infile oscmd;&lt;/P&gt;&lt;P&gt;input;&lt;/P&gt;&lt;P&gt;put _infile_;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will write a complete directory listing of /folders/myfolders to the SAS log, including error messages if any happen (that is done by the 2&amp;gt;&amp;amp;1 redirection). You may get a clue out of that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 08:07:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155917#M298869</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-02-06T08:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155918#M298870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks so much for the continued suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reeza, I tried you two pieces of codes and both gave errors saying 'physical file does not exist'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kurt, the filename statement gave this:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="filename.JPG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/9071_filename.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;and then the data step didn't work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="data.JPG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/9072_data.JPG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 23:03:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155918#M298870</guid>
      <dc:creator>LymingHuang</dc:creator>
      <dc:date>2015-02-06T23:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155919#M298871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After examine my install of SAS UE, I think SAS is correct and your file is located else where. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I saved a file under folder/myfolders location it shows under the second myfolders in the image you've included. Yours does not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You've created a folder shortcut with the same name, but it may not reference the same location. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examine your Shared Folder and determine where folders/myfolders is set to. Check if the file is actually in that location. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 01:03:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155919#M298871</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-02-07T01:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155920#M298872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's it!&amp;nbsp; I didn't set folders/myfolders correctly - I guess because it's case sensitive?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, it's working now.&amp;nbsp; Thanks again for all the help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lyming&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2015 22:50:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155920#M298872</guid>
      <dc:creator>LymingHuang</dc:creator>
      <dc:date>2015-02-07T22:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAS university edition: can't load data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155921#M298873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keep in mind that SAS UE runs on an VM with Linux, and Linux, as any UNIX, is completely case sensitive.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 07:02:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-university-edition-can-t-load-data/m-p/155921#M298873</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-02-09T07:02:28Z</dc:date>
    </item>
  </channel>
</rss>

