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.

 

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register 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
  • 1263 views
  • 0 likes
  • 2 in conversation