BookmarkSubscribeRSS Feed
Sharad_Pujari
Calcite | Level 5

what is difference between look up transformation and join transofrmation.???

 

3 REPLIES 3
Kurt_Bremser
Super User

In a lookup transformation, the lookup tables are loaded into memory at the start, and the main table is processed sequentially.

In a join transformation, all tables need to be sorted (often done implicitly by a SQL step) and then merged along the by variables.

 

Joins should be done when the contributing tables are quite large, or there is a m:n relationship.

Lookups are good for smaller lookup tables (small just meaning they should fit into memory) and 1:n relationships (lookup to main); one can do several lookups in one sequential step.

LinusH
Tourmaline | Level 20
There's a scenario where join should be preferred, when the master and lookup tabke(s) reside on an external data source. SQL can relatively easy be pushed down to the RDBMS.
Data never sleeps

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to connect to databases in SAS Viya

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.

Discussion stats
  • 3 replies
  • 2297 views
  • 4 likes
  • 4 in conversation