Hi guys, Quick question.
When creating a PROC SQL view in SAS then storing the view in a library on SAS Server...will the underlying data update each time I use the view? or will I need to put the program on a scheduler?
EX:
Proc sql;
connect to odbc (datasrc=mydatasrc);
create view mylib.test as
select
*
from connection to odbc (select * from [db].[dbo].[tablename]);
disconnect from odbc;
quit;
then I use that view in a different program...
data test; set mylib.test; run;
will the data be updated?