Skip to content

Commit

Permalink
Fix formatting WMS 11431 (#671)
Browse files Browse the repository at this point in the history
* Patch PAR URLs database repository

Patch PAR URLs database repository

* Patch part 2 - database

Patch part 2 - database

* Patch 3 - database

Patch 3 - database

* Fix database repo (outdated URLS)

Fix database repo (outdated URLS)

* WMS 1: Update multitenant nextGen part 1

WMS 1: Update multitenant nextGen part 1

* WMS 1: changes for nextGen Part 2

WMS 1: changes for nextGen Part 2

* WMS 1: Fix manifest for OCW24

WMS 1: Fix manifest for OCW24

* Fix formatting WMS 11431

Fix formatting WMS 11431
  • Loading branch information
klazarz authored Sep 4, 2024
1 parent 6bbc729 commit e87555c
Show file tree
Hide file tree
Showing 6 changed files with 353 additions and 300 deletions.
70 changes: 35 additions & 35 deletions json-duality/1-create-schema/create-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@ This lab assumes you have:

2. Login as the `CLASSMATE` user. To do this, Click on the drop-down arrow to the right of the `ADMIN` user and click *Sign Out* .

![showing the schema drop-down-menu](./images/lab010102a.png)
![showing the schema drop-down-menu](./images/lab010102a.png)

At the Sign-in screen enter:
At the Sign-in screen enter:

Username: *CLASSMATE*
Password: *College2024#*
Username: *CLASSMATE*
Password: *College2024#*

and click the "Sign in" button.
and click the "Sign in" button.

![showing the sign-in screen](./images/lab010102b.png)
![showing the sign-in screen](./images/lab010102b.png)

This will bring you to the "Database Actions Launchpad".
This will bring you to the "Database Actions Launchpad".

(If it's the first time you are accessing the Launchpad, your default homepage will be the "Development" page. If not, click the "Development" tab to display the development menu.)
(If it's the first time you are accessing the Launchpad, your default homepage will be the "Development" page. If not, click the "Development" tab to display the development menu.)

Click "SQL" in the menu on the left hand side of the screen. You will now be at the SQL Worksheet screen.
Click "SQL" in the menu on the left hand side of the screen. You will now be at the SQL Worksheet screen.

![showing the SQL drop-down-menu](./images/lab010102c.png)
![showing the SQL drop-down-menu](./images/lab010102c.png)


We're now ready to start creating our tables.
We're now ready to start creating our tables.

3. We will start by creating a table called: `student`.

Copy and paste the following code in the SQL Worksheet pane. Click "Run Script" to execute the code.
Copy and paste the following code in the SQL Worksheet pane. Click "Run Script" to execute the code.

```
<copy>
Expand Down Expand Up @@ -90,16 +90,16 @@ Copy and paste the following code in the SQL Worksheet pane. Click "Run Script"
![Showing the terminal](images/lab010104a.png " ")
You should see 12 rows created.
You should see 12 rows created.
Verify the contents of the table you just created by clicking the "Run Script" button-
Verify the contents of the table you just created by clicking the "Run Script" button-
```
<copy>
SELECT * FROM student ;
</copy>
```
You should see the following-
```
<copy>
SELECT * FROM student ;
</copy>
```
You should see the following:
![Showing the select student](images/lab010104b.png " ")
Expand Down Expand Up @@ -137,17 +137,17 @@ You should see the following-
![Showing the create teacher](images/lab010106a.png " ")
You should see 8 rows inserted.
You should see 8 rows inserted.
You can also verify the contents of the table you just created by running the following-
You can also verify the contents of the table you just created by running the following-
```
<copy>
SELECT * FROM teacher ;
</copy>
```
```
<copy>
SELECT * FROM teacher ;
</copy>
```
You should see the following-
You should see the following:
![Showing the create teacher](images/lab010106b.png " ")
Expand Down Expand Up @@ -175,7 +175,7 @@ You should see the following-
![Showing the create course](images/lab010107.png " ")
Once the `course` table is created, populate the `course` table with the following entries.
Once the `course` table is created, populate the `course` table with the following entries.
```
<copy>
Expand Down Expand Up @@ -205,19 +205,19 @@ Once the `course` table is created, populate the `course` table with the followi
</copy>
```
You should see 11 rows inserted.
You should see 11 rows inserted.
![Showing the insert into course](images/lab010108a.png " ")
You can also verify the contents of the table you just created-
You can also verify the contents of the table you just created-
```
<copy>
SELECT * FROM course ;
</copy>
```
You should see the following-
You should see the following:
![Showing the select from course](images/lab010108b.png " ")
Expand Down Expand Up @@ -266,17 +266,17 @@ You should see the following-
```
![Showing the insert into student course](images/lab010110a.png " ")
You should see 17 rows inserted.
You should see 17 rows inserted.
You can also verify the contents of the table you just created issuing the following command-
You can also verify the contents of the table you just created issuing the following command-
```
<copy>
SELECT * FROM student_courses ;
</copy>
```
You should see the following-
You should see the following:
![Showing the select student course](images/lab010110b.png " ")
Expand Down
Loading

0 comments on commit e87555c

Please sign in to comment.