Skip to content

Commit 9986cd4

Browse files
Merge pull request #1476 from oracle-devrel/data_development_compliance_changes
Data development compliance changes and updates 18.11.2024
2 parents 1ee2dd4 + 0c70c9f commit 9986cd4

File tree

19 files changed

+188
-133
lines changed

19 files changed

+188
-133
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Using APEX, developers don't need to be experts in a vast array of technologies
66

77
Reviewed: 14.02.2024
88

9+
# Table of Contents
10+
1. [Team Publications](#team-publications)
11+
2. [Useful Links](#useful-links)
12+
913
# Team Publications
1014

1115
- [APEX Do it Yourself latest post](https://www.linkedin.com/posts/sonnemeyer_do-it-yourselfupload-your-time-booking-activity-7178658201943314432-1f2x?utm_source=share&utm_medium=member_desktop)

data-platform/data-development/apex/oci-service-integration-rest-apis/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
REST APIs are used to integrate with OCI Cloud Services from APEX. understanding the nuances of the APIs and OCI authentication can be somewhat complex. The main challenge in our experience has been translating Documentation into Implementation.
44

5-
Reviewed: 10.06.2024
5+
Reviewed: 18.11.2024
6+
7+
# When to use this asset?
8+
Use this asset when you need to integrate Oracle APEX with OCI Cloud Services via REST APIs to automate tasks, manage resources, or access data stored in OCI services. This asset is ideal when your application requires operations such as uploading files to OCI Object Storage, querying data from Autonomous Databases, or managing OCI resources like compute instances or network configurations. It’s particularly useful for applications that need secure, scalable, and programmatic access to OCI services without requiring direct user interaction or manual handling of OCI resources. Use this asset to streamline cloud operations, automate workflows, or enable APEX apps to communicate with OCI in real time.
9+
10+
# How to use this asset?
11+
This asset enables the integration of Oracle APEX with OCI Cloud Services using REST APIs. To use it, you need to set up authentication by generating API signing keys and obtaining necessary OCI identifiers (Tenancy OCID, User OCID, Compartment OCID, and API key fingerprint). Once authenticated, you can install the asset in APEX, configure it with OCI service endpoints, and use APEX’s REST capabilities or PL/SQL to interact with OCI services like Object Storage or Autonomous Database.
612

713
# Table of Contents
814

data-platform/data-development/apex/oci-services-integration-non-rest/README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@ REST APIs are used to integrate with OCI Cloud Services from APEX. However, ther
44

55
This section will highlight other integration considerations, posts and useful places to get a project going.
66

7-
Reviewed: 10.06.2024
7+
Reviewed: 18.11.2024
8+
9+
# When to use this asset?
10+
Use this asset when you need to integrate Oracle APEX with services like Identity Cloud Service (IDCS) for authentication, Oracle Analytics Cloud (OAC) for embedding analytics and reports, Oracle Digital Assistant (ODA) for chatbot functionality, or OCI AI Services for adding generative AI features. These methods are ideal when pre-built connectors and simpler integration approaches are more efficient than REST APIs, especially for tasks like SSO setup, real-time data visualization, or interactive AI-driven features in APEX.
11+
12+
13+
# How to use this asset?
14+
To use this asset, follow specific integration steps based on the service you're working with:
15+
16+
- Set up SSO with IDCS for secure authentication in APEX.
17+
- Embed OAC for analytics or report generation, using APEX to pass data or manage visualizations.
18+
- Integrate ODA to add chatbot functionality to your APEX apps, allowing natural language interaction.
19+
- Configure Generative AI with Select AI to enable intelligent automation and AI features in APEX.
20+
821

922
# Table of Contents
1023

data-platform/data-development/devops-database/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Every development team's goal: (Operations)
1010
- Delivering a few change requests at a time to end users
1111
- Through a series of high-quality releases on a regular cadence
1212

13-
Reviewed: 05.04.2024
13+
Reviewed: 18.11.2024
1414

1515
# Table of Contents
1616

data-platform/data-development/devops-database/continuous-deployment/ora-containers/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ ADB free container image comes pre-built with the following components exactly l
1313

1414
Autonomous Database Free Container Image is now available on [Oracle Container Registry](https://container-registry.oracle.com/ords/f?p=113:4:110784766203219:::RP,4:P4_REPOSITORY,AI_REPOSITORY,P4_REPOSITORY_NAME,AI_REPOSITORY_NAME:2223,2223,Oracle%20Autonomous%20Database%20Free,Oracle%20Autonomous%20Database%20Free&cs=3iytyP0Ctunr3v0-nv7dCZfzaGtZqSixvp3qYkAgNzNQ1JCtVBaBA_eK_z3EK1p272JeUVOsEGVfeSXev4b1QEg), you can perform local development with an ADB-free container image and have the ability to merge your work later in a cloud instance.
1515

16-
Reviewed: 08.04.2024
16+
If you are looking about information about Oracle Database running on Kubernetes check this content [here](../../../ora-database-microservices/ora-kubernetes/README.md)
17+
18+
Reviewed: 18.11.2024
1719

1820
# Table of Contents
1921

data-platform/data-development/devops-database/continuous-deployment/pipelines/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Chef has a suite of automation solutions for both infrastructure as code, and de
1818
-[Puppet](https://www.puppet.com/)
1919
Puppet enables you to deploy and manage infrastructure.
2020

21-
Reviewed: 10.06.2024
22-
21+
Reviewed: 18.11.2024
2322
# Table of Contents
2423

2524
1. [Useful Links](#useful-links)

data-platform/data-development/devops-database/continuous-deployment/unit-testing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
It allows for automated testing of Packages, Functions, Procedures, Triggers, Views, and anything else that can be executed and observed from PL/SQL.
99

10-
Reviewed: 10.06.2024
10+
Reviewed: 18.11.2024
1111

1212
# Table of Contents
1313

data-platform/data-development/devops-database/continuous-integration/db-supporting-features/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The primary PL/SQL packages are:
2424

2525
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.
2626

27-
Reviewed: 10.06.2024
27+
Reviewed: 18.11.2024
2828

2929
# Table of Contents
3030
1. [Team Publications](#team-publications)

data-platform/data-development/devops-database/continuous-integration/sqlcl-liquibase/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You can add the functionality to read these specialized changelogs to the Liquib
1313
# The Liquibase Feature in SQLcl
1414
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.
1515

16-
Reviewed: 10.06.2024
16+
Reviewed: 18.11.2024
1717

1818
# Table of Contents
1919

data-platform/data-development/forms-apex-modernization/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ always straightforward and in many cases involves a coexistence of both technolo
99

1010
Providing links to public useful documentation and articles/blogs written by Oracle APEX Advocates and Product Managers.
1111

12-
Reviewed: 14.11.2024
12+
13+
Reviewed: 18.11.2024
14+
1315

1416
# Table of Contents
1517
- [Team Publications](#team-publications);

0 commit comments

Comments
 (0)