This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WITH artifact_cohort AS ( | |
| SELECT | |
| s.artifact_id | |
| , s.user_id | |
| , s.n_versions | |
| , s.has_copy | |
| , s.has_export | |
| , s.n_other_viewers | |
| FROM zz_dbt_jpentakalos.artifact_summary AS s | |
| JOIN dim.all_deployments AS d USING (project_id) |