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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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