<?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 Why do I keep getting this error message when I try to import my data? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537822#M147976</link>
    <description>&lt;P&gt;I used this command which I always do to import my data:&lt;/P&gt;&lt;P&gt;PROC IMPORT OUT = WORK.one;&lt;BR /&gt;DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv";&lt;BR /&gt;DBMS=csv REPLACE;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm getting this error message:&amp;nbsp;PROC IMPORT OUT = WORK.one;&lt;BR /&gt;ERROR: FILE= or TABLE= is required and must be specified.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I have specified my file so I'm not sure why I'm getting this error message. I successfully created a libname with my pathway so I know my pathway is fine.&lt;/P&gt;</description>
    <pubDate>Fri, 22 Feb 2019 19:19:15 GMT</pubDate>
    <dc:creator>khalillx</dc:creator>
    <dc:date>2019-02-22T19:19:15Z</dc:date>
    <item>
      <title>Why do I keep getting this error message when I try to import my data?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537822#M147976</link>
      <description>&lt;P&gt;I used this command which I always do to import my data:&lt;/P&gt;&lt;P&gt;PROC IMPORT OUT = WORK.one;&lt;BR /&gt;DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv";&lt;BR /&gt;DBMS=csv REPLACE;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm getting this error message:&amp;nbsp;PROC IMPORT OUT = WORK.one;&lt;BR /&gt;ERROR: FILE= or TABLE= is required and must be specified.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I have specified my file so I'm not sure why I'm getting this error message. I successfully created a libname with my pathway so I know my pathway is fine.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 19:19:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537822#M147976</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T19:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I keep getting this error message when I try to import my data?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537824#M147977</link>
      <description>&lt;P&gt;try this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC IMPORT DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv" OUT = WORK.one;
DBMS=csv REPLACE;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 19:28:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537824#M147977</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-02-22T19:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I keep getting this error message when I try to import my data?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537825#M147978</link>
      <description>&lt;P&gt;it didn't work&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 19:31:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537825#M147978</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T19:31:28Z</dc:date>
    </item>
    <item>
      <title>Why do  I keep getting this error message when I try to import my data? Please help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537828#M147982</link>
      <description>&lt;P&gt;libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC IMPORT OUT= SESSION1;&lt;BR /&gt;DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv";&lt;BR /&gt;DBMS=csv REPLACE;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: FILE= or TABLE= is required and must be specified.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does this mean? I've used this command so many times and never had this issue. Please help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 19:35:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537828#M147982</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T19:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I keep getting this error message when I try to import my data?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537832#M147981</link>
      <description>&lt;P&gt;WHAT did not work? Please post the log; use the {i} button for this.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 19:41:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537832#M147981</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-22T19:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I keep getting this error message when I try to import my data?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537834#M147983</link>
      <description>&lt;P&gt;You have too many semicolons:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC IMPORT
  OUT=WORK.one
  DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"
  DBMS=csv
  REPLACE
;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 19:46:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537834#M147983</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-22T19:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Why do  I keep getting this error message when I try to import my data? Please help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537835#M147984</link>
      <description>&lt;P&gt;writing the code in the expected order would help&lt;/P&gt;
&lt;P&gt;please look at this link&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000314361.htm" target="_blank" rel="noopener"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000314361.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC IMPORT 
DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"
OUT= SESSION1
DBMS=csv 
REPLACE;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 19:48:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537835#M147984</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-02-22T19:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why do  I keep getting this error message when I try to import my data? Please help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537836#M147985</link>
      <description>&lt;P&gt;I merged the two identical questions into one thread.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 19:47:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537836#M147985</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-22T19:47:48Z</dc:date>
    </item>
  </channel>
</rss>

