BookmarkSubscribeRSS Feed
SweetPotato
Calcite | Level 5

Hi, I'm importing 300GB csv file by using SAS with sas studio.

 

I import csv file successfully. But after importing csv file, my C drive capacity has increase a lot.

Does SAS save some temporary file, during importing? Or is there anything something wrong..?

 

I'm SAS newbie, please help me....

3 REPLIES 3
Patrick
Opal | Level 21

SAS will store files created during a SAS session in library WORK if no other library defined explicitly (=two level table name). 

SAS will also create temporary files during processing like a Proc Sort in the utilloc destination. 

 

WORK gets deleted when you terminate your SAS Session (like closing your Studio session).

Files in UTILLOC get deleted once the creating process doesn't need them anymore.

 

Where WORK and UTILLOC point to depends on your SAS installation. 

 

Execute below. The SAS Log will then tell you where such files get stored physically.

proc options option=WORK;
run;
proc options option=UTILLOC;
run;

 

SweetPotato
Calcite | Level 5
Thank you for your reply.
Thanks for your hint, I found there was very big logs in C drive '\AppData\Roaming\SAS\EnterpriseGuide\EGTEMP'.
After deleting files in this folder, I get about 200GB capacity.
Yes, I think I solved the problem.
Thank you.
Kurt_Bremser
Super User

Since SAS Studio is a web application which usually runs on a remote server, no additional space on your Windows desktop should be used.

Enterprise Guide is different, as it is a Windows application which stores data on your desktop.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 3 replies
  • 393 views
  • 1 like
  • 3 in conversation