Skip to content

Commit 8175ed9

Browse files
Merge branch 'main' into update-main-page-sqlcode
2 parents 17eb535 + 8325931 commit 8175ed9

50 files changed

Lines changed: 418 additions & 304 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

data-platform/data-development/ords/README.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
# Oracle Rest Data Services (ORDS)
22

3-
ORDS is a Java application that enables developers with SQL and database skills to develop REST APIs for Oracle Database,
4-
Oracle Database 12c JSON Document store and higher and the Oracle NoSQL Database
3+
Oracle REST Data Services (ORDS) is a Java application that enables developers with SQL and database skills to develop REST APIs for Oracle Database,
4+
Oracle Database 12c JSON Document store and higher and the Oracle NoSQL Database.
55

6-
Reviewed: 05.05.2026
6+
Oracle Database Actions is a web-based interface that uses Oracle REST Data Services to provide development, data studio, administration and monitoring features for Oracle Autonomous Database, Oracle Database Cloud Services and on-premises Oracle Database. Database Actions comes already configured, via ORDS, on Autonomous Database.
7+
8+
Reviewed: 10.06.2026
79

810
# Table of Contents
911

1012
1. [Team Publications](#team-publications)
1113
2. [Useful Links](#useful-links)
12-
14+
<br>
15+
<br>
16+
1317
# Team Publications
1418

1519
- [ORDS version 26.1 is now available, time to upgrade!](https://www.oracle.com/database/sqldeveloper/technologies/db-actions/download/)
@@ -18,10 +22,21 @@ Reviewed: 05.05.2026
1822
- Article demonstrating the performance of Customer Managed ORDS combined with the Autonomous Database
1923
- [How ORDS help with DevOps](https://www.youtube.com/watch?v=GIRdoGlqIDE)
2024
- [Scalability with Customer Managed ORDS on ADB](https://medium.com/oracledevs/cloud-scalability-using-customer-managed-oracle-rest-data-service-with-autonomous-json-275fa06e8d22)
25+
<br>
26+
<br>
27+
28+
## Team Member Blog Sites
29+
30+
[Paolo Paolucci](https://medium.com/@ppaolucc)
31+
<br>
32+
[Victor Mendo](https://medium.com/@vmendo/)
33+
<br>
34+
<br>
2135

2236
# Useful Links
2337

2438
- [ORDS - Latest Release](https://www.oracle.com/tools/ords/ords-relnotes-26.1.0.html)
39+
- [SQL Developer Web/Database Actions](https://docs.oracle.com/en/database/oracle/sql-developer-web/)
2540
- [Webinar - ORDS & DevOps](https://www.youtube.com/watch?v=GIRdoGlqIDE)
2641
- [High Availability (HA) with ORDS](https://docs.oracle.com/en/solutions/deploy-ords-ha-oci/index.html)
2742
- A deployable HA stack showcasing flexibility of ORDS
@@ -31,6 +46,8 @@ Reviewed: 05.05.2026
3146
- [Jeff Smith ORDS Main Page](https://www.thatjeffsmith.com/archive/tag/ords/)
3247
- Main reference page on Oracle REST Data Services curated by Product Manager Jeff Smith
3348
- [Follow The Coffee - Chris Hoina Blog](https://followthecoffee.com/)
49+
<br>
50+
<br>
3451

3552
# License
3653

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# SQL Developer Web - Oracle Database Actions Access
2+
3+
Oracle Database Actions is formerly known as SQL Developer Web and is a web-based interface that uses Oracle REST Data Services to provide development, data studio, administration and monitoring features for Oracle Autonomous Database, Oracle Database Cloud Services and on-premises Oracle Database. Database Actions comes already configured, via ORDS, on Autonomous Database.
4+
5+
Reviewed: 10.06.2026
6+
7+
Database Actions, (here also abbreviated as DB Actions), runs in Oracle REST Data Services and access to it is provided through schema-based authentication. To access Database Actions, you must sign in as a database user whose schema has been enabled for Database Actions.
8+
9+
## User Authentication - prerequisites
10+
11+
User access to Database Actions is described as follows
12+
- In Oracle Autonomous AI Database databases, the ADMIN user is pre-enabled;
13+
- To enable another database user's schema it has to be [REST-enabled first](https://docs.oracle.com/en/database/oracle/sql-developer-web/sdwad/accessing-sql-developer-web.html#GUID-63D265FC-7500-4F88-8870-1C60E0A286FF).
14+
15+
Key important information, when REST-enabling a schema user to authenticate via DB Actions are:
16+
- <i><b>schema_name</i></b> : database Schema name (in uppercase)
17+
- <i><b>schema_alias</i></b>: alias for the schema name which will appear in the URL the user will make use when authenticating to database via DB Actions.
18+
19+
<b>Note</b>: as a best practice, it is not recommended to name the schema alias as the schema name itself: this, as a security measure to avoid schema name exposure.
20+
21+
When signing in to Database Actions you can connect via ORDS Schema alias defined in the REST-enabling schema configuration as follows:
22+
- <b>Database Actions Sign-in</b> page --> <b>Advanced</b> in the Path Field enter: <schema_alias>, then login and password of the database schema when <i>schema_name</i> and <i>schema_alias</i> differ (as recommended).
23+
24+
To connect to a given database in a multiple database pool scenario, when Database Actions is configured via an ORDS-Standalone, (or together with Tomcat/WebLogic), in a non-Autonomous AI Database (or ADB customer-managed configuration) the steps are as follows:
25+
- <b>Database Actions Sign-in page</b> --> <b>Advanced</b> in the Path Field enter:
26+
27+
<i><database_pool_name>/<schema_name></i>
28+
29+
then schema name and password in the login-password portion.
30+
<br>
31+
<br>
32+
33+
# Useful Links
34+
- [Signing-in to Database Actions](https://docs.oracle.com/en/database/oracle/sql-developer-web/25.4/sdweb/signing-database-actions.html)
35+
- [Jeff Smith PM's Blog - SQL Developer Web](https://www.thatjeffsmith.com/sql-developer-web/)
36+
<br>
37+
<br>
38+
39+
# License
40+
41+
Copyright (c) 2026 Oracle and/or its affiliates.
42+
43+
Licensed under the Universal Permissive License (UPL), Version 1.0.
44+
45+
See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/main/LICENSE) for more details.
46+

data-platform/data-development/sql/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Structured Query Language (SQL) is the standard programming language used for ma
66

77
PL/SQL, the Oracle procedural extension of SQL, is a portable, high-performance transaction-processing language. PL/SQL offers several advantages over other programming languages: from being tightly integrated with SQL to leveraging High Performance and High Productivity. PL/SQL is a portable and scalable Procedural Language which also increase Manageability and support for Object Oriented Programming.
88

9-
SQL and in general Database Development Tools like SQL Command Line Interface (SQLcl) and SQL Developer Extension for Visual Studio Code leverages the Oracle user Developers, together with the tight integration of these two tools with Model Context Protocol (MCP) Server tooling to allow AI Agents to interact with the database. SQL Developer Web (a.k.a Database Actions) for Autonomous Database and other non-ADB ORDS-enabled Oracle database provide an additional IDE for Developers and Administrators.
9+
SQL and in general Database Development Tools like SQL Command Line Interface (SQLcl) and SQL Developer Extension for Visual Studio Code leverages the Oracle user Developers, together with the tight integration of these two tools with Model Context Protocol (MCP) Server tooling to allow AI Agents to interact with the database. SQL Developer Web (a.k.a Database Actions) for Autonomous Database and other non-ADB ORDS-enabled Oracle database provide an additional IDE for Developers and Administrators. Furthermore, Database Tools OCI-managed service to offer a set of reusable connections to any Oracle Database.
1010

1111
Below you'll find an index to all the sections available in this repository, along with a brief introduction to what you can expect in each section.
1212

@@ -35,7 +35,7 @@ The SQL Tips section is dedicated to providing practical advice and best practic
3535

3636
## SQL Oracle26ai
3737

38-
Explore the latest advancements with Oracle's cutting-edge AI capabilities in the [SQL Oracle23ai](sql-oracle23ai/README.md) section (now rebranded Oracle26ai). Here, you will find:
38+
Explore the latest advancements with Oracle's cutting-edge AI capabilities in the [SQL Oracle26ai](sql-oracle26ai/README.md) section (now rebranded Oracle26ai). Here, you will find:
3939
- New features and enhancements in Oracle26ai
4040
- Tutorials on integrating AI with your SQL queries
4141
- Case studies and real-world applications of Oracle26ai

data-platform/data-development/sql/sql-oracle23ai/README.md

Lines changed: 0 additions & 103 deletions
This file was deleted.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# SQL Oracle Database 26ai
2+
This section covers the new features introduced in the Oracle Database 26ai release (as a rebrand from 23ai and starting with 23.26.00 release), focusing on enhancements and functionalities in SQL for application development.
3+
This asset contains a brief set of Oracle Database 26ai new features examples which are then included in a specific asset file for consultation.
4+
The list of New Features will be periodically updated and adjusted.
5+
6+
Reviewed: 25.05.2026
7+
8+
# Table of Contents
9+
10+
1. [Team Publications](#team-publications)
11+
2. [Useful Links](#useful-links)
12+
13+
# Team Publications
14+
- [23ai New Features Series - Part 1](https://www.linkedin.com/posts/sonnemeyer_23aispecialists-23ainewsabrpart1-developer-activity-7196221427056889856-3HF2?utm_source=share&utm_medium=member_desktop)
15+
- [23ai New Features Series - Part 2](https://www.linkedin.com/posts/cristina-varas-menadas-591825119_oracle-oracle23ai-sql-activity-7198945654272864256-wduQ/?utm_source=share&utm_medium=member_ios)
16+
- [23ai New Features Series - Part 3](https://www.linkedin.com/posts/sonnemeyer_23aispecialists-23ainewsabrpart3-developer-activity-7201958687005982721-Oo3B?utm_source=share&utm_medium=member_desktop)
17+
- [23ai New Features Series - Part 4](https://www.linkedin.com/posts/sonnemeyer_23aispecialists-23ainewsabrpart4-teammates-activity-7204946957843267584-x664?utm_source=share&utm_medium=member_desktop)
18+
- [23ai New Features Series - Part 5](https://www.linkedin.com/posts/ppaolucci_cristinavarasmenadas-sonjameyer-activity-7207374755878887425-a--C?utm_source=share&utm_medium=member_desktop)
19+
20+
# Useful Links
21+
- [Oracle Database 26ai New Features](https://apex.oracle.com/database-features/)
22+
23+
# Release Information
24+
- **Version**: 26ai
25+
- **Applicable Offerings**: All Oracle Database offerings
26+
27+
For more detailed information, please visit the [Oracle Database Features](https://apex.oracle.com/database-features/) page.
28+
29+
# License
30+
31+
Copyright (c) 2026 Oracle and/or its affiliates.
32+
33+
Licensed under the Universal Permissive License (UPL), Version 1.0.
34+
35+
See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/main/LICENSE) for more details.

data-platform/data-development/sql/sql-tools/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Oracle SQL Tools
22

3-
This section covers Oracle SQL Tools: from SQL Developer Desktop to SQL Developer Web on GUI ADB Database Actions to SQLcl.
3+
This section covers Oracle SQL Tools: from SQL Developer Desktop to SQL Developer for Visual Studio Code, from SQL Developer Web on GUI ADB Database Actions to SQLcl.
44
Providing links to public useful documentation and articles/blogs written by Oracle SQL and Database Advocates and Product Managers.
55
We use this asset when we want to explore the various SQL IDE development tools like SQL Developer, sqlcl and VS Code with SQL Developer extentions.
66

data-platform/data-integration/oracle-goldengate/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Reviewed: 04.06.2026
1010
2. [Useful Links](#useful-links)
1111

1212
# Team Publications
13+
- [Real-Time AML/Fraud Triage with Oracle GoldenGate AIService and Vector Search](https://medium.com/@nishar.soneji/real-time-aml-fraud-triage-with-oracle-goldengate-aiservice-and-vector-search-4f3dc9c3755a)
14+
- The blog shows a real-time pattern for operational AML/fraud triage using Oracle GoldenGate AIService, OCI Generative AI embeddings, Oracle Database vector search, and a lightweight analyst review page.
15+
1316
- [Edition-Aware Upgrade Control with GoldenGate](https://medium.com/@nishar.soneji/edition-aware-upgrade-control-with-oracle-goldengate-48fd5114bb7d)
1417
- How to control installer-edition replication during Oracle EBR-based application upgrades
1518

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Database Cloud@Customer
2+
3+
Oracle Cloud@Customer brings Oracle Cloud services into your data center, combining the innovation, automation, and flexibility of Oracle Cloud with the security and control of on-premises deployment. It enables organizations to modernize their IT infrastructure while meeting data residency, regulatory, and latency requirements without compromising on cloud capabilities.
4+
5+
# Useful Links
6+
7+
- [Oracle Cloud@Customer Landing Page](https://www.oracle.com/cloud/cloud-at-customer/)
8+
9+
- [Exadata Cloud@Customer](https://github.com/oracle-devrel/technology-engineering/tree/main/data-platform/exadata-cloud-at-customer/)
10+
11+
Reviewed: 06/11/26
12+
13+
# License
14+
15+
Copyright (c) 2026 Oracle and/or its affiliates.
16+
17+
Licensed under the Universal Permissive License (UPL), Version 1.0.
18+
19+
See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/main/LICENSE) for more details.

0 commit comments

Comments
 (0)