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
what is change analysis in sas di ? : Sas-di
What is the difference between SAS functions and procedures?
How substr function works in sas?
What is the maximum length of the macro variable? : sas-macro
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?
what are input dataset and output dataset options? : Sas programming
How many ways to overcome a missing values???
How to create list output for cross-tabulations in proc freq?
Explain append procedure?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
How we can call macros with in data step? : sas-macro
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
Name some categories in sas 9? : sas-grid-administration
what is program data vector? : Sas-administrator