Is it possible to set referential integrity between two tables which are part of different databases?
For ex:
suppose dim_calendar table with Time_Key as primary key is in database A
fact_sales with period_key as foreign key is in database B
then is it possible that B.fact_sales(period_key) references A.dim_calendar(time_key)?
Thanks