If I have a DLT pipeline that creates a streaming live table called customers, how can I use that table in another pipeline?
So,
- Pipeline A:
CREATE OR REFRESH STREAMING LIVE TABLE customers AS
- Pipeline B:
CREATE OR REFRESH STREAMING LIVE TABLE sales AS
SELECT * FROM source a
INNER JOIN STREAM(LIVE.customers)
That does not work since it says it does not have access to the customers dataset.
Thanks in advance for the help.