BookmarkSubscribeRSS Feed
thienvudl
Calcite | Level 5
Hello everyone,
when importing my data, this errors appears. Could anyone help please ?
Thank you
 
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
61
62 PROC CORRESP DATA=WORK.IMPORT DIMENS=3 OUT=ACMburt MCA;
ERROR: File WORK.IMPORT.DATA does not exist.
63 TABLES GENRE AGE ANCIENNETE;
64 RUN;
 
NOTE: The SAS System stopped processing this step because of errors.
ARNING: The data set WORK.ACMBURT may be incomplete. When this step was stopped there were 0 observations and 0 variables.
WARNING: Data set WORK.ACMBURT was not replaced because this step was stopped.
NOTE: PROCEDURE CORRESP used (Total process time):
real time 0.06 seconds
cpu time 0.04 seconds
 
65
66 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
79 

 

4 REPLIES 4
Kurt_Bremser
Super User

Well, the message says it all. You are trying to use a dataset that does not exist. If you are importing the data from somewhere, look at the log of that step.

If you imported that data in another session, you need to repeat that process. WORK is transient and deleted with all its contents when a SAS session closes. To preserve data across sessions, use a library other than WORK.

thienvudl
Calcite | Level 5
Hello everyone,
when importing my data, this errors appears. Could anyone help please ?
Thank you
 
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
61
62 PROC CORRESP DATA=WORK.IMPORT DIMENS=3 OUT=ACMburt MCA;
ERROR: File WORK.IMPORT.DATA does not exist.
63 TABLES GENRE AGE ANCIENNETE;
64 RUN;
 
NOTE: The SAS System stopped processing this step because of errors.
ARNING: The data set WORK.ACMBURT may be incomplete. When this step was stopped there were 0 observations and 0 variables.
WARNING: Data set WORK.ACMBURT was not replaced because this step was stopped.
NOTE: PROCEDURE CORRESP used (Total process time):
real time 0.06 seconds
cpu time 0.04 seconds
 
65
66 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
79 

 

lethcons
Obsidian | Level 7

You specified DATA=WORK.IMPORT on the PROC CORRESP statement. The DATA= option specifies the input data set and so obviously it must already exist. The error message indicates this dataset does not exist. Perhaps you had an error in an earlier step that prevented this dataset being created, thus generating this error?

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 9884 views
  • 0 likes
  • 3 in conversation