balajij8
Contributor III

Hi @Saf4Databricks As you can see hereGlobal temp views are not supported in serverless. You can remove global temp database & temp db in the code as its not supported.

To use the session temporary views, you can run the notebook to keep the view in session %run "./Notebook" and use the view myview directly in table.

Caller Notebook

%run "./Notebook1"
display(table("myview"))