<?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: Getting error message that file WORK.one.data does not exist in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537884#M148010</link>
    <description>Ok, same answer anyways, please post your full log.</description>
    <pubDate>Fri, 22 Feb 2019 21:38:57 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-02-22T21:38:57Z</dc:date>
    <item>
      <title>Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537880#M148007</link>
      <description>&lt;P&gt;ODS LISTING;&lt;BR /&gt;libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&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;proc print data=one;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran this before and it was successful now when I try to do new things I'm getting this error message:&amp;nbsp;ERROR: File WORK.ONE.DATA does not exist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think this is my full log:&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv";&lt;BR /&gt;48 DBMS=csv REPLACE;&lt;BR /&gt;49 RUN;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;50 PROC IMPORT OUT= WORK.one;&lt;BR /&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.00 seconds&lt;/P&gt;&lt;P&gt;51 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv";&lt;BR /&gt;52 DBMS=csv REPLACE;&lt;BR /&gt;53 RUN;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;54 PROC IMPORT OUT= WORK.one&lt;BR /&gt;55 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;56 DBMS=csv REPLACE;&lt;BR /&gt;57 RUN;&lt;/P&gt;&lt;P&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.10 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;58 PROC IMPORT OUT= WORK.one&lt;BR /&gt;59 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;60 DBMS=csv REPLACE;&lt;BR /&gt;61 RUN;&lt;/P&gt;&lt;P&gt;62 /**********************************************************************&lt;BR /&gt;63 * PRODUCT: SAS&lt;BR /&gt;64 * VERSION: 9.4&lt;BR /&gt;65 * CREATOR: External File Interface&lt;BR /&gt;66 * DATE: 22FEB19&lt;BR /&gt;67 * DESC: Generated SAS Datastep Code&lt;BR /&gt;68 * TEMPLATE SOURCE: (None Specified.)&lt;BR /&gt;69 ***********************************************************************/&lt;BR /&gt;70 data WORK.ONE ;&lt;BR /&gt;71 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */&lt;BR /&gt;72 infile 'C:\Users\laura\OneDrive\Documents\econ485\project1data.csv' delimiter = ',' MISSOVER DSD lrecl=32767&lt;BR /&gt;72 ! firstobs=2 ;&lt;BR /&gt;73 informat observation_date yymmdd10. ;&lt;BR /&gt;74 informat Population best32. ;&lt;BR /&gt;75 informat Income best32. ;&lt;BR /&gt;76 informat One_year best32. ;&lt;BR /&gt;77 informat Ten_year best32. ;&lt;BR /&gt;78 informat Unemployment best32. ;&lt;BR /&gt;79 informat PCE best32. ;&lt;BR /&gt;80 informat PCE_lag best32. ;&lt;BR /&gt;81 informat Consumption best32. ;&lt;BR /&gt;82 informat Price best32. ;&lt;BR /&gt;83 format observation_date yymmdd10. ;&lt;BR /&gt;84 format Population best12. ;&lt;BR /&gt;85 format Income best12. ;&lt;BR /&gt;86 format One_year best12. ;&lt;BR /&gt;87 format Ten_year best12. ;&lt;BR /&gt;88 format Unemployment best12. ;&lt;BR /&gt;89 format PCE best12. ;&lt;BR /&gt;90 format PCE_lag best12. ;&lt;BR /&gt;91 format Consumption best12. ;&lt;BR /&gt;92 format Price best12. ;&lt;BR /&gt;93 input&lt;BR /&gt;94 observation_date&lt;BR /&gt;95 Population&lt;BR /&gt;96 Income&lt;BR /&gt;97 One_year&lt;BR /&gt;98 Ten_year&lt;BR /&gt;99 Unemployment&lt;BR /&gt;100 PCE&lt;BR /&gt;101 PCE_lag&lt;BR /&gt;102 Consumption&lt;BR /&gt;103 Price&lt;BR /&gt;104 ;&lt;BR /&gt;105 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */&lt;BR /&gt;106 run;&lt;/P&gt;&lt;P&gt;NOTE: The infile 'C:\Users\laura\OneDrive\Documents\econ485\project1data.csv' is:&lt;BR /&gt;Filename=C:\Users\laura\OneDrive\Documents\econ485\project1data.csv,&lt;BR /&gt;RECFM=V,LRECL=32767,File Size (bytes)=32584,&lt;BR /&gt;Last Modified=14:11:00 22 ôáøåàø 2019,&lt;BR /&gt;Create Time=14:11:00 22 ôáøåàø 2019&lt;/P&gt;&lt;P&gt;NOTE: 527 records were read from the infile 'C:\Users\laura\OneDrive\Documents\econ485\project1data.csv'.&lt;BR /&gt;The minimum record length was 57.&lt;BR /&gt;The maximum record length was 62.&lt;BR /&gt;NOTE: The data set WORK.ONE has 527 observations and 10 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 1.58 seconds&lt;BR /&gt;cpu time 0.20 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;527 rows created in WORK.ONE from C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: WORK.ONE data set was successfully created.&lt;BR /&gt;NOTE: The data set WORK.ONE has 527 observations and 10 variables.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 3.86 seconds&lt;BR /&gt;cpu time 0.42 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;107 proc print data=one;&lt;BR /&gt;NOTE: Writing HTML Body file: sashtml.htm&lt;BR /&gt;108 run;&lt;/P&gt;&lt;P&gt;NOTE: There were 527 observations read from the data set WORK.ONE.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 3.79 seconds&lt;BR /&gt;cpu time 0.87 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;109 ODS LISTING;&lt;BR /&gt;110 libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\laura\OneDrive\Documents\econ485&lt;BR /&gt;111&lt;BR /&gt;112 PROC IMPORT OUT= WORK.one&lt;BR /&gt;113 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;114 DBMS=csv REPLACE;&lt;BR /&gt;115 RUN;&lt;/P&gt;&lt;P&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.12 seconds&lt;BR /&gt;cpu time 0.09 seconds&lt;/P&gt;&lt;P&gt;116&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;117 proc print data=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;118 run;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;119&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;120 proc contents DATA=WORK.one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;121 run;&lt;/P&gt;&lt;P&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;122 proc contents DATA=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;123 run;&lt;/P&gt;&lt;P&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.09 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;124 proc contents data=WORK.one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;125 run;&lt;/P&gt;&lt;P&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;126 proc contents data=project1;&lt;BR /&gt;ERROR: File WORK.PROJECT1.DATA does not exist.&lt;BR /&gt;127 run;&lt;/P&gt;&lt;P&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;128 PCE0 = PCE/6.029166667;&lt;BR /&gt;----&lt;BR /&gt;180&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;129 RPCE = Price/PCE0;&lt;BR /&gt;----&lt;BR /&gt;180&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;130 run;&lt;/P&gt;&lt;P&gt;131 PCE0 = PCE/6.029166667;&lt;BR /&gt;----&lt;BR /&gt;180&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;132 RPCE = Price/PCE0;&lt;BR /&gt;----&lt;BR /&gt;180&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;133 run;&lt;/P&gt;&lt;P&gt;134&lt;BR /&gt;135 proc contents;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;136 run;&lt;/P&gt;&lt;P&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;137 data two;&lt;BR /&gt;138 set one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;139&lt;BR /&gt;140 PCE0 = pce/6.029166667;&lt;BR /&gt;141 RGAS_PCE0 = Price/PCE0;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.TWO may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 39.68 seconds&lt;BR /&gt;cpu time 2.26 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;142 proc print data=work.one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;143 run;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;144 ODS LISTING;&lt;BR /&gt;145 libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\laura\OneDrive\Documents\econ485&lt;BR /&gt;146&lt;BR /&gt;147 PROC IMPORT OUT= WORK.one&lt;BR /&gt;148 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;149 DBMS=csv REPLACE;&lt;BR /&gt;150 RUN;&lt;/P&gt;&lt;P&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.09 seconds&lt;BR /&gt;cpu time 0.09 seconds&lt;/P&gt;&lt;P&gt;151&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;152 proc print data=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;153 run;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;154 ODS LISTING;&lt;BR /&gt;155 libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\laura\OneDrive\Documents\econ485&lt;BR /&gt;156&lt;BR /&gt;157 PROC IMPORT OUT= WORK.one&lt;BR /&gt;158 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;159 DBMS=csv REPLACE;&lt;BR /&gt;160 RUN;&lt;/P&gt;&lt;P&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.07 seconds&lt;BR /&gt;cpu time 0.06 seconds&lt;/P&gt;&lt;P&gt;161&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;162 proc print data=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;163 run;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;164 ODS LISTING;&lt;BR /&gt;165 libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\laura\OneDrive\Documents\econ485&lt;BR /&gt;166&lt;BR /&gt;167 PROC IMPORT OUT= WORK.one&lt;BR /&gt;168 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;169 DBMS=csv REPLACE;&lt;BR /&gt;170 RUN;&lt;/P&gt;&lt;P&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.07 seconds&lt;BR /&gt;cpu time 0.06 seconds&lt;/P&gt;&lt;P&gt;171&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;172 proc print data=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;173 run;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 21:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537880#M148007</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T21:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537881#M148008</link>
      <description>&lt;P&gt;Starting a new question isn't helpful, the answers will be the same. Post the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257791"&gt;@khalillx&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;ODS LISTING;&lt;BR /&gt;libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&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;proc print data=one;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ran this before and it was successful now when I try to do new things I'm getting this error message:&amp;nbsp;ERROR: File WORK.ONE.DATA does not exist.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is going on? I can't do anything else for my assignment now and I have no idea what to do. Please help.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 21:35:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537881#M148008</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-22T21:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537882#M148009</link>
      <description>&lt;P&gt;This is a different question about an error I just got a second ago. What are you talking about?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 21:37:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537882#M148009</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T21:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537884#M148010</link>
      <description>Ok, same answer anyways, please post your full log.</description>
      <pubDate>Fri, 22 Feb 2019 21:38:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537884#M148010</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-22T21:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537885#M148011</link>
      <description>Like this?&lt;BR /&gt;DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv";&lt;BR /&gt;48 DBMS=csv REPLACE;&lt;BR /&gt;49 RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;50 PROC IMPORT OUT= WORK.one;&lt;BR /&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.00 seconds&lt;BR /&gt;&lt;BR /&gt;51 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv";&lt;BR /&gt;52 DBMS=csv REPLACE;&lt;BR /&gt;53 RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;54 PROC IMPORT OUT= WORK.one&lt;BR /&gt;55 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;56 DBMS=csv REPLACE;&lt;BR /&gt;57 RUN;&lt;BR /&gt;&lt;BR /&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.10 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;58 PROC IMPORT OUT= WORK.one&lt;BR /&gt;59 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;60 DBMS=csv REPLACE;&lt;BR /&gt;61 RUN;&lt;BR /&gt;&lt;BR /&gt;62 /**********************************************************************&lt;BR /&gt;63 * PRODUCT: SAS&lt;BR /&gt;64 * VERSION: 9.4&lt;BR /&gt;65 * CREATOR: External File Interface&lt;BR /&gt;66 * DATE: 22FEB19&lt;BR /&gt;67 * DESC: Generated SAS Datastep Code&lt;BR /&gt;68 * TEMPLATE SOURCE: (None Specified.)&lt;BR /&gt;69 ***********************************************************************/&lt;BR /&gt;70 data WORK.ONE ;&lt;BR /&gt;71 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */&lt;BR /&gt;72 infile 'C:\Users\laura\OneDrive\Documents\econ485\project1data.csv' delimiter = ',' MISSOVER DSD lrecl=32767&lt;BR /&gt;72 ! firstobs=2 ;&lt;BR /&gt;73 informat observation_date yymmdd10. ;&lt;BR /&gt;74 informat Population best32. ;&lt;BR /&gt;75 informat Income best32. ;&lt;BR /&gt;76 informat One_year best32. ;&lt;BR /&gt;77 informat Ten_year best32. ;&lt;BR /&gt;78 informat Unemployment best32. ;&lt;BR /&gt;79 informat PCE best32. ;&lt;BR /&gt;80 informat PCE_lag best32. ;&lt;BR /&gt;81 informat Consumption best32. ;&lt;BR /&gt;82 informat Price best32. ;&lt;BR /&gt;83 format observation_date yymmdd10. ;&lt;BR /&gt;84 format Population best12. ;&lt;BR /&gt;85 format Income best12. ;&lt;BR /&gt;86 format One_year best12. ;&lt;BR /&gt;87 format Ten_year best12. ;&lt;BR /&gt;88 format Unemployment best12. ;&lt;BR /&gt;89 format PCE best12. ;&lt;BR /&gt;90 format PCE_lag best12. ;&lt;BR /&gt;91 format Consumption best12. ;&lt;BR /&gt;92 format Price best12. ;&lt;BR /&gt;93 input&lt;BR /&gt;94 observation_date&lt;BR /&gt;95 Population&lt;BR /&gt;96 Income&lt;BR /&gt;97 One_year&lt;BR /&gt;98 Ten_year&lt;BR /&gt;99 Unemployment&lt;BR /&gt;100 PCE&lt;BR /&gt;101 PCE_lag&lt;BR /&gt;102 Consumption&lt;BR /&gt;103 Price&lt;BR /&gt;104 ;&lt;BR /&gt;105 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */&lt;BR /&gt;106 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The infile 'C:\Users\laura\OneDrive\Documents\econ485\project1data.csv' is:&lt;BR /&gt;Filename=C:\Users\laura\OneDrive\Documents\econ485\project1data.csv,&lt;BR /&gt;RECFM=V,LRECL=32767,File Size (bytes)=32584,&lt;BR /&gt;Last Modified=14:11:00 22 ôáøåàø 2019,&lt;BR /&gt;Create Time=14:11:00 22 ôáøåàø 2019&lt;BR /&gt;&lt;BR /&gt;NOTE: 527 records were read from the infile 'C:\Users\laura\OneDrive\Documents\econ485\project1data.csv'.&lt;BR /&gt;The minimum record length was 57.&lt;BR /&gt;The maximum record length was 62.&lt;BR /&gt;NOTE: The data set WORK.ONE has 527 observations and 10 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 1.58 seconds&lt;BR /&gt;cpu time 0.20 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;527 rows created in WORK.ONE from C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NOTE: WORK.ONE data set was successfully created.&lt;BR /&gt;NOTE: The data set WORK.ONE has 527 observations and 10 variables.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 3.86 seconds&lt;BR /&gt;cpu time 0.42 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;107 proc print data=one;&lt;BR /&gt;NOTE: Writing HTML Body file: sashtml.htm&lt;BR /&gt;108 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 527 observations read from the data set WORK.ONE.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 3.79 seconds&lt;BR /&gt;cpu time 0.87 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;109 ODS LISTING;&lt;BR /&gt;110 libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\laura\OneDrive\Documents\econ485&lt;BR /&gt;111&lt;BR /&gt;112 PROC IMPORT OUT= WORK.one&lt;BR /&gt;113 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;114 DBMS=csv REPLACE;&lt;BR /&gt;115 RUN;&lt;BR /&gt;&lt;BR /&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.12 seconds&lt;BR /&gt;cpu time 0.09 seconds&lt;BR /&gt;&lt;BR /&gt;116&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;117 proc print data=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;118 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;119&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;120 proc contents DATA=WORK.one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;121 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;&lt;BR /&gt;122 proc contents DATA=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;123 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.09 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;&lt;BR /&gt;124 proc contents data=WORK.one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;125 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;&lt;BR /&gt;126 proc contents data=project1;&lt;BR /&gt;ERROR: File WORK.PROJECT1.DATA does not exist.&lt;BR /&gt;127 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;&lt;BR /&gt;128 PCE0 = PCE/6.029166667;&lt;BR /&gt;----&lt;BR /&gt;180&lt;BR /&gt;&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;&lt;BR /&gt;129 RPCE = Price/PCE0;&lt;BR /&gt;----&lt;BR /&gt;180&lt;BR /&gt;&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;&lt;BR /&gt;130 run;&lt;BR /&gt;&lt;BR /&gt;131 PCE0 = PCE/6.029166667;&lt;BR /&gt;----&lt;BR /&gt;180&lt;BR /&gt;&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;&lt;BR /&gt;132 RPCE = Price/PCE0;&lt;BR /&gt;----&lt;BR /&gt;180&lt;BR /&gt;&lt;BR /&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;&lt;BR /&gt;133 run;&lt;BR /&gt;&lt;BR /&gt;134&lt;BR /&gt;135 proc contents;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;136 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;&lt;BR /&gt;137 data two;&lt;BR /&gt;138 set one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;139&lt;BR /&gt;140 PCE0 = pce/6.029166667;&lt;BR /&gt;141 RGAS_PCE0 = Price/PCE0;&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.TWO may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 39.68 seconds&lt;BR /&gt;cpu time 2.26 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;142 proc print data=work.one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;143 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;144 ODS LISTING;&lt;BR /&gt;145 libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\laura\OneDrive\Documents\econ485&lt;BR /&gt;146&lt;BR /&gt;147 PROC IMPORT OUT= WORK.one&lt;BR /&gt;148 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;149 DBMS=csv REPLACE;&lt;BR /&gt;150 RUN;&lt;BR /&gt;&lt;BR /&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.09 seconds&lt;BR /&gt;cpu time 0.09 seconds&lt;BR /&gt;&lt;BR /&gt;151&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;152 proc print data=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;153 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;154 ODS LISTING;&lt;BR /&gt;155 libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\laura\OneDrive\Documents\econ485&lt;BR /&gt;156&lt;BR /&gt;157 PROC IMPORT OUT= WORK.one&lt;BR /&gt;158 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;159 DBMS=csv REPLACE;&lt;BR /&gt;160 RUN;&lt;BR /&gt;&lt;BR /&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.07 seconds&lt;BR /&gt;cpu time 0.06 seconds&lt;BR /&gt;&lt;BR /&gt;161&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;162 proc print data=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;163 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;164 ODS LISTING;&lt;BR /&gt;165 libname session1 "C:\Users\laura\OneDrive\Documents\econ485";&lt;BR /&gt;NOTE: Libref SESSION1 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\laura\OneDrive\Documents\econ485&lt;BR /&gt;166&lt;BR /&gt;167 PROC IMPORT OUT= WORK.one&lt;BR /&gt;168 DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"&lt;BR /&gt;169 DBMS=csv REPLACE;&lt;BR /&gt;170 RUN;&lt;BR /&gt;&lt;BR /&gt;ERROR: File is in use, C:\Users\laura\OneDrive\Documents\econ485\project1data.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&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.07 seconds&lt;BR /&gt;cpu time 0.06 seconds&lt;BR /&gt;&lt;BR /&gt;171&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;172 proc print data=one;&lt;BR /&gt;ERROR: File WORK.ONE.DATA does not exist.&lt;BR /&gt;173 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Feb 2019 21:39:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537885#M148011</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T21:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537887#M148012</link>
      <description>No. I don't need your full log history. I need just the log from the exact code you posted. But the error is there several times which is clear - the FIle is in use. You likely have it open in Excel or another application so SAS can't access it. &lt;BR /&gt;&lt;BR /&gt;And once you fix this, your proc contents will work too, ergo why this is the same as your other question.</description>
      <pubDate>Fri, 22 Feb 2019 21:42:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537887#M148012</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-22T21:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537888#M148013</link>
      <description>That's not it. I already tried that. The file is no longer in use anywhere and I still get the same error message.</description>
      <pubDate>Fri, 22 Feb 2019 21:44:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537888#M148013</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T21:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537889#M148014</link>
      <description>&lt;P&gt;this question and error I have already answer 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;then look at your code is it in the order that it needs to be?&amp;nbsp; No.&lt;/P&gt;
&lt;P&gt;take out some of the ; that you have which are misplaced.&lt;/P&gt;
&lt;P&gt;to get past this error look at the example to the original question here&lt;/P&gt;
&lt;P&gt;&lt;A href="http://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537836#M147985" target="_blank"&gt;http://communities.sas.com/t5/SAS-Programming/Why-do-I-keep-getting-this-error-message-when-I-try-to-import-my/m-p/537836#M147985&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;
&lt;P&gt;&amp;nbsp; also please select and mark the solutions to your questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 21:55:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537889#M148014</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-02-22T21:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537891#M148015</link>
      <description>&lt;P&gt;Your log indicates you haven't fixed removing the semicolon as already suggested:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DATAFILE= "C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"; &amp;lt;== *** remove this ***
48 DBMS=csv REPLACE;
49 RUN;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 21:51:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537891#M148015</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-02-22T21:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537892#M148016</link>
      <description>I removed it awhile ago.</description>
      <pubDate>Fri, 22 Feb 2019 21:52:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537892#M148016</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T21:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537895#M148017</link>
      <description>&lt;P&gt;1. Restart your computer - if an application crashed it may have left a lock on the file that you need to 'unlock'.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Verify your CSV is correct and in the location expected&lt;/P&gt;
&lt;P&gt;3. Try the code below. If it does not work, please post the log from the code alone:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC IMPORT OUT= Project1
DATAFILE="C:\Users\laura\OneDrive\Documents\econ485\project1data.csv"
DBMS=csv 
REPLACE;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This also looks like it's trying to read from a cloud drive (OneDrive), so you may need an internet connection or it's possible all the read attempts have flagged some issues via OneDrive so there could be a security issue. I think this is unlikely, but it's a possibility. I've also seen cases where OneDrive changes the name slightly, so be very careful when checking the file name.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 22:11:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537895#M148017</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-22T22:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537896#M148018</link>
      <description>Yes I actually restarted SAS and it works now. But now I'm getting an error for a different code I will be asking about lol.</description>
      <pubDate>Fri, 22 Feb 2019 22:13:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537896#M148018</guid>
      <dc:creator>khalillx</dc:creator>
      <dc:date>2019-02-22T22:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537944#M148040</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257791"&gt;@khalillx&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I removed it awhile ago.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Your log clearly says you didn't.&lt;/P&gt;
&lt;P&gt;Quote:&lt;/P&gt;
&lt;PRE&gt;50 PROC IMPORT OUT= WORK.one;
ERROR: FILE= or TABLE= is required and must be specified.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE IMPORT used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds&lt;/PRE&gt;</description>
      <pubDate>Sat, 23 Feb 2019 07:46:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/537944#M148040</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-02-23T07:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error message that file WORK.one.data does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/538034#M148077</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257791"&gt;@khalillx&lt;/a&gt;&amp;nbsp;please mark this question as solved, by either marking the appropriate solution or by posting what the issue was and marking that as the solution.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Feb 2019 23:48:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-error-message-that-file-WORK-one-data-does-not-exist/m-p/538034#M148077</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-23T23:48:11Z</dc:date>
    </item>
  </channel>
</rss>

