<?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 How to copy CARS from SASHELP to WORK in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/442987#M69317</link>
    <description>&lt;P&gt;How do I copy the SAS dataset CARS.csv from SASHELP to WORK?&amp;nbsp; Seems simple enough but I cannot cut and paste and the proc copy command is not cooperating.&amp;nbsp; I was able to copy the dataset to My Folders but not down to WORK.&lt;/P&gt;</description>
    <pubDate>Tue, 06 Mar 2018 18:09:29 GMT</pubDate>
    <dc:creator>floradoc</dc:creator>
    <dc:date>2018-03-06T18:09:29Z</dc:date>
    <item>
      <title>How to copy CARS from SASHELP to WORK</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/442987#M69317</link>
      <description>&lt;P&gt;How do I copy the SAS dataset CARS.csv from SASHELP to WORK?&amp;nbsp; Seems simple enough but I cannot cut and paste and the proc copy command is not cooperating.&amp;nbsp; I was able to copy the dataset to My Folders but not down to WORK.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 18:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/442987#M69317</guid>
      <dc:creator>floradoc</dc:creator>
      <dc:date>2018-03-06T18:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy CARS from SASHELP to WORK</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/442991#M69318</link>
      <description>&lt;P&gt;CARS.CSV is not a SAS data set. The libraries are only going to contain SAS data sets, views and catalogs (generally).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way to copy a SAS data set is code such as:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data work.cars;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; set sashelp.cars;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if Cars.csv is an actual CSV file in the SASHELP directory then it would have to be imported to a SAS data set first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CUT and paste implies removing the data set from SASHELP is a &lt;STRONG&gt;very poor idea&lt;/STRONG&gt; as many of the sets in SASHELP are used by the system. I would expect Copy and Paste to work though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Show the log of the Proc copy attempt you used. it will likely explain why it failed. To preserve formatting of any error messages post the code in a code box opened using the forum's {I} menu icon.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 18:09:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/442991#M69318</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-03-06T18:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy CARS from SASHELP to WORK</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/442992#M69319</link>
      <description>Thank you. Yes, I did an import data. Thanks again!</description>
      <pubDate>Tue, 06 Mar 2018 18:12:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/442992#M69319</guid>
      <dc:creator>floradoc</dc:creator>
      <dc:date>2018-03-06T18:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy CARS from SASHELP to WORK</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/443035#M69323</link>
      <description>&lt;P&gt;It is a poor idea to store your data in either the SASHELP or SASUSER libraries as updates to SAS may replace the directories entirely and your data is not likely to be moved.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 20:35:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/443035#M69323</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-03-06T20:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy CARS from SASHELP to WORK</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/443072#M69325</link>
      <description>Yes, I was just trying create an example of copying datasets from one library to another.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Mar 2018 21:43:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-copy-CARS-from-SASHELP-to-WORK/m-p/443072#M69325</guid>
      <dc:creator>floradoc</dc:creator>
      <dc:date>2018-03-06T21:43:55Z</dc:date>
    </item>
  </channel>
</rss>

