BookmarkSubscribeRSS Feed
RafaelZ
Calcite | Level 5

Dear Friends

I am trying to use several methods to import an xls file using sas code in SAS Enterprise Guide

And each yields errors .

The source file is located on a local file system.

I can import the file successfully using the SAS enterprise guide import task..

Your help is appreciated.

First Method : Proc Import

proc import

     datafile= 'u:\testfile.xls'

     dbms=excel

   

     out=work.out

     replace;

run;

The error I get:

ERROR: Unable to open file u:\testfile.xls. It does not  exist or it is already opened exclusively by another user, or you need

       permission to view its data.

Method 2 Using LibName Statement

libname myxls  "u:\TestFile.xls";

The error I get

ERROR: Connect: Class not registered

ERROR: Error in the LIBNAME statement.

2 REPLIES 2
LinusH
Tourmaline | Level 20

As you can see from many other questions in htis forum, it's a common misunderstanding that your local file system is available for your SAS code. It's available in the import tasks. SAS code is executed on your SAS Workspace server, so the given file path needs to be available from there.

Data never sleeps
RafaelZ
Calcite | Level 5

Thank you very much - i didn't know that.

Rafael

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 2 replies
  • 1377 views
  • 3 likes
  • 2 in conversation