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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 644 views
  • 0 likes
  • 2 in conversation