if we dont want to print output what we have to do..???give
syntax..???
Answers were Sorted based on User's Feedback
proc print data= dataset name noprint;
run;
| Is This Answer Correct ? | 12 Yes | 3 No |
Answer / chandu
OPTIONS NOPRINT;
Since the question was not specified the procedure. We can use the global SAS statement where we can specify the noprint option.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / paul
--Output in sas is only through a procedure, so OPTIONS
NOPRINT will disable the output universally, and might be
suitable for a batch run.
--It's advisible to use NOPRINT option with individual
procedures, such as
Proc sql noprint;
<sql >
quit; as it only supress the output for a particular proc.
--ODS listing close; can be used to disable output in
OUTPUT window of SAS session and redirect it to some
external file, if the o/p is not re-directed then we get a
warning in log as:
WARNING: No output destinations active.
--dm out 'clear'; is to clear the output window, it wont
suppress o/p while running a proc.
--The real intensio nof the question must be whether the
user know the technique to re-direct the o/p.
cheers!
-Paul
| Is This Answer Correct ? | 2 Yes | 0 No |
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
how to know the attributes of first five datasets in a library
What is the maximum length of the macro variable? : sas-macro
firstobs and obs are working only option wise,but we are using infile statement with firstobs and obs in a statement wise? so firstobs,obs working at options and statemnts or not?
how do you derive descriptive statistics?
1 Answers Accenture, Quintiles,
How do I CREATE an external dataset with sas code? I would like to create within a sascode a non-exsistent textfile on the host. So I am not forced to create the file befor filling it.
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
what is SAS/Access and SAS/Connect?what are the uses?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
How would you code the criteria to restrict the output to be produced?
What was the last computer book you purchased? Why?
Explain substr function?