If you have a data set that contains 100 variables, but you
need only five of those, what is the code to force SAS to
use only those variable?

Answer Posted / srilatha

by using the views.
ex: proc sql;
create view emp_v
as
select empno,sal,deptno,comm from emp;
quit;

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is slibref?

849


Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com

1694


Mention what is the difference between nodupkey and nodup options?

688


what is slowly changing dimension? : Sas-di

733


what is star schema? : Sas-di

735






What are common programming errors committed in sas

761


Explain data step in SAS

723


what are 5 ways to perform a table lookup in sas? : Sas-administrator

866


what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming

719


Given an unsorted data set, how to read the last observation to a new data set?

963


How substr function works in sas?

787


how can you import .csv file in to sas? : Sas programming

736


describe how to adjust the performance of data integrator? : Sas-di

649


What are the implications?

1278


What’s the difference between var b1 – b3 and var b1 — b3?

943