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


Please Help Members By Posting Answers For Below Questions

Explain the use of proc gplot? : sas-grid-administration

783


Explain substr function?

814


Are you involved in writing the inferential analysis plan? Tables specfications?

2345


what is function of retain statment

1809


What is the order of application for output data set options, input data set options and SAS statements?

1323


How does the internal authentication work in sas? : sas-grid-administration

849


how to remove duplicates using proc sql?

889


For clinical entire study how many tables will create approx?

1746


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?

1453


Name and describe few sas character functions that are used for data cleaning in brief.

903


how does sas handle missing values in assignment statements? : Sas programming

805


What is Linear Regression?

911


What do the put and input function do?

808


how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?

2542


Mention some common errors that are usually committed in sas programming.

835