Skip to main content
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
ritikesh
Microsoft Employee
Microsoft Employee

Download notebook snapshot in Fabric

Is there a way to download the notebook run snapshot?

 

Context:

I have a notebook(let's say X) running multiple notebooks(let's say A,B,C) from within it. So when a full run is complete, I can view the sub-notebooks but i want to download a copy to local of A. How may I do it?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ritikesh ,

 

It is possible to save the snapshot to another location but not download it locally, it is possible to download the notebook resource in Visual Studio Code but this is not a snapshot.

 

Use the following code to run multiple notebooks:

def run_notebook(notebook_path):: run_notebook(notebook_path).
    try.
        mssparkutils.notebook.run(notebook_path, 3600)
        return {โ€œnotebookโ€: notebook_path, โ€œstatusโ€: โ€œSuccessโ€}
    except Exception as e: return {โ€œnotebookโ€: notebook_path, โ€œstatusโ€: โ€œSuccessโ€}
        return {โ€œnotebookโ€: notebook_path, โ€œstatusโ€: โ€œFailedโ€, โ€œerrorโ€: str(e)}

notebooks = [โ€œNotebook 3โ€, โ€œNotebook 8โ€]
results = [run_notebook(nb) for nb in notebooks]

# result
for result in results.
    print(result)

 

At the end of the run click on notebook 3 to see a snapshot of what it looks like after the run, which can be saved to another location.

vhuijieymsft_0-1728629686328.png
vhuijieymsft_1-1728629686336.png

vhuijieymsft_2-1728629724836.png

 

If you want to know more about โ€œDownload notebook resource filesโ€ please refer to the official documentation below:

Work with notebook resources in Visual Studio Code - Microsoft Fabric | Microsoft Learn

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @ritikesh ,

 

It is possible to save the snapshot to another location but not download it locally, it is possible to download the notebook resource in Visual Studio Code but this is not a snapshot.

 

Use the following code to run multiple notebooks:

def run_notebook(notebook_path):: run_notebook(notebook_path).
    try.
        mssparkutils.notebook.run(notebook_path, 3600)
        return {โ€œnotebookโ€: notebook_path, โ€œstatusโ€: โ€œSuccessโ€}
    except Exception as e: return {โ€œnotebookโ€: notebook_path, โ€œstatusโ€: โ€œSuccessโ€}
        return {โ€œnotebookโ€: notebook_path, โ€œstatusโ€: โ€œFailedโ€, โ€œerrorโ€: str(e)}

notebooks = [โ€œNotebook 3โ€, โ€œNotebook 8โ€]
results = [run_notebook(nb) for nb in notebooks]

# result
for result in results.
    print(result)

 

At the end of the run click on notebook 3 to see a snapshot of what it looks like after the run, which can be saved to another location.

vhuijieymsft_0-1728629686328.png
vhuijieymsft_1-1728629686336.png

vhuijieymsft_2-1728629724836.png

 

If you want to know more about โ€œDownload notebook resource filesโ€ please refer to the official documentation below:

Work with notebook resources in Visual Studio Code - Microsoft Fabric | Microsoft Learn

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

 

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Users online (27)