What is the purpose of using TBLPROPERTIES("quality" = "silver")
while creating table using CREATE STREAMING LIVE TABLE...
syntax. Is it just to tag the table that it is a silver table or does it drive anything else during data processing
Asked
Active
Viewed 458 times
1
1 Answers
0
yes, similar properties are just for tagging the table, so if necessary you can quickly figure out which tables are belong to which data quality level. This is especially useful right now when all tables are registered in the same database/schema. And you can add more tags if necessary, for example, to identify subprojects, data sources, etc.

Alex Ott
- 80,552
- 8
- 87
- 132
-
Is it possible to query all tables having similar tagging? Like LIST TABLES WHERE quality = 'silver' – Oscar Dyremyhr May 10 '23 at 13:54
-
you can list tables in the schema/database, and they describe each table. If you use unity catalog, then you should be able to use `information_schema` (not sure although) – Alex Ott May 10 '23 at 15:17