<?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: SAS beginer - cant able to exprt SAS data to machine in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556180#M154912</link>
    <description>&lt;P&gt;Hi reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks! But even after selecting the same folder for output, I get errors. Please see code and error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;are you sure? is my SAS UE is setup incorrect? is there any way to correct it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Stud_address;
Infile "/folders/myshortcuts/Myfolders/Imports/Address.dat" truncover;
input Names $13. suite Address $18.;
run;
proc print data=stud_address;
run;
proc export data= stud_address outfile= "/folders/myshortcuts/Myfolders/Address.dat" replace;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;ERROR:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 3 observations read from the data set WORK.STUD_ADDRESS.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.14 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.08 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 proc export data= stud_address outfile= "/folders/myshortcuts/Myfolders/Address.dat" replace;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Unable to determine datasource type. Please use the DBMS= option.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE EXPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.06 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95&lt;/DIV&gt;</description>
    <pubDate>Sat, 04 May 2019 14:06:16 GMT</pubDate>
    <dc:creator>Deepak13</dc:creator>
    <dc:date>2019-05-04T14:06:16Z</dc:date>
    <item>
      <title>SAS beginer - cant able to exprt SAS data to machine</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556090#M154865</link>
      <description>&lt;PRE&gt;data Stud_address;
Infile "/folders/myshortcuts/Myfolders/Imports/Address.dat" truncover;
input Names $13. suite Address $18.;
run;
proc print data=stud_address;
run;
proc export data= stud_address outfile= "T:\SAS\output\Stud_address.dat" dbms= dlm replace;
run;&lt;/PRE&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried exporting the program but cant able to do so, Kindly help! not sure where iam stucl&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2019 19:49:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556090#M154865</guid>
      <dc:creator>Deepak13</dc:creator>
      <dc:date>2019-05-03T19:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS beginer - cant able to exprt SAS data to machine</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556092#M154867</link>
      <description>Export to the myfolders location and find the file there.&lt;BR /&gt;&lt;BR /&gt;Myfolders is on your computer anyways. &lt;BR /&gt;&lt;BR /&gt;If you want to export to other locations, you need to set them up as a shared drive the way you did for myfolders. &lt;BR /&gt;&lt;BR /&gt;FYI - I'm guessing you accidentally set up SAS UE incorrectly and chose to leave it that way.</description>
      <pubDate>Fri, 03 May 2019 19:52:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556092#M154867</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-03T19:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS beginer - cant able to exprt SAS data to machine</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556094#M154869</link>
      <description>&lt;P&gt;Does the first data step run?&lt;/P&gt;
&lt;P&gt;If so then you need to use Unix style file paths, not the Windows style path you have in the last step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2019 19:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556094#M154869</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-05-03T19:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS beginer - cant able to exprt SAS data to machine</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556101#M154871</link>
      <description>&lt;P&gt;Your infile statement makes me think you may be using the University Edition. As such the only paths it can see are those specifically set up for the virtual machine to use. So it likely does not "see" the T drive or any folders there.&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2019 20:47:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556101#M154871</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-05-03T20:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS beginer - cant able to exprt SAS data to machine</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556180#M154912</link>
      <description>&lt;P&gt;Hi reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks! But even after selecting the same folder for output, I get errors. Please see code and error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;are you sure? is my SAS UE is setup incorrect? is there any way to correct it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Stud_address;
Infile "/folders/myshortcuts/Myfolders/Imports/Address.dat" truncover;
input Names $13. suite Address $18.;
run;
proc print data=stud_address;
run;
proc export data= stud_address outfile= "/folders/myshortcuts/Myfolders/Address.dat" replace;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;ERROR:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 3 observations read from the data set WORK.STUD_ADDRESS.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.14 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.08 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 proc export data= stud_address outfile= "/folders/myshortcuts/Myfolders/Address.dat" replace;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Unable to determine datasource type. Please use the DBMS= option.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE EXPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.06 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95&lt;/DIV&gt;</description>
      <pubDate>Sat, 04 May 2019 14:06:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556180#M154912</guid>
      <dc:creator>Deepak13</dc:creator>
      <dc:date>2019-05-04T14:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS beginer - cant able to exprt SAS data to machine</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556181#M154913</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you please share a example program on how to use unix style filepaths.&lt;/P&gt;</description>
      <pubDate>Sat, 04 May 2019 14:11:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556181#M154913</guid>
      <dc:creator>Deepak13</dc:creator>
      <dc:date>2019-05-04T14:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS beginer - cant able to exprt SAS data to machine</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556182#M154914</link>
      <description>&lt;P&gt;Yes, you are right I use SAS UE, is there no way to export datafile to my system?&lt;/P&gt;</description>
      <pubDate>Sat, 04 May 2019 14:13:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556182#M154914</guid>
      <dc:creator>Deepak13</dc:creator>
      <dc:date>2019-05-04T14:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS beginer - cant able to exprt SAS data to machine</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556190#M154922</link>
      <description>&lt;P&gt;That error is not a PATH issue.&amp;nbsp; You didn't tell PROC EXPORT what type of file you wanted to create.&lt;/P&gt;
&lt;P&gt;For some known extensions PROC EXPORT will guess what type of file you want to create but it is better to tell it using the DBMS= option on the PROC statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to recreate your fixed format text file then just do that using a data step.&lt;/P&gt;
&lt;P&gt;But you would need to tell it what format to use for the SUITE variable.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set stud_address;
  file "/folders/myshortcuts/Myfolders/Address.dat" ;
  put Names $13. suite 10. +1 Address $18.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 May 2019 15:30:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-beginer-cant-able-to-exprt-SAS-data-to-machine/m-p/556190#M154922</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-05-04T15:30:52Z</dc:date>
    </item>
  </channel>
</rss>

