Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What are the prime responsibilities of data integration administrator? : Sas-di

0 Answers  


how do we get duplicate observations in a separate dataset?

6 Answers   CitiGroup,


how can you improve the performance of a query, If it is excuting very slowly?

2 Answers   Zensar,


What are the 3 components in sas programming?

0 Answers  


How do you control the number of observations and/or variables read or written?

0 Answers  


Hi, I need to create a SAS Map of USA using SAS Graphs(Proc Gmap).The data i have dosent contain any co-ordinates of USA cities or counties or states, and the zip codes are diffrent in the data i have from the zip code in the Maps.US dataset in the Maps Library for SAS MAPS. the data i have is a sales report. i have to generate the maps according to the states,cities aligned in the sales data, HELP Appriciated

1 Answers  


How to create an external dataset with sas code?

0 Answers  


Differentiate between proc means and proc summary.

0 Answers  


HOW DO WE CREATE A SAS STORED PROCESS IN SAS EG ?

1 Answers   TCS,


If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?

7 Answers   Accenture,


how to perform paired t-test using Base/SAS & SAS/Stat?

2 Answers  


code the tables statement for a single level frequency?

2 Answers  


Categories