Can we replace a dataset into view?

Answer Posted / jyotshna

yes we can replace dataset into view

syntax:
data librefname.datasetname/view=librefnmae.datasetname;
run;
sample:
data aa/view=aa;
set sashel.class;
run;

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is factor analysis?

765


Name types of category in which SAS Informats are placed?

840


What are common programming errors committed in sas

766


if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming

635


What does PROC print, and PROC contents do?

849






Mention sas system options to debug sas macros.

758


How would you identify a macro variable?

745


How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?

739


Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.

1563


Give e an example of..

1981


For clinical entire study how many tables will create approx?

1622


Differentiate between sas functions and sas procedures.

738


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1919


Did you used proc test? when?

1693


Define run-group processing?

679