if reading an external file to produce an external file, what
is the shortcut to write that record without coding every
single variable on the record
Answer Posted / pratik
proc import
datafile='D:\Dropbox\SAS\testfile1.txt'
out=data_imported dbms=dlm replace;
getnames=NO;
run;
proc export
data=data_imported
outfile='D:\Dropbox\SAS\testfile2.txt' replace;
run;
Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Explain the use of proc gplot? : sas-grid-administration
Explain substr function?
Are you involved in writing the inferential analysis plan? Tables specfications?
what is function of retain statment
What is the order of application for output data set options, input data set options and SAS statements?
How does the internal authentication work in sas? : sas-grid-administration
how to remove duplicates using proc sql?
For clinical entire study how many tables will create approx?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
Name and describe few sas character functions that are used for data cleaning in brief.
how does sas handle missing values in assignment statements? : Sas programming
What is Linear Regression?
What do the put and input function do?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
Mention some common errors that are usually committed in sas programming.