BookmarkSubscribeRSS Feed
zdeb15
Calcite | Level 5

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?

1 REPLY 1
PGStats
Opal | Level 21

A view does not contain data. It is simply the recipe to generate the data. So, yes, the data retrieved when calling the view is always up to date.

PG

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 577 views
  • 0 likes
  • 2 in conversation