You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ This repository stores a variety of examples demonstrating how to use the Oracle
29
29
|[examples-nosql-spring-sdk](./examples-nosql-spring-sdk)| Examples using the `nosql-spring-sdk`|
30
30
|[demo-livelab](./demo-livelab)| you can find the code used in our NoSQL LiveLabs workshops in this directory and more information [here](#oracle-nosql-livelabs)|
31
31
|[demo-events](./demo-events)| The NoSQL team is delivering content in Webinars and Events around the world. You can also find the instructions for workshops showcased in NoSQL events and have more information [here](#oracle-nosql-livelabs)|
32
-
|[SQL for Oracle NoSQL Database tutorial](https://docs.oracle.com/en/database/other-databases/nosql-database/22.3/nsdev/getting-started-sql-oracle-nosql-database1.html)| Getting started with SQL for Oracle NoSQL Database `sql-for-nosql`|
32
+
|[SQL for Oracle NoSQL Database tutorial](https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/nsdev/getting-started-oracle-nosql-database1.html)| Getting started with SQL for Oracle NoSQL Database `sql-for-nosql`|
33
33
|[terraform Provider for Oracle NoSQL Database tutorial](https://github.com/oracle/terraform-provider-oci/tree/master/examples/nosql)| This is a Terraform configuration that creates the NoSQL service on Oracle Cloud Infrastructure. `nosql-cloud-devops`|
34
34
35
35
@@ -120,7 +120,7 @@ Read this [whitepaper](https://www.oracle.com/a/otn/docs/database/oracle-nosql-c
120
120
121
121
**Tags:**`sql-for-nosql`
122
122
123
-
Welcome to [SQL for Oracle NoSQL Database tutorial](https://docs.oracle.com/en/database/other-databases/nosql-database/22.3/nsdev/getting-started-sql-oracle-nosql-database1.html).
123
+
Welcome to [SQL for Oracle NoSQL Database tutorial](https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/nsdev/getting-started-oracle-nosql-database1.html).
124
124
125
125
126
126
The SQL for Oracle NoSQL Database data model supports flat relational data, hierarchical typed (schema-full) data, and schema-less JSON data.
@@ -145,7 +145,7 @@ such as episodes they watched, the watch time per episode, the total number of s
145
145
The data is stored in the NoSQL Database and the application performs SQL queries to retrieve the required data and make it available to the user.
146
146
147
147
The scripts allowing to run this tutorial are hosted in this Repository ( `AcctStreamSchema` and `BaggageSchema` ) but follow the instructions provided
148
-
in the [SQL for Oracle NoSQL Database tutorial](https://docs.oracle.com/en/database/other-databases/nosql-database/22.3/nsdev/getting-started-sql-oracle-nosql-database1.html)
148
+
in the [SQL for Oracle NoSQL Database tutorial](https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/nsdev/getting-started-oracle-nosql-database1.html)
149
149
150
150
## Terraform Provider for Oracle Cloud Infrastructure
Copy file name to clipboardExpand all lines: cluster_setup/cluster_setup.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2674,7 +2674,7 @@ EOT
2674
2674
echo"httpproxy setup failed."
2675
2675
if [ $secure_store-eq 1 ] ;then
2676
2676
echo""
2677
-
echo"See https://docs.oracle.com/en/database/other-databases/nosql-database/19.5/admin/secure-proxy.html for information on how to configure a secure proxy."
2677
+
echo"See https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/admin/secure-proxy.html for information on how to configure a secure proxy."
Copy file name to clipboardExpand all lines: demo-events/webinar/tv-streaming-service-queries/create-populate-tables/create-populate-tables.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,9 +92,6 @@ the top-level shows array and also the `date` field inside the episodes arrays,
92
92
info.shows[].showId as integer,
93
93
info.shows[].seriesInfo[].episodes[].date as string);
94
94
````
95
-
See the NoSQL documentaion [here](https://docs.oracle.com/en/database/other-databases/nosql-database/22.1/sqlreferencefornosql/indexes.html) for more details
Copy file name to clipboardExpand all lines: demo-events/webinar/tv-streaming-service-queries/explore-run-queries/explore-run-queries.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ The query returns the number of users in USA that have shown an interest in the
56
56
57
57
Notice the use of the `=any` operator here. Using the simple `=` operator would cause a runtime error to be raised, because `=` expects each of its operands to be at most one value, but the `u.info.shows.showId` path expression returns all the show ids in the shows array. Instead, the `=any` acts like a `contains` here, i.e., it returns true if the shows array contains a show id with value 16.
58
58
59
-
[Here] (https://docs.oracle.com/en/database/other-databases/nosql-database/22.1/sqlreferencefornosql/sequence-comparison-operators.html) for more details on the `=any` operations.
59
+
[Here] (https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/sqlreferencefornosql/sequence-comparison-operators.html) for more details on the `=any` operations.
60
60
61
61
The query could also have been written equivalently like this:
62
62
@@ -74,13 +74,13 @@ condition `$element.showId = 16` selects the show whose id is 16. Since the path
74
74
expression `u.info.shows[$element.showId = 16]` returns a set of shows (at most one
75
75
show in this case), rather than a boolean value, the exists operator is needed to
76
76
convert this set to a boolean value (returning true if the set is not empty).
77
-
Click [Here](https://docs.oracle.com/en/database/other-databases/nosql-database/22.1/sqlreferencefornosql/path-expressions.html) for the full specification of path
77
+
Click [Here](https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/sqlreferencefornosql/path-expressions.html) for the full specification of path
78
78
expressions.
79
79
80
80
Both of the above (equivalent) queries uses the `idx_country_showid_date` index.
81
81
Both of the query conditions are pushed to the index. In fact, the index is
82
82
“covering” each query, i.e., it contains all the info needed by the query, and as a
83
-
result, no table rows are retrieved during execution. Click [Here](https://docs.oracle.com/en/database/other-databases/nosql-database/22.1/sqlreferencefornosql/query-optimization.html) for more examples and details about
83
+
result, no table rows are retrieved during execution. Click [Here](https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/sqlreferencefornosql/query-optimization.html) for more examples and details about
84
84
how indexes are used by queries.
85
85
86
86
To confirm the use of the index and to see what conditions are pushed to it, you
@@ -300,7 +300,7 @@ info from the values bound to the `$sk1`, `$sk2`, and `$sk3` variables.
300
300
301
301
The query also illustrates the use of a sequence aggregation function (`seq_sum`)
302
302
to sum up the time spent by a user watching episodes that satisfy a condition (the
303
-
episodes of show 16). Click [here](https://docs.oracle.com/en/database/other-databases/nosql-database/22.1/sqlreferencefornosql/sequence-aggregate-functions.html)
303
+
episodes of show 16). Click [here](https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/sqlreferencefornosql/sequence-aggregate-functions.html)
304
304
for details on sequence aggregation functions.
305
305
306
306
8. More complex conditions on nested arrays
@@ -492,7 +492,7 @@ The query uses `idx_showid_seasonNum_minWatched` as a covering index.
0 commit comments