I want to link 2 or more tables.
One way is to join the tables which will increase the size of my fact tables
Is there any other way to link 2 or more table?
Can we built a data model using any SAS product.
You can create views that do the merge on the fly when accessed.
For lookups, consider creating custom formats.
You can create views that do the merge on the fly when accessed.
For lookups, consider creating custom formats.
I want to link my facts and dimension table and I don't want to join them as it will increase the size of my fact table.
As he said I have to create views at the rum time what I was thinking of using the proc sql statement.
load fact (A) and dimension (B) tables and then
proc sql;
select A.age,
B.salary,
from A,B
where A.Id= B.Id;
Quit;
then I will drop the table A and B.
Need Suggestions!
Depending on table sizes, you can create a format from one table and use it in the other.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.