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
why a stop statement is needed for the point= option on a set statement?
Difference between nodup and nodupkey options?
what is the basic structure sas administrator? : Sas-administrator
What is the maximum length of the macro variable?
how does sas handle missing values in assignment statements? : Sas programming
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
What is the length assigned to the target variable by the scan function?
What is the difference between using drop = data set option in data statement and set statement?
what is metadata? : Sas-bi
what versions of sas have you used (on which platforms)? : Sas programming
What system options would you use to help debug a macro? : sas-macro
How do you debug and test your SAS programs?
Give some examples where proc report’s defaults are different than proc print’s defaults?
Mention few capabilities of sas framework.
What are types of transport files?