if we dont want to print output what we have to do..???give
syntax..???
Answer Posted / 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 |
Post New Answer View All Answers
Explain the use of proc print and proc contents?
Mention what is SAS data set?
What are common programming errors committed in sas
What is substr function?
Explain the main difference between the sas procedures and functions? : Sas-administrator
What is the difference between nodupkey and nodup options?
How to include or exclude specific variables in a data set?
How to limit decimal places for the variable using proc means?
Difference between SAS STATA & SPSS?
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
What is the command used to find missing values?
Explain bmdp procedure?
Differentiate between ceil and floor functions.
What are the 3 components in sas programming?
how does sas handle missing values in functions? : Sas programming