BookmarkSubscribeRSS Feed
sazal131
Calcite | Level 5
Hi
I am new to SAS. Please can you send me the code to convert a CSV dataset to SAS data set and save it in permanent library as it keep saving in temporary library. I want to convert the file directly to a permanent library.
1 REPLY 1
Reeza
Super User

https://video.sas.com/detail/video/4573016758001/creating-a-sas-table-from-a-csv-file?autoStart=true...

 

Create a library using the libname statement and then use it in the PROC IMPORT or data step.

 

libname saveData '/folders/myfolders/';

proc import out=saveData.mFile datafile='/folders/myfolders/demo.csv' dbms=csv replace; 
guessingrows=10000;
 run;

@sazal131 wrote:
Hi
I am new to SAS. Please can you send me the code to convert a CSV dataset to SAS data set and save it in permanent library as it keep saving in temporary library. I want to convert the file directly to a permanent library.

 

Catch up on SAS Innovate 2026

Dive into keynotes, announcements and breakthroughs on demand.

Explore Now →
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1607 views
  • 0 likes
  • 2 in conversation