Get startedGet started for free

Creating links

The final piece in the data vault model for HR is the creation of Links. Links represent relationships between hubs or capture transactions and interactions involving multiple hubs.

Your task is creating a link entity representing the relationship or interaction between the employee, training, and department hubs.

This exercise is part of the course

Introduction to Data Modeling in Snowflake

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Create a new entity
___ link_all (
	-- Add a unique identifier to the link
	link_key NUMBER(10,0) ___,
    -- Add history tracking attributes
	load_date ___,
    record_source ___
);
Edit and Run Code