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
Are you sensitive to code walk-throughs peer review or QC review?
What is PROC in SAS?
what are sas/access and sas/connect? : Sas programming
Explain how you can debug and test your SAS program?
explain the difference between proc means and proc summary?
What does P-value signify about the statistical data?
How do you control the number of observations and/or variables read or written?
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
how does sas handle missing values in functions? : Sas programming
for what purpose would you use the retain statement? : Sas programming
What is the role of unrestrictive users? : sas-grid-administration
what do you mean by data staging area? : Sas-di
AE datasets names? how many types?
What system options would you use to help debug a macro? : sas-macro
what techniques and/or procs do you use for tables? : Sas programming