BookmarkSubscribeRSS Feed
pb7
Calcite | Level 5 pb7
Calcite | Level 5

Hi, 

 

 

I'm trying to schedule a code that also feeds in an import from a local drive. The Schedule system I use is SAS Management Console 9.4. Is it possible to schedule a code with an import without my machine being left on? 

 

Thanks, 

2 REPLIES 2
Kurt_Bremser
Super User

Data for batch jobs scheduled server-side must be available to the SAS server.

Ideally, your data is stored on a shared network resource that is accessible both from your PC and the SAS server.

To do that in your environment, get in touch with your server/network/SAS admins.

Otherwise, you need to make sure that the file is copied to the SAS server in time.

A file import task in Enterprise Guide cannot be scheduled server-side; the code seen in this node is only reading the data after EG copied it to the server. The batch job can't do this copy, especially not when your PC is down.

pb7
Calcite | Level 5 pb7
Calcite | Level 5
Thank you