Can we replace a dataset into view?

Answers were Sorted based on User's Feedback



Can we replace a dataset into view?..

Answer / 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

Can we replace a dataset into view?..

Answer / vivek

proc sql;
create view <viewname> as
select *
from <Datasetname>;
quit;

Is This Answer Correct ?    1 Yes 0 No

Can we replace a dataset into view?..

Answer / gk

yes we can replace a data set with view by a procedure
called datasets

Is This Answer Correct ?    2 Yes 2 No

Can we replace a dataset into view?..

Answer / arun & g.n.rao

IT CAN BE DONE USING PROC SQL.

Is This Answer Correct ?    1 Yes 1 No

Can we replace a dataset into view?..

Answer / sriraghubabu

yes, we can replace dataset into view in Proc sql.
example:

proc sql;
create view newemp as
select *
from Employee
group by name;
select * from newemp;
quit;

now the data set is replaced into view..

Is This Answer Correct ?    0 Yes 2 No

Can we replace a dataset into view?..

Answer / guest

yes we can
ex: data aa/view=bb;
input variables;
datalines;
run;

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More SAS Interview Questions

how to read character value without using substr function in sas ?

3 Answers  


for whom is sas data integration studio designed? : Sas-di

0 Answers  


Does anybody has lastest SAS certification dumps,if anybody has please mail me on saggydesai@gmail.com

2 Answers  


What do you understand by the term Normal Distribution?

0 Answers  


Name validation tools used in SAS

0 Answers  






How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i have no file Conversion?

3 Answers   Reddy Labs,


What is the basic syntax style in SAS?

0 Answers  


Name statements that function at both compile and execution time?

1 Answers  


how we can call macros with in data step?

17 Answers   Allianz, ManPower,


What is your weekness? I am confuse what to say about this question. so can u give some answer which can be yur strenght.

1 Answers   Cipla,


Why do we use QUIT commmand for proc datasets and proc sql ???

3 Answers  


Name and describe few sas character functions that are used for data cleaning in brief.

0 Answers  


Categories