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

Can you calculate the mean, median and mode of the following data set using data step logic? Don't use any function or procedure. data a; input age @@; datalines; 22 32 32 32 43 23 24 56 45 54 28 29 27 26 25 28 30 20 18 37 36 47 46 56 19 20 ; run; I have calculated the mean which i have posted in the answer section.

6 Answers   HSBC,


create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;

6 Answers   WNS,


Can anyone help me about SAS Realtime scenarios in Clinical field

0 Answers  


We want to merge file A and B. File A has variable age, file B provide birthdate. How to merge the data according to age in file B

3 Answers  


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?

4 Answers  


What is the difference between class statement and by statement in proc means?

0 Answers  


What are the difference between the sas data step and sas procs?

0 Answers  


What was the last computer book you purchased? Why?

0 Answers   Oracle,


i have a null dataset with 20 variables. i want to upload the variables which contain name like a or k or anything in another dataset.how can we create the dataset?

3 Answers   L&T,


sas implimented companies in hyderabad

11 Answers   CTS, HSBC,


what is intially documentation in sas?

1 Answers   Accenture,


How to import the Zip files into SAS? If it is possible in SAS? If it is posible write the code...

7 Answers  


Categories