diff --git a/notebooks/executing-notebooks-from-another-notebook-with-fusion-sql/meta.toml b/notebooks/running-notebooks-from-another-notebook-with-fusion-sql/meta.toml
similarity index 69%
rename from notebooks/executing-notebooks-from-another-notebook-with-fusion-sql/meta.toml
rename to notebooks/running-notebooks-from-another-notebook-with-fusion-sql/meta.toml
index f5d80e4..8feda32 100644
--- a/notebooks/executing-notebooks-from-another-notebook-with-fusion-sql/meta.toml
+++ b/notebooks/running-notebooks-from-another-notebook-with-fusion-sql/meta.toml
@@ -1,8 +1,8 @@
[meta]
authors=["singlestore"]
-title="Executing Notebooks from Another Notebook with Fusion SQL"
+title="Running Notebooks from Another Notebook with Fusion SQL"
description="""\
- Learn how to execute Notebooks from another Notebook
+ Learn how to run Notebooks from another Notebook
in SingleStoreDB Cloud using Fusion SQL.
"""
icon="files"
diff --git a/notebooks/executing-notebooks-from-another-notebook-with-fusion-sql/notebook.ipynb b/notebooks/running-notebooks-from-another-notebook-with-fusion-sql/notebook.ipynb
similarity index 89%
rename from notebooks/executing-notebooks-from-another-notebook-with-fusion-sql/notebook.ipynb
rename to notebooks/running-notebooks-from-another-notebook-with-fusion-sql/notebook.ipynb
index 46415a8..28867bf 100644
--- a/notebooks/executing-notebooks-from-another-notebook-with-fusion-sql/notebook.ipynb
+++ b/notebooks/running-notebooks-from-another-notebook-with-fusion-sql/notebook.ipynb
@@ -11,7 +11,7 @@
" \n",
"
\n",
"
SingleStore Notebooks
\n",
- "
Executing Notebooks from Another Notebook with Fusion SQL
\n",
+ "
Running Notebooks from Another Notebook with Fusion SQL
\n",
"
\n",
""
]
@@ -22,7 +22,7 @@
"id": "18ed6021",
"metadata": {},
"source": [
- "In this notebook, we demonstrate how to use **[Fusion SQL](https://www.singlestore.com/spaces/getting-started-with-fusion-sql/)** to execute a notebook from another notebook, either within the **same session** (useful to avoid code duplication) or in a **new session** (useful for parallel execution)."
+ "In this notebook, we demonstrate how to use **[Fusion SQL](https://www.singlestore.com/spaces/getting-started-with-fusion-sql/)** to run a notebook from another notebook, either within the **same session** (useful to avoid code duplication) or in a **new session** (useful for parallel execution)."
]
},
{
@@ -104,9 +104,9 @@
"id": "4f0cbad1",
"metadata": {},
"source": [
- "## Executing the Sample Notebook in the Current Session\n",
+ "## Running the Sample Notebook in the Current Session\n",
"\n",
- "In this example, we will execute the previously created sample notebook within the current session. This approach is useful for avoiding code duplication in your notebooks, such as environment setup or reusable functions."
+ "In this example, we will run the previously created sample notebook within the current session. This approach is useful for avoiding code duplication in your notebooks, such as environment setup or reusable functions."
]
},
{
@@ -136,7 +136,7 @@
"id": "9c08ff46",
"metadata": {},
"source": [
- "Next, we execute the notebook and confirm that the `sample_var` variable set in the sample notebook is accessible in the current session:"
+ "Next, we run the notebook and confirm that the `sample_var` variable set in the sample notebook is accessible in the current session:"
]
},
{
@@ -160,9 +160,9 @@
"id": "1a059fcb",
"metadata": {},
"source": [
- "## Executing the Sample Notebook in a New Session\n",
+ "## Running the Sample Notebook in a New Session\n",
"\n",
- "Instead of executing a notebook in the current session, we can run it in a new session \u2014 either synchronously or asynchronously \u2014 using jobs. This approach is useful for parallel execution or running code in a separate runtime environment.\n",
+ "Instead of running a notebook in the current session, we can run it in a new session \u2014 either synchronously or asynchronously \u2014 using jobs. This approach is useful for parallel execution or running code in a separate runtime environment.\n",
"\n",
"\n",
" \n",