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

What do the PUT and INPUT functions do?

791


what is null hypothesis? why do you consider that?

2429


what is the effect of the options statement errors=1? : Sas programming

600


what is the basic structure sas administrator? : Sas-administrator

577


how many types prompting framework can be broken down to? : Sas-bi

639






what is business intelligence? : Sas-bi

591


How can you create a macro variable with in data step? : sas-macro

580


Which function is used to count the number of intervals between two sas dates?

579


What’s the difference between var b1 – b3 and var b1 — b3?

842


What is the difference between nodupkey and nodup options?

605


what is broad cast agent? : Sas-bi

609


if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming

555


what are informats in sas? : Sas-administrator

597


If a variable contains letters or special characters, can it be numeric data type?

768


What is a put statement?

671