diff --git a/src/pages/how-to/db-workload-migration.mdx b/src/pages/how-to/db-workload-migration.mdx index 3cdbd5ca..97601c4c 100644 --- a/src/pages/how-to/db-workload-migration.mdx +++ b/src/pages/how-to/db-workload-migration.mdx @@ -60,7 +60,7 @@ Connect to the database: psql -d demo_db ``` -Once connected, run the follwing SQL code to create the `employees` table and fill it with sample data: +Once connected, run the following SQL code to create the `employees` table and fill it with sample data: ```sql CREATE TABLE employees ( @@ -92,7 +92,7 @@ The expected output is: (3 rows) ``` -With the database up and running, you are ready to create the local worload. +With the database up and running, you are ready to create the local workload. Create a new folder for the Python environment, then navigate to it and run: