<?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: Convert SAS V8 Transport File Format to SAS data set? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Convert-SAS-V8-Transport-File-Format-to-SAS-data-set/m-p/276356#M55358</link>
    <description>&lt;P&gt;Check your log to make sure the library was actually created.&lt;/P&gt;
&lt;P&gt;Then check the spelling of your dataset name to ensure it is in the library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see where you are trying to convert a transport file though. The way you are using or xport library is for output not input.&lt;/P&gt;
&lt;P&gt;typically I would expect to see Proc Cimport to read a transport file:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc cimport library=mylib infile="path\file.xpt"; run;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jun 2016 19:16:12 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-06-09T19:16:12Z</dc:date>
    <item>
      <title>Convert SAS V8 Transport File Format to SAS data set?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-SAS-V8-Transport-File-Format-to-SAS-data-set/m-p/276298#M55341</link>
      <description>&lt;P&gt;Hi, all:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how to convert SAS V8 Transport File Format to SAS data set?&amp;nbsp; Many thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a code below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;libname&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; source &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'C:\My SAS Files\IIT'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;libname&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; xportout &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;xport&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'C:\My SAS Files\IIT\Data_CID_new version_hard drive.xpt'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; xportout.grades;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;set&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; source.grades;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;One Error message is shown that: &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;ERROR: File SOURCE.GRADES.DATA does not exist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How is that come???&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2016 15:45:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-SAS-V8-Transport-File-Format-to-SAS-data-set/m-p/276298#M55341</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2016-06-09T15:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Convert SAS V8 Transport File Format to SAS data set?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-SAS-V8-Transport-File-Format-to-SAS-data-set/m-p/276356#M55358</link>
      <description>&lt;P&gt;Check your log to make sure the library was actually created.&lt;/P&gt;
&lt;P&gt;Then check the spelling of your dataset name to ensure it is in the library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see where you are trying to convert a transport file though. The way you are using or xport library is for output not input.&lt;/P&gt;
&lt;P&gt;typically I would expect to see Proc Cimport to read a transport file:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc cimport library=mylib infile="path\file.xpt"; run;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2016 19:16:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-SAS-V8-Transport-File-Format-to-SAS-data-set/m-p/276356#M55358</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-06-09T19:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Convert SAS V8 Transport File Format to SAS data set?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-SAS-V8-Transport-File-Format-to-SAS-data-set/m-p/276372#M55364</link>
      <description>&lt;P&gt;I agree with &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw﻿&lt;/a&gt;&amp;nbsp;that PROC CIMPORT is the right tool if the .xpt file was created using PROC CPORT.&amp;nbsp;However, if it was created using the XPORT engine (in which case I think it would actually be a SAS V&lt;STRONG&gt;5&lt;/STRONG&gt; transport file), I would use:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc copy in=xportout out=work; /* or choose another output library */
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jun 2016 21:54:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-SAS-V8-Transport-File-Format-to-SAS-data-set/m-p/276372#M55364</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-06-09T21:54:57Z</dc:date>
    </item>
  </channel>
</rss>

