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

Please write codes to merge two datasets and keep every record in the first dataset.

1 Answers  


If you were told to create many records from one record show how you would do this using arrays and with PROC TRANSPOSE?

1 Answers   HCL, Quintiles,


Which command is used to perform sorting in sas program?

0 Answers  


I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com

0 Answers  


what is sas application server, database server, sas olap server and sas metadata server? : Sas-di

0 Answers  






what is change analysis in sas di ? : Sas-di

0 Answers  


Name statements that are execution only.

4 Answers  


Name statements that are recognized at compile time only?

3 Answers   Accenture,


In the SAS Data step what is the difference between the subsetting done by Where and subsetting done by If?

6 Answers   Cognizant,


Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT SAS Training in Data Management at InfoSchool Bangalore

1 Answers  


describe the interaction table in sas di? : Sas-di

0 Answers  


How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?

0 Answers  


Categories