Skip to content

Commit 895c985

Browse files
Fixing the LiveSQL tag references. (#389)
* Adding EL9 updates to the noVNC lab. * General maintenance on the noVNC lab. * Update 6-labs-setup-graphical-remote-desktop.md * Updates to shared ADB provisioning instructions. * Update provision-body-developer.md * Updating the 'Verify Compute Instance' lab. * Updating the CSS and JS files to support the LiveSQL x Sprints integration * Revert "Updating the CSS and JS files to support the LiveSQL x Sprints integration" This reverts commit d45f8af. * Updating the CSS and JS files to support the LiveSQL x Sprints integration * Adding templates for Live SQL enabled sprints. * Adding templates for Live SQL enabled sprints. * Fiing the LiveSQL tag references. * LiveSQL to Live SQL
1 parent 4966fcb commit 895c985

File tree

1 file changed

+3
-3
lines changed
  • sample-livelabs-templates/sample-sprints/sprint-livesql-worksheet

1 file changed

+3
-3
lines changed

sample-livelabs-templates/sample-sprints/sprint-livesql-worksheet/create-tables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# How can I create tables in the Oracle database?
2-
<!-- This HTML tag creates a Live SQL button that takes you to a LiveSQL Worksheet. It will auto-populate that worksheet with the code statements you have wrapped with the <livesql> tag. -->
2+
<!-- This HTML tag creates a Live SQL button that takes you to a Live SQL Worksheet. It will auto-populate that worksheet with the code statements you have wrapped with the Live SQL tag. -->
33
<livesql-button>
44

55
<b>Live SQL Execution:</b> Sign-In Required</br>
@@ -27,7 +27,7 @@ For example, you define a table with a table name, such as employees, and a set
2727

2828
You can specify rules for each column of a table. These rules are called integrity constraints. One example is a NOT NULL integrity constraint. This constraint forces the column to contain a value in every row.
2929

30-
<!-- Notice how this code is wrapped with the <livesql> tag. -->
30+
<!-- Notice how this code is wrapped with the Live SQL tag. -->
3131
```
3232
<livesql>
3333
create table DEPARTMENTS (
@@ -41,7 +41,7 @@ create table DEPARTMENTS (
4141

4242
Tables can declarative specify relationships between tables, typically referred to as referential integrity. To see how this works we can create a "child" table of the DEPARTMENTS table by including a foreign key in the EMPLOYEES table that references the DEPARTMENTS table.
4343

44-
<!-- Notice how this code is wrapped with the <livesql> tag too. -->
44+
<!-- Notice how this code is wrapped with the Live SQL tag too. -->
4545
```
4646
<livesql>
4747
create table EMPLOYEES (

0 commit comments

Comments
 (0)