Hello, I am working through the SAS Programming 1: Essentials Training and I am in lesson 2: Accessing Data and I am trying to complete the first activity. Write a PROC CONTENTS step to generate a report of the storm_summary.sas7bdat table. SAS Studio: Specify the path to your EPG1V2/data folder and the full name of the table. Enterprise Guide: Specify &path and the full name of the table. I checked the answer proc contents data="FILEPATH/storm_summary.sas7bdat";
run; This is the code I inputted PROC CONTENTS DATA="C:\Users\admin\SASUniversityEdition\myfolders\EPG1V2\data\storm_summary.sas7bdat"; run; And this is what I am getting back in the Log 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 72 73 PROC CONTENTS DATA="C:\Users\admin\SASUniversityEdition\myfolders\EPG1V2\data\storm_summary.sas7bdat"; ERROR: The physical file name "C:\Users\admin\SASUniversityEdition\myfolders\EPG1V2\data\storm_summary.sas7bdat" is too long. 74 run; I have doubled checked and this is the file path and I cannot figure out what the problem is. Any Help would be greatly appreciated.
... View more