<?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: Help reading in File, might be encoding problem? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168653#M301080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do i need a specific version of sas to use the list option? When I use it I don't get any of the information that you get before the following section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SourceTable_Value,JournalBatchName_Value,GlobalDimension1Code_Value,MasterJobDimension&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;87&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp; _Value &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;92&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;2&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; JobJournalLine,AES-TIME,&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"clientwithcommainname, N.A."&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;,J03312&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Oct 2014 20:08:32 GMT</pubDate>
    <dc:creator>Anotherdream</dc:creator>
    <dc:date>2014-10-01T20:08:32Z</dc:date>
    <item>
      <title>Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168647#M301074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone. My company has a tool that exporst data to csv all in one column, but comma seperated. The output file looks exactly like the attached file.&amp;nbsp; However when I try to read this into sas, every single character is separted by a space. It almost looks like there is an invisible space and/or tab between every visible character.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I also notice that if I open the file and try to "save as" the encoding on it is "Unicode".&amp;nbsp; I don't know very much about encoding but could this be causing the problem?&amp;nbsp; I tried to read in the file with the option encoding="unicode" but that did not seem to fix the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to build a process that opens and reads from this csv file every night, and this is the only way the application can output data, so this is the only format I can get it in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wrote a vba macro that would open the file&amp;nbsp; and save it as an xls, and then save it again as a csv and that seems to fix the problems, however this is extremely inefficient and i'd like to know how to do this within sas itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please note the following code can be run to show the file with all of the spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; proc import datafile="c:\urderive\example plz help.csv" out=whynotworking&lt;/P&gt;&lt;P&gt; replace;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz note the dataset should have 4 columns, 1 row of data if the import worked correctly, but instead it has 5 columns and 3 rows, and all of the data has spaces between their values. Example "JobJournal" shows up as "J o b J o u r n a l" in the sas dataset.&amp;nbsp; I actually can't even paste in the sas values because when I copy and paste it to anything it shows up as blank values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you need any further information to help with this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 17:39:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168647#M301074</guid>
      <dc:creator>Anotherdream</dc:creator>
      <dc:date>2014-10-01T17:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168648#M301075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The file appears to be in UTF-16. Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;filename foo 'c:\temp\example plz help.csv' encoding="utf-16" lrecl=92;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc import out=test datafile=foo dbms=csv;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;getnames=no;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc print;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt; &lt;A href="http://support.sas.com/kb/16/355.html"&gt;&lt;SPAN style="color: #4b4b4b; line-height: 1.5em;"&gt;Usage Note &lt;/SPAN&gt;&lt;EM&gt;16355: &lt;/EM&gt;&lt;SPAN style="color: #4b4b4b; line-height: 1.5em;"&gt;Does SAS support UTF-16 encoding?&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 19:36:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168648#M301075</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2014-10-01T19:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168649#M301076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiya Tim. I will try this code. Cna I ask how you knew the file was in utf-16 form? The only way I guessed it was 'unicode' (incorrectly apparently) is because that's what it says when I open it in Notepad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is theresome special tool you used to figure that out?&amp;nbsp; I will keep you posted on if this code works!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 19:44:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168649#M301076</guid>
      <dc:creator>Anotherdream</dc:creator>
      <dc:date>2014-10-01T19:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168650#M301077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this. encoding="utf-16le"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using SAS 9.4 for winders I ran this and SAS told me.&amp;nbsp; I haven't tried it in any other version of SAS..&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;20&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; data _null_;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;21&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile FT66F001; &lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;22&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; input;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;23&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; list;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;24&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;NOTE: &lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; background-color: #ffffff;"&gt;A&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; byte-order mark in the file &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"C:\Users\zzzzzzzzz\Downloads\example plz help.csv\example&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; plz help.csv"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; (for fileref &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"FT66F001"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;) indicates that the data is encoded in &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"utf-16le"&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;.&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This encoding will be used to process the &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;file.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;NOTE: The infile FT66F001 is:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (system-specific pathname),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (system-specific file attributes)&lt;BR /&gt;&lt;BR /&gt;RULE:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----+----&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;1&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;----+----&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;2&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;----+----&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;3&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;----+----&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;4&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;----+----&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;5&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;----+----&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;6&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;----+----&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;7&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;----+----&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;8&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;----+-&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;1&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SourceTable_Value,JournalBatchName_Value,GlobalDimension1Code_Value,MasterJobDimension&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;87&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp; _Value &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;92&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;2&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; JobJournalLine,AES-TIME,&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"clientwithcommainname, N.A."&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;,J03312 &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;60&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;3&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;NOTE: &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;3&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; records were read from the infile (system-specific pathname)&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;.&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The minimum record length was &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0.&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The maximum record length was &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;92.&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0.04&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0.03&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; seconds&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: data _null_&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 19:44:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168650#M301077</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-10-01T19:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168651#M301078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So Tim your solution did not seem to work, but it is on exactly the right track.&amp;nbsp; _null_ this worked perfectly and the file is reading in correctly now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me how you figured out what encoding the file was? Or at least point me to a paper that I can read to figure this out. I would have never in a million years figured that out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 19:51:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168651#M301078</guid>
      <dc:creator>Anotherdream</dc:creator>
      <dc:date>2014-10-01T19:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168652#M301079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you see my updated post?&amp;nbsp; That data step INPUT; LIST; is always where I begin with files that give me problems.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 19:54:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168652#M301079</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-10-01T19:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168653#M301080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do i need a specific version of sas to use the list option? When I use it I don't get any of the information that you get before the following section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SourceTable_Value,JournalBatchName_Value,GlobalDimension1Code_Value,MasterJobDimension&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;87&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp; _Value &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;92&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;2&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; JobJournalLine,AES-TIME,&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"clientwithcommainname, N.A."&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;,J03312&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 20:08:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168653#M301080</guid>
      <dc:creator>Anotherdream</dc:creator>
      <dc:date>2014-10-01T20:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168654#M301081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the complete program.&amp;nbsp;&amp;nbsp; Your path will vary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;filename&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; FT66F001 &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"C:\Users\zzz\Downloads\example plz help.csv\example plz help.csv"&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;_null_&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;infile&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; FT66F001; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;input&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;list&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 20:12:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168654#M301081</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-10-01T20:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168655#M301082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This was done using SAS 9.4 and I don't know if that info will be there with other versions of SAS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 20:14:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168655#M301082</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-10-01T20:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168656#M301083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use notepad++ you will see it will recognize the encoding also. There is a tab view for that.&lt;/P&gt;&lt;P&gt;Would you use the type command in a dos box you will see several strange chars at the beginning. Sas will also show them dumping the input line.&lt;/P&gt;&lt;P&gt;That's is the bomb marker, only an indication for Unicode usage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are several versions Unicode utf8 is the most recent one. It supports variable number of bytes for 1 character.&lt;/P&gt;&lt;P&gt;This one is&amp;nbsp; common used in office and Internet. &lt;/P&gt;&lt;P&gt;The old Latin1 is almost identical to the first 250 chars of utf8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Utf16 is older and different as always 2 bytes are representing one char. There are however many variations in Utf16 as code page differences.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you at some moment char space char space (in reality 00x) you most likely are seeing an Utf16 dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As your sas session probably is using Latin1 you can loose chars. There will be a note when it happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Oct 2014 19:01:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168656#M301083</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-10-02T19:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Help reading in File, might be encoding problem?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168657#M301084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data null that is a nice encoding message with 9.4. &lt;/P&gt;&lt;P&gt;Recently I tried something like that with ue that is 9.4 but did not recognize the bom.&lt;/P&gt;&lt;P&gt;There are several other improvements wit 9.4 and the utf support. The proc cimport is still failing from Latin1 to utf8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Oct 2014 19:09:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-reading-in-File-might-be-encoding-problem/m-p/168657#M301084</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-10-02T19:09:03Z</dc:date>
    </item>
  </channel>
</rss>

