Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2022 04:07 AM
have you tried the widgets utils from databricks?
https://docs.microsoft.com/en-us/azure/databricks/notebooks/widgets
dbutils.widgets.text("database", "dev")
database_def = dbutils.widgets.getArgument("database")
print(database_def)You can parametrize it when you run the scripts.