<?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: spss to sas in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139412#M296236</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option if you have access to SPSS is to try exporting from SPSS to SAS. One additional advantage of this approach&amp;nbsp; is the option to create a SAS Format program file that will mimic SPSS value displays.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Oct 2014 16:49:51 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2014-10-23T16:49:51Z</dc:date>
    <item>
      <title>spss to sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139410#M296234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to import a spss data set into sas, but it seems that I loose some content on the way, meaning that my 1100 - long string is truncated to just 225. &lt;/P&gt;&lt;P&gt;I know that it is possible to extent the lenght of the variables, but so far I was not able to understand how to do it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sintax that I have used is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC IMPORT&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATAFILE=''&lt;/P&gt;&lt;P&gt;&amp;nbsp; OUT=&lt;/P&gt;&lt;P&gt;&amp;nbsp; DBMS=SAV replace;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2014 16:12:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139410#M296234</guid>
      <dc:creator>individual</dc:creator>
      <dc:date>2014-10-23T16:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: spss to sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139411#M296235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out the LRECL system option at&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003160472.htm" title="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003160472.htm"&gt;SAS(R) 9.2 Language Reference: Dictionary, Fourth Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Syntax &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LRECL=n | nK | nM | nG | nT | hexX | MIN | MAX&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax Description&lt;/P&gt;&lt;P&gt;n&lt;BR /&gt;specifies the logical record length in multiples of 1 (bytes); 1,024 (kilobytes); 1,048,576 (megabytes); 1,073,741,824 (gigabytes); or 1,099,511,627,776 (terabytes). For example, a value of 32 specifies 32 bytes, and a value of 32k specifies 32,767 bytes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2014 16:26:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139411#M296235</guid>
      <dc:creator>SUDOKU</dc:creator>
      <dc:date>2014-10-23T16:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: spss to sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139412#M296236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option if you have access to SPSS is to try exporting from SPSS to SAS. One additional advantage of this approach&amp;nbsp; is the option to create a SAS Format program file that will mimic SPSS value displays.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2014 16:49:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139412#M296236</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-10-23T16:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: spss to sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139413#M296237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try DBMS=SPSS instead of SAV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC IMPORT&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATAFILE=''&lt;/P&gt;&lt;P&gt;&amp;nbsp; OUT=&lt;/P&gt;&lt;P&gt;&amp;nbsp; DBMS=SPSS replace;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2014 17:13:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/spss-to-sas/m-p/139413#M296237</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-10-23T17:13:24Z</dc:date>
    </item>
  </channel>
</rss>

