<?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 Dear friends, in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133260#M1190</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; i have one question to all&amp;nbsp; i got one sas dataset like datasetname.sd2 extension format when i click open its opening in SAS entreprise. but i dont know how to import into sas 9.3. please give me an solution for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Nov 2013 03:45:48 GMT</pubDate>
    <dc:creator>anilgvdbm</dc:creator>
    <dc:date>2013-11-06T03:45:48Z</dc:date>
    <item>
      <title>Dear friends,</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133260#M1190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; i have one question to all&amp;nbsp; i got one sas dataset like datasetname.sd2 extension format when i click open its opening in SAS entreprise. but i dont know how to import into sas 9.3. please give me an solution for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 03:45:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133260#M1190</guid>
      <dc:creator>anilgvdbm</dc:creator>
      <dc:date>2013-11-06T03:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dear friends,</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133261#M1191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;libname test v6 "path where the file with extension.sd2 is located";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is done to tell sas that the data file we are trying to access is a v6 datafile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can convert the v6 datafile into version 9.3 by&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set test.dataset;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we can check if the newly created datafile is changed to the current version of sas or not (.sas7bdat) by.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc contents data=want;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 03:58:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133261#M1191</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2013-11-06T03:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dear friends,</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133262#M1192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sir ,&lt;/P&gt;&lt;P&gt;I am getting this error &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp; libname test v6 'D:\District level data\DHS-India\NFHS 1992-93\All-India\HH&lt;/P&gt;&lt;P&gt;&amp;nbsp; ! raw\IAHH21FL.sd2' ;&lt;/P&gt;&lt;P&gt;ERROR: Library TEST is not in a valid format for access method RANDOM.&lt;/P&gt;&lt;P&gt;ERROR: Error in the LIBNAME statement.&amp;nbsp; """&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 04:53:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133262#M1192</guid>
      <dc:creator>anilgvdbm</dc:creator>
      <dc:date>2013-11-06T04:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dear friends,</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133263#M1193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname test v6 'D:\District level data\DHS-India\NFHS 1992-93\All-India\HH&lt;/P&gt;&lt;P&gt;&amp;nbsp; ! raw' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just give the folder path, not the file path. Also only the folder path should be in quotes not the libname statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 05:16:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133263#M1193</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2013-11-06T05:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dear friends,</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133264#M1194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear sir ,&lt;/P&gt;&lt;P&gt;Thank you very much for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;ANil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 05:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133264#M1194</guid>
      <dc:creator>anilgvdbm</dc:creator>
      <dc:date>2013-11-06T05:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dear friends,</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133265#M1195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, thank you &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="1510" data-externalid="" data-presence="null" data-userid="9792" data-username="Jagadishkatam" href="https://communities.sas.com/people/Jagadishkatam" id="jive-97923971724455813786"&gt;Jagadishkatam&lt;/A&gt; for helping!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="1710" data-externalid="" data-presence="null" data-userid="819378" data-username="anilgvdbm" href="https://communities.sas.com/people/anilgvdbm" id="jive-8193783971724469951786"&gt;anilgvdbm&lt;/A&gt;, I hope you're all set. If so, can you mark the correct answer so others in the community can reference it in case they run into the same problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Anna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 14:54:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Dear-friends/m-p/133265#M1195</guid>
      <dc:creator>AnnaBrown</dc:creator>
      <dc:date>2013-11-06T14:54:39Z</dc:date>
    </item>
  </channel>
</rss>

