BookmarkSubscribeRSS Feed
rodrichiez
Quartz | Level 8

Hello guys,

 

I need some help. I have a sas dataset on my desktop, it has more than 31 millions of rows and a 8.66 gb size. I successfully opened it inside a blank sas guide project, but I need to save the all table into a library, I am using export table but it takes too long. 

 

Any idea? Please help.

3 REPLIES 3
Reeza
Super User
PROC COPY?

proc copy in=work out=myLibrary;
select dataSetName;
run;

It will take time regardless depending on your network connection.
SASKiwi
PROC Star

Use the Upload Data Files to Server Task in EG. This will copy your dataset up to the SAS server where you can store it in a SAS library.

Zeeshansaiyad
Calcite | Level 5
PROC IMPORT Statement. The IMPORT procedure reads external data and writes the data to a SAS data set. ... A fileref is a SAS name that is associated with the physical location of the output file.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1500 views
  • 3 likes
  • 4 in conversation