
Answer-first summary for fast verification
Answer: dbutils.notebook.run("full notebook path")
The correct method to run one notebook from another is `dbutils.notebook.run("full notebook path")`. This command allows for additional options such as setting a timeout and passing arguments. The full syntax includes: `run(path: String, timeout_seconds: int, arguments: Map): String`. For example: `dbutils.notebook.run("ful-notebook-name", 60, {"argument": "data", "argument2": "data2", …})`.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
How can you execute one notebook from another within Databricks?
A
notebook.utils.run("full notebook path")
B
only job clusters can run notebook
C
dbutils.notebook.run("full notebook path")
D
execute.utils.run("full notebook path")
E
spark.notebook.run("full notebook path")