This post is about how to exit and notebook and return a variable to the calling process.
It should be noted that Synapse can return any variable.
var = <SOME_VALUE> from notebookutils import mssparkutils mssparkutils.notebook.exit(var)
A place for tutorials on programming and other such works.
This post is about how to exit and notebook and return a variable to the calling process.
It should be noted that Synapse can return any variable.
var = <SOME_VALUE> from notebookutils import mssparkutils mssparkutils.notebook.exit(var)
This post is about how to exit and notebook and return a variable to the calling process.
It should be noted that Databricks can only return string values.
First you need to setup dbutils.
str = "<SOME_VALUE>" dbutils.notebook.exit(str)
You must be logged in to post a comment.