You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# MAGIC With DiscoverX you can run maintenance operations like vacuum over multiple tables at once.
# MAGIC
# MAGIC You can use the wildcard `*` to match any string. Eg. `prod_*.*.*gold*` will match any table containing the word `gold` in a catalog that starts with `prod_`.
# COMMAND ----------
# MAGIC %pip install dbl-discoverx==0.0.8
# COMMAND ----------
dbutils.widgets.text("from_tables", "*.*.*")
from_tables = dbutils.widgets.get("from_tables")
# COMMAND ----------
from discoverx import DX
dx = DX()
# COMMAND ----------
# MAGIC %md
# MAGIC ## Explain the commands that will be executed