Skip to content

Commit

Permalink
Merge pull request #1491 from oracle-devrel/synu-data-development-rev…
Browse files Browse the repository at this point in the history
…iew-20112024

Update documentation links to latest release
  • Loading branch information
colivares1974 authored Nov 20, 2024
2 parents 68e323f + 355db66 commit eceb930
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
14 changes: 7 additions & 7 deletions data-platform/data-development/apex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Using APEX, developers don't need to be experts in a vast array of technologies to deliver sophisticated solutions. Just focus on solving the problem and let APEX take care of the rest.

Reviewed: 14.02.2024
Reviewed: 20.11.2024

# Table of Contents
1. [Team Publications](#team-publications)
Expand Down Expand Up @@ -36,19 +36,19 @@ Reviewed: 14.02.2024
- [APEX EVENTS](https://apex.oracle.com/pls/apex/r/apex_pm/apex-events/events)
- [APEX Office Hours](https://apex.oracle.com/en/community/office-hours/)
- [Official APEX Landing Page](https://apex.oracle.com/en/)
- [What's New in the latest Release APEX 23.2](https://docs.oracle.com/en/database/oracle/apex/23.2/htmrn/new-features.html)
- [What's New in the latest Release APEX 24.1](https://docs.oracle.com/en/database/oracle/apex/24.1/htmrn/new-features.html)
- [APEX best practice architecture](https://docs.oracle.com/solutions/?q=apex&cType=reference-architectures&sort=date-desc&lang=en)
- [APEX Managing Application Performance](https://docs.oracle.com/en/database/oracle/apex/23.2/htmdb/managing-application-performance.html#GUID-1684F55B-7782-4B1F-96AB-0D41BCBDB1BA)
- [APEX Managing Application Security](https://docs.oracle.com/en/database/oracle/apex/23.2/htmdb/managing-application-security.html#GUID-417EAE67-7A36-4AE0-816B-D28716829F96)
- [APEX Managing Application Performance](https://docs.oracle.com/en/database/oracle/apex/24.1/htmdb/managing-application-performance.html)
- [APEX Managing Application Security](https://docs.oracle.com/en/database/oracle/apex/24.1/htmdb/managing-application-security.html)
- [Training and Certification](https://apex.oracle.com/en/learn/training/)
- [Tutorials](https://apex.oracle.com/en/learn/tutorials/)

## Documentation

- [APEX Documentation](https://docs.oracle.com/en/database/oracle/apex/23.2/index.html)
- [APEX API Reference](https://docs.oracle.com/en/database/oracle/apex/23.2/aeapi/#Oracle%C2%AE-APEX)
- [APEX Documentation]https://docs.oracle.com/en/database/oracle/apex/24.1/index.html)
- [APEX API Reference](https://docs.oracle.com/en/database/oracle/apex/24.1/api-references.html)
- [APEX Universal Theme](https://apex.oracle.com/pls/apex/r/apex_pm/ut/getting-started)
- [APEX Managing Application Backups](https://docs.oracle.com/en/database/oracle/apex/22.1/htmdb/managing-application-backups.html)
- [APEX Managing Application Backups](https://docs.oracle.com/en/database/oracle/apex/24.1/htmdb/managing-application-backups.html)
- [APEX Application Development Lifecycle Technical Paper](https://www.oracle.com/a/tech/docs/apex-lifecycle-management-v3.pdf)

# License
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ The primary PL/SQL packages are:
[DBMS_METADATA](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_METADATA.html#GUID-F72B5833-C14E-4713-A588-6BDF4D4CBA2A)
- The DBMS_METADATA package provides a way for you to retrieve metadata from the database dictionary as XML or creation DDL and to submit the XML to re-create the object. Use this to generate the data definition of schema objects.

## [APEX_EXPORT](https://docs.oracle.com/en/database/oracle/apex/23.2/aeapi/APEX_EXPORT.html#GUID-6A4628A6-9F86-4394-9938-87A7FFFC7BC8)
## [APEX_EXPORT](https://docs.oracle.com/en/database/oracle/apex/24.1/aeapi/APEX_EXPORT.html)
- The APEX_EXPORT package provides APIs to export the definitions of applications, files, feedback, and workspaces to text files.

## [DBMS_CLOUD_REPO](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/dbms-cloud-repo-package.html#GUID-F8F0037B-6451-4742-9144-9FCE44459F64)
- The DBMS_CLOUD_REPO package provides for the use of and management of cloud-hosted code repositories from Oracle Database. Supported cloud code repositories include GitHub, AWS CodeCommit, and Azure Repos. This package is only available in OCI Autonomous Database deployments and along with integration with repositories, it provides a wrapper to DBMS_METADATA for Code Commit & Install from the repository.

## ORDS
- [ORDS REST APIs for APEX](https://docs.oracle.com/en/database/oracle/oracle-rest-data-services/23.4/orrst/api-oracle-apex.html) A set of ORDS REST APIs to retrieve APEX Workspace & Application statistics, details with support to export workspaces, applications and application components.
- [ORDS REST APIs for APEX](https://docs.oracle.com/en/database/oracle/oracle-rest-data-services/24.3/orrst/api-oracle-apex.html) A set of ORDS REST APIs to retrieve APEX Workspace & Application statistics, details with support to export workspaces, applications and application components.
- ORDS_MODULE provides PL/SQL APIs to manage ORDS objects, OAuth clients, privileges, roles and modules. Currently, ORDS_MODULE is only documented in the code of the various packages, functions and views.

The simplest deployment and set of APIS for Continuous Integration are available for APEX on Autonomous Database services, with Cloud Repository integration & Schema export via DBMS_CLOUD_REPO, and APEX applications via APEX_EXPORT. These two packages provide extensive capabilities to commit code changes into the repository with little work required to manage connectivity, generation upload and commit operations.

Reviewed: 18.11.2024
Reviewed: 20.11.2024

# Table of Contents
1. [Team Publications](#team-publications)
Expand All @@ -40,7 +40,7 @@ Reviewed: 18.11.2024
## Documentation
- [DBMS_METADATA](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_METADATA.html#GUID-F72B5833-C14E-4713-A588-6BDF4D4CBA2A "Oracle Database 19c PL/SQL Packages and Types Reference")
- [DBMS_METADATA](https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/using-oracle-dbms_metadata-api.html#GUID-D9B1300F-B21D-416E-8B9B-C542195EF249 "Oracle Database 19c Using the Metadata APIs")
- [APEX_EXPORT](https://docs.oracle.com/en/database/oracle/apex/23.2/aeapi/APEX_EXPORT.html#GUID-6A4628A6-9F86-4394-9938-87A7FFFC7BC8 "APEX 23.2 API Reference")
- [APEX_EXPORT](https://docs.oracle.com/en/database/oracle/apex/24.1/aeapi/APEX_EXPORT.html "APEX 24.1 API Reference")
- [DBMS_CLOUD_REPO](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/dbms-cloud-repo-package.html#GUID-F8F0037B-6451-4742-9144-9FCE44459F64 "Autonomous Database Supplied Package Reference")

## Blogs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You can add the functionality to read these specialized changelogs to the Liquib
# The Liquibase Feature in SQLcl
SQLcl Liquibase with Oracle Database provides extended functionality to the Liquibase experience compared to the open-source Liquibase client. The Liquibase feature in SQLcl enables you to execute commands to generate a changelog for a single object or for a full schema in specialized changelogs and changesets.

Reviewed: 18.11.2024
Reviewed: 20.11.2024

# Table of Contents

Expand All @@ -26,8 +26,8 @@ Reviewed: 18.11.2024

# Useful Links

- [Oracle Documentation - Oracle SQLcl Release 23.3](https://docs.oracle.com/en/database/oracle/sql-developer-command-line/23.3/sqcug/using-liquibase.html#GUID-4CA25386-E442-4D9D-B119-C1ACE6B79539 "Using Liquibase")
- [SQLcl 23.3 Downloads](https://www.oracle.com/database/sqldeveloper/technologies/sqlcl/download/)
- [Oracle Documentation - Oracle SQLcl Release 24.3.1](https://docs.oracle.com/en/database/oracle/sql-developer-command-line/24.3/sqcug/using-liquibase.html "Using Liquibase")
- [SQLcl Downloads](https://www.oracle.com/database/sqldeveloper/technologies/sqlcl/download/)
- [Liquibase Community](https://www.liquibase.org/)
- [Liquibase Documentation](https://docs.liquibase.com/home.html "What is Liquibase?")
- [Liquibase Documentation](https://docs.liquibase.com/start/release-notes/home.html "Release Notes")
Expand Down
6 changes: 3 additions & 3 deletions data-platform/data-development/ords/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ORDS is a Java application that enables developers with SQL and database skills to develop REST APIs for Oracle Database,
Oracle Database 12c JSON Document store and higher and the Oracle NoSQL Database

Reviewed: 26.07.2024
Reviewed: 20.11.2024

# Table of Contents

Expand All @@ -13,15 +13,15 @@ Reviewed: 26.07.2024

# Team Publications

- [ORDS version 24.2 is now available, time to upgrade!](https://www.oracle.com/database/sqldeveloper/technologies/db-actions/download/)
- [ORDS version 24.3.1 is now available, time to upgrade!](https://www.oracle.com/database/sqldeveloper/technologies/db-actions/download/)
- [JSON & Customer Managed ORDS with ADB](https://medium.com/@devpiotrekk/cloud-scalability-using-customer-managed-oracle-rest-data-service-with-autonomous-json-275fa06e8d22)
- Article demonstrating the performance of Customer Managed ORDS combined with the Autonomous Database
- [How ORDS help with DevOps](https://www.youtube.com/watch?v=GIRdoGlqIDE)
- [Scalability with Customer Managed ORDS on ADB](https://medium.com/oracledevs/cloud-scalability-using-customer-managed-oracle-rest-data-service-with-autonomous-json-275fa06e8d22)

# Useful Links

- [ORDS - Latest Release](https://www.oracle.com/tools/ords/ords-relnotes-24.2.html)
- [ORDS - Latest Release](https://www.oracle.com/tools/ords/ords-relnotes-24.3.1.html)
- [Webinar - ORDS & DevOps](https://www.youtube.com/watch?v=GIRdoGlqIDE)
- [High Availability (HA) with ORDS](https://docs.oracle.com/en/solutions/deploy-ords-ha-oci/index.html)
- A deployable HA stack showcasing flexibility of ORDS
Expand Down

0 comments on commit eceb930

Please sign in to comment.