Skip to content

Commit f45fa43

Browse files
authored
QA - updating documentation references (#177)
1 parent 3d05a84 commit f45fa43

File tree

7 files changed

+9
-15
lines changed

7 files changed

+9
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This repository stores a variety of examples demonstrating how to use the Oracle
2929
| [examples-nosql-spring-sdk](./examples-nosql-spring-sdk) | Examples using the `nosql-spring-sdk` |
3030
| [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) |
3131
| [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`|
3333
| [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`|
3434

3535

@@ -120,7 +120,7 @@ Read this [whitepaper](https://www.oracle.com/a/otn/docs/database/oracle-nosql-c
120120

121121
**Tags:** `sql-for-nosql`
122122

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).
124124

125125

126126
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
145145
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.
146146

147147
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)
149149

150150
## Terraform Provider for Oracle Cloud Infrastructure
151151

cluster_setup/cluster_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2674,7 +2674,7 @@ EOT
26742674
echo "httpproxy setup failed."
26752675
if [ $secure_store -eq 1 ] ; then
26762676
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."
26782678
fi
26792679
echo ""
26802680
exit 1

demo-events/webinar/demo-nosql-lab-with-kvlite/explore-run-queries/explore-run-queries.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ Estimated Time: 15 minutes
150150
* [Java API Reference Guide](https://docs.oracle.com/en/cloud/paas/nosql-cloud/csnjv/index.html)
151151
* [Node API Reference Guide](https://oracle.github.io/nosql-node-sdk/)
152152
* [Python API Reference Guide](https://nosql-python-sdk.readthedocs.io/en/latest/index.html)
153-
* [NoSQL SQL Reference Manual](https://docs.oracle.com/en/database/other-databases/nosql-database/21.2/sqlreferencefornosql/sql-reference-guide.pdf)
154153
155154
156155
## Acknowledgements

demo-events/webinar/tv-streaming-service-queries/create-populate-tables/create-populate-tables.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ the top-level shows array and also the `date` field inside the episodes arrays,
9292
info.shows[].showId as integer,
9393
info.shows[].seriesInfo[].episodes[].date as string);
9494
````
95-
See the NoSQL documentaion [here](https://docs.oracle.com/en/database/other-databases/nosql-database/22.1/sqlreferencefornosql/indexes.html) for more details
96-
about creating
97-
indexes on arrays
9895

9996
3. View the description of the tables created.
10097
```

demo-events/webinar/tv-streaming-service-queries/explore-run-queries/explore-run-queries.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The query returns the number of users in USA that have shown an interest in the
5656
5757
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.
5858
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.
6060
6161
The query could also have been written equivalently like this:
6262
@@ -74,13 +74,13 @@ condition `$element.showId = 16` selects the show whose id is 16. Since the path
7474
expression `u.info.shows[$element.showId = 16]` returns a set of shows (at most one
7575
show in this case), rather than a boolean value, the exists operator is needed to
7676
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
7878
expressions.
7979
8080
Both of the above (equivalent) queries uses the `idx_country_showid_date` index.
8181
Both of the query conditions are pushed to the index. In fact, the index is
8282
“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
8484
how indexes are used by queries.
8585
8686
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.
300300
301301
The query also illustrates the use of a sequence aggregation function (`seq_sum`)
302302
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)
304304
for details on sequence aggregation functions.
305305
306306
8. More complex conditions on nested arrays
@@ -492,7 +492,7 @@ The query uses `idx_showid_seasonNum_minWatched` as a covering index.
492492
493493
* [Oracle NoSQL Database page](https://www.oracle.com/database/nosql-cloud.html)
494494
* [Java API Reference Guide](https://docs.oracle.com/en/cloud/paas/nosql-cloud/csnjv/index.html)
495-
* [NoSQL SQL Reference Manual](https://docs.oracle.com/en/database/other-databases/nosql-database/22.1/sqlreferencefornosql/sql-reference-guide.pdf)
495+
* [NoSQL SQL Reference Manual](https://docs.oracle.com/en/database/other-databases/nosql-database/24.1/sqlreferencefornosql/sql-reference-guide.pdf)
496496
497497
498498
## Acknowledgements

examples-nosql-node-sdk/demo-graphql-nosql/graphql_nosql/graphql-oracle-nosql.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ async function createBlogHelper(input) {
6969
async function updateBlogHelper(id, input) {
7070
// Because we are using GENERATED ALWAYS AS IDENTITY I am using UPDATE command
7171
// We can use the command putIfPresent in other cases - see updateBlogHelperWithoutSeq
72-
// https://docs.oracle.com/en/database/other-databases/nosql-database/19.5/java-driver-table/inserting-identity-values-programmatically.html
7372
//const preparedStmt = Object.assign({ __proto__: globalPreparedStmt.__proto__ }, globalPreparedStmt);
7473
const preparedStmt = globalPreparedStmt.copyStatement();
7574
preparedStmt.bindings = {

examples-nosql-python-sdk/fastapi-oracle-nosql-example/myfapi.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ def get_connection():
5757

5858
def create_table ():
5959
# Learn more https://nosql-python-sdk.readthedocs.io/en/stable/tables.html
60-
# Learn more https://docs.oracle.com/en/database/other-databases/nosql-database/23.3/nsdev/schema-flexibility-oracle-nosql-database.html
6160
statement = 'create table if not exists fapi_items(item_id LONG, primary key(item_id)) AS JSON COLLECTION'
6261
request = TableRequest().set_statement(statement).set_table_limits( TableLimits(20, 10, 5))
6362
result = handle.do_table_request(request, 40000, 3000)

0 commit comments

Comments
 (0)