if we dont want to print output what we have to do..???give
syntax..???

Answers were Sorted based on User's Feedback



if we dont want to print output what we have to do..???give syntax..???..

Answer / kissu

u can use noprint option

Is This Answer Correct ?    24 Yes 1 No

if we dont want to print output what we have to do..???give syntax..???..

Answer / srinivasreddy

proc print data= dataset name noprint;
run;

Is This Answer Correct ?    12 Yes 3 No

if we dont want to print output what we have to do..???give syntax..???..

Answer / guest

NOPRINT

Is This Answer Correct ?    6 Yes 0 No

if we dont want to print output what we have to do..???give syntax..???..

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

if we dont want to print output what we have to do..???give syntax..???..

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 we dont want to print output what we have to do..???give syntax..???..

Answer / srinivas

dm out 'clear';

Is This Answer Correct ?    0 Yes 2 No

if we dont want to print output what we have to do..???give syntax..???..

Answer / ramesh varma

proc print data=dsn;
run cancel;

Is This Answer Correct ?    0 Yes 4 No

if we dont want to print output what we have to do..???give syntax..???..

Answer / pal

ods output close;

Is This Answer Correct ?    3 Yes 10 No

Post New Answer

More SAS Interview Questions

How to specify variables to be processed by the freq procedure?

0 Answers  


I have 2 data sets A & B. Both have a variable called Age in them, each of them specifying a different functionality. In my program I use bot these data sets. How do I specify which Age variable I want to use?

6 Answers  


why is a stop statement needed for the point=option on a set statement? : Sas programming

0 Answers  


How does proc sql work?

0 Answers  


How substr function works in sas?

0 Answers  






What is the command used to find missing values?

0 Answers  


Can anyone help me about SAS Realtime scenarios in Clinical field

0 Answers  


How necessary is it to be creative in your work?

0 Answers   Oracle,


Describe the ways in which you can create macro variables? : sas-macro

0 Answers  


What do you code to create a macro? : sas-macro

0 Answers  


What do the put and input function do?

0 Answers  


is there any differnce between proc means and proc summary?

5 Answers  


Categories