<?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: PROC IMPORT bug in 9.2? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/278425#M58885</link>
    <description>&lt;P&gt;If you want PROC IMPORT to have an option to import all fields as character, please vote:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SASware-Ballot-Ideas/PROC-IMPORT-all-fields-as-character/idi-p/278415#M2011" target="_blank"&gt;PROC IMPORT -- all fields as character&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 19 Jun 2016 00:09:42 GMT</pubDate>
    <dc:creator>agoldma</dc:creator>
    <dc:date>2016-06-19T00:09:42Z</dc:date>
    <item>
      <title>PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111606#M30931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am attempting to import a pipe-delimited text file. I want all the fields to appear as text regardless of what transformations may occur later. For some reason, SAS decides that some fields are datetime and formats them accordingly. Is there a workaround with PROC IMPORT? If I use the infile statement, how do I get SAS to account for varying field lengths so they are not all cut off at 8 characters (I prefer not to specify lengths individually).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2012 13:58:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111606#M30931</guid>
      <dc:creator>Doug</dc:creator>
      <dc:date>2012-10-30T13:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111607#M30932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not a bug but the design of proc import.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need more control I would recommend running proc import. Then look in the LOG and you will find&amp;nbsp; datastep code&lt;BR /&gt;SAS generated to read the file. Copy the code from the log to the editor and modify the INFORMAT statements to character informats which would be $XX. where XX represents the number of characters in the field. Remove the FORMAT statements as basically not much need with character. And modify the input statment to have a $ after each variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the data actually are dates or datetimes and you manipulate them at all you would probably be better off using the SAS date / datetime though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2012 14:45:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111607#M30932</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-10-30T14:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111608#M30933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an example that creates variables based on the field names of a pipe delimited file where the first row are field names.&amp;nbsp; The data is transposed into a model data set in this case with all character variables.&amp;nbsp; The model data is used to drive the data step to read in the data fields beginnin in row 2.&lt;/P&gt;&lt;P&gt;&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; FT15F001 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;temp&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; background-color: #ffffff;"&gt;parmcards&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; background-color: #ffffff;"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|Sex|Age|Height|Weight&lt;BR /&gt;Alfred|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;14&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;69&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;112.5&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Alice|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;13&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;56.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;84&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Barbara|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;13&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;65.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;98&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Carol|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;14&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;62.8&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;102.5&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Henry|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;14&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;63.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;102.5&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;James|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;12&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;57.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;83&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Jane|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;12&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;59.8&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;84.5&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Janet|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;15&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;62.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;112.5&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Jeffrey|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;13&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;62.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;84&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;John|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;12&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;59&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;99.5&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Joyce|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;11&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;51.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;50.5&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Judy|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;14&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;64.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;90&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Louise|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;12&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;56.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;77&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Mary|F|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;15&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;66.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;112&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Philip|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;16&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;72&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;150&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Robert|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;12&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;64.8&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;128&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Ronald|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;15&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;67&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;133&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;Thomas|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;11&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;57.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;85&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;William|M|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;15&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;|&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;66.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;112&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;;;;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&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;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; fields;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&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; FT15F001 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;obs&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;1&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;dsd&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;dlm&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;'|'&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;length&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; name $&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;32&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; dummy $&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;128&lt;/STRONG&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;retain&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; dummy &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;' '&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;input&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; name @@;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&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;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;transpose&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;out&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=model(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;drop&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=_name_);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; dummy;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;id&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; name;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&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;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; class;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;if&lt;/SPAN&gt; &lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;0&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;then&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; model;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&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; FT15F001 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;firstobs&lt;/SPAN&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: #0000ff; background-color: #ffffff;"&gt;dsd&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;dlm&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;'|'&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;input&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; (_all_) (:);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&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;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;print&lt;/STRONG&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>Tue, 30 Oct 2012 15:07:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111608#M30933</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2012-10-30T15:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111609#M30934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When reading delimeted files, PROC IMPORT writes a DATA step, though somewhat less sophisticated than the one written by DATA _NULL_ below.&amp;nbsp; If you are running IMPORT from the Display Manager you can recover this program without copying from the LOG by using the RECALL command (under RUN) after executing the IMPORT .&amp;nbsp; This can save a bit of editing of extraneous characters that will be a part of the LOG.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2012 18:11:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111609#M30934</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2012-10-30T18:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111610#M30935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way is considering a loose length for all the variables .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data x;&lt;/P&gt;&lt;P&gt;infile 'xxxx';&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;input (var1 - var100) (: $200.);&lt;/STRONG&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;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 04:39:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111610#M30935</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-10-31T04:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111611#M30936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;that's a good time to use the compress=yes option&lt;/P&gt;&lt;P&gt;It is like having VARCHAR() for all fields instead of CHAR()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 23:40:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111611#M30936</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2012-10-31T23:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111612#M30937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Art - that is what I ended up doing and it worked well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 17:39:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/111612#M30937</guid>
      <dc:creator>Doug</dc:creator>
      <dc:date>2012-11-08T17:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/278419#M58884</link>
      <description>&lt;P&gt;If you want PROC IMPORT to have an option to import all fields as character, please vote:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SASware-Ballot-Ideas/PROC-IMPORT-all-fields-as-character/idi-p/278415#M2011" target="_blank"&gt;PROC IMPORT -- all fields as character&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jun 2016 22:04:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/278419#M58884</guid>
      <dc:creator>agoldma</dc:creator>
      <dc:date>2016-06-18T22:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: PROC IMPORT bug in 9.2?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/278425#M58885</link>
      <description>&lt;P&gt;If you want PROC IMPORT to have an option to import all fields as character, please vote:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SASware-Ballot-Ideas/PROC-IMPORT-all-fields-as-character/idi-p/278415#M2011" target="_blank"&gt;PROC IMPORT -- all fields as character&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jun 2016 00:09:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-IMPORT-bug-in-9-2/m-p/278425#M58885</guid>
      <dc:creator>agoldma</dc:creator>
      <dc:date>2016-06-19T00:09:42Z</dc:date>
    </item>
  </channel>
</rss>

