What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / sankar
using proc import procedure
synatax :for text file
proc import datafile='path' out=datasetname
dbms=dlm;
delimiter='specific delimiter';
run;
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is your favorite all time computer book? Why?
Enlist the syntax rules followed in sas statements.
What is slibref?
Difference between SAS STATA & SPSS?
explain about data integrator metadata reports? : Sas-di
Differentiate between sas functions and sas procedures.
Describe the function and utility of the most difficult SAS macro that you have written?
what can you learn from the sas log when debugging? : Sas programming
What are the implications?
What sas features do you use to check errors and data validation?
What is the difference between using drop = data set option in data statement and set statement?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
What are the data types in sas?
what techniques and/or procs do you use for tables? : Sas programming
How we can create SAS USER DEFINED CODE?