<?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: Importing a SAS7BDAT file from c drive location in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596863#M171917</link>
    <description>&lt;P&gt;Yes I am using SAS EG and it is server connected.&amp;nbsp; So could that cause the issue with trying to connect to data located on my machine?&lt;/P&gt;</description>
    <pubDate>Wed, 16 Oct 2019 13:05:56 GMT</pubDate>
    <dc:creator>tobyfarms</dc:creator>
    <dc:date>2019-10-16T13:05:56Z</dc:date>
    <item>
      <title>Importing a SAS7BDAT file from c drive location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596642#M171817</link>
      <description>&lt;P&gt;I am having difficulty reading in a file from my c drive location.&amp;nbsp; Here is the code.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; new;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;set&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;'C:\cert\input\input04.sas7bdat'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Here is the error&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;30 data new;&lt;/P&gt;&lt;P&gt;31 set 'C:\cert\input\input04.sas7bdat';&lt;/P&gt;&lt;P&gt;ERROR: The value 'C:\CERT\INPUT\INPUT04'n is not a valid SAS member name.&lt;/P&gt;&lt;P&gt;32 run;&lt;/P&gt;&lt;P&gt;NOTE: Compression was disabled for data set WORK.NEW because compression overhead would increase the size of the data set.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.NEW may be incomplete. When this step was stopped there were 0 observations and 0 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.NEW was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;33&lt;/P&gt;&lt;P&gt;34 %_eg_hidenotesandsource;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable _EGNOTES resolves to NOTES&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable _EGSOURCE resolves to SOURCE&lt;/P&gt;&lt;P&gt;46&lt;/P&gt;&lt;P&gt;47&lt;/P&gt;&lt;P&gt;48 %_eg_hidenotesandsource;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable _EGNOTES resolves to NOTES&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable _EGSOURCE resolves to SOURCE&lt;/P&gt;&lt;P&gt;51&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 19:44:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596642#M171817</guid>
      <dc:creator>tobyfarms</dc:creator>
      <dc:date>2019-10-15T19:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a SAS7BDAT file from c drive location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596644#M171819</link>
      <description>&lt;P&gt;What version of SAS are you running?&amp;nbsp; &amp;nbsp;That error message looks funny.&amp;nbsp; As if you used:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;set 'C:\cert\input\input04.sas7bdat'n;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Instead of&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;set 'C:\cert\input\input04.sas7bdat';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Are you sure those a normal ASCII single quotes?&amp;nbsp; Try typing them again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also is SAS running on the same machine as where that file is stored?&amp;nbsp; That junk at the bottom of your log makes it look like you are using Enterprise Guide to run your SAS code.&amp;nbsp; So depending on what server you connected it to SAS might be running on a different machine than where Enterprise Guide is running.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 19:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596644#M171819</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-15T19:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a SAS7BDAT file from c drive location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596652#M171822</link>
      <description>Are you using SAS EG?&lt;BR /&gt;Is EG a server installation or installed on your local machine and working off data in your machine.</description>
      <pubDate>Tue, 15 Oct 2019 20:06:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596652#M171822</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-15T20:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a SAS7BDAT file from c drive location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596862#M171916</link>
      <description>Yes, SAS EG and it is server installed.</description>
      <pubDate>Wed, 16 Oct 2019 13:04:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596862#M171916</guid>
      <dc:creator>tobyfarms</dc:creator>
      <dc:date>2019-10-16T13:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a SAS7BDAT file from c drive location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596863#M171917</link>
      <description>&lt;P&gt;Yes I am using SAS EG and it is server connected.&amp;nbsp; So could that cause the issue with trying to connect to data located on my machine?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 13:05:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596863#M171917</guid>
      <dc:creator>tobyfarms</dc:creator>
      <dc:date>2019-10-16T13:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Importing a SAS7BDAT file from c drive location</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596926#M171949</link>
      <description>Yes, you can still upload the file you just need to do it in a different manner, primarily using Point and Click. There should be a Copy Files task that allows you to upload the file to the server and then you can use it.</description>
      <pubDate>Wed, 16 Oct 2019 14:51:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Importing-a-SAS7BDAT-file-from-c-drive-location/m-p/596926#M171949</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-16T14:51:21Z</dc:date>
    </item>
  </channel>
</rss>

