Skip to content

Commit 9fe6caa

Browse files
authored
24.2.16 (#39)
* issue #38 remove ANSI join to avoid bug in 19.27 DB * update of app to APEX 24.2.6
1 parent 055f0f8 commit 9fe6caa

File tree

379 files changed

+896
-832
lines changed

Some content is hidden

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

379 files changed

+896
-832
lines changed

doc/install_guide.md

Lines changed: 46 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
# APEX-SERT 24.1 Installation Guide
22

3-
## PREFACE
3+
[Preface](#1-preface)
4+
5+
[Installation](#2-installation)
6+
7+
[Post Installation](#3-post-installation)
8+
9+
[Remove APEX-SERT](#4-uninstall-apex-sert)
10+
11+
## 1 PREFACE
412

513
## 1.1 Audience
614

715
The APEX SERT Installation Guide is provided as a reference to install APEX-SERT. It is intended for system administrators and/or DBAs. You will require access to the SYS database account and APEX Internal workspace credentials in order to install APEX-SERT.
816

9-
## 1.2. Conventions
17+
## 1.2 Conventions
1018

1119
The following typeset conventions are used throughout this document:
1220

@@ -21,13 +29,13 @@ button, which corresponds to the value of the Bold text.
2129

2230
**<ins>Bold Underline</ins>** is used to refer to a label or section of a page. Bold Underline labels will typically denote where an action should occur, not the action itself.
2331

24-
## INSTALLATION
32+
## 2 INSTALLATION
2533

2634
Installing APEX-SERT is a simple process that is done entirely via a SQL script. The script will not only install the required database objects, but also create the APEX-SERT workspace and install the APEX-SERT applications. There is only a single manual step that is required to complete the installation.
2735

28-
### 2.1. Requirements
36+
### 2.1 Requirements
2937

30-
#### 2.1.1. Software Versions
38+
#### 2.1.1 Software Versions
3139

3240
#### 2.1.1.1 Database
3341

@@ -64,7 +72,7 @@ some links:
6472

6573
once you have a working DocGen service, you can set preferences in the APEX-SERT administration application by navigating to Setup → Preferences and providing the required data values.
6674

67-
#### 2.1.2. Resources
75+
#### 2.1.2 Resources
6876

6977
In order to install APEX-SERT, you will need access to the following system resources:
7078

@@ -76,7 +84,7 @@ In order to install APEX-SERT, you will need access to the following system reso
7684

7785
If you do not have access to all of the above, then it is not possible to install APEX-SERT. Please consult with your local system administrators and/or DBAs for assistance. 
7886

79-
#### 2.1.3. Tablespaces
87+
#### 2.1.3 Tablespaces
8088

8189
While not necessary, many DBAs prefer to put vendor products in their own tablespace. If you decide to do this, you must create the new tablespace before installing APEX-SERT.
8290

@@ -108,7 +116,7 @@ SQL> @create_acdc_schema.sql ACDC <password> DATA
108116

109117
Now, you have a validly configured account that can install APEX-SERT
110118

111-
#### 2.3. Installation
119+
#### 2.3 Installation
112120

113121
APEX-SERT installs via a single installation script. This script must be run as the installing schema ( we will reference ACDC), and only takes a few minutes to complete if you are executing the installation locally to the database. 
114122

@@ -124,10 +132,14 @@ Define your desired AOP server:  You can simply define as localhost if you do n
124132
########################################################################
125133
# using SERT is strongly recommended as a workspace name
126134
sert_apex_workspace = sert
135+
#
136+
# keep sert_apex_workspace_id blank to auto-allocate ID
137+
# original ID is 32049826282261068
138+
sert_apex_workspace_id =
127139
sert_admin_user = sert_admin
128140
# leave the next two ID's blank to automatically allocate an application ID
129-
sert_app_id = 2000
130-
sert_admin_id = 2001
141+
sert_app_id = 2100
142+
sert_admin_id = 2101
131143
# define YOUR AOP hostname
132144
# uncomment if you are using AOP, and provide the URL to AOP printserver
133145
sert_aop_url = https://localhost:8010
@@ -173,7 +185,7 @@ It also creates an APEX workspace called SERT (or the name you supplied in the s
173185

174186
`@install.sql`
175187

176-
## 3. POST-INSTALLATION
188+
## 3 POST-INSTALLATION
177189

178190
### 3.1 Publish the extension to all current workspaces
179191

@@ -206,7 +218,7 @@ end;
206218
/
207219
```
208220

209-
### 3.2. Manually subscribe a workspace
221+
### 3.2 Manually subscribe a workspace
210222

211223
to do this manually for a single workspace:
212224

@@ -228,3 +240,25 @@ to do this manually for a single workspace:
228240
<!-- ![GIF image clicking on extension builder menu > Sert > Evaluations ](./images/launch-sert.gif) -->
229241

230242
<img src="./images/launch-sert.gif" alt="GIF of user launching SERT" width=50% height=50%>
243+
244+
## 4 Uninstall APEX-SERT
245+
246+
to uninstall APEX-SERT, you can simply execute the uninstall script to remove APEX-SERT, it's workspace, menu extension, schema and all liquibase logs.
247+
248+
From the root directory of the APEX-SERT installation source:
249+
250+
log in as the user that installed APEX-SERT:
251+
252+
```sql
253+
SQL> @product/sert/uninstall/uninstall_sert.sql
254+
SQL Format Cleared
255+
Clear changelog tables
256+
Drop APEX-SERT workspace
257+
Drop sert schemas
258+
dropping user sert_core
259+
dropping user sert_pub
260+
261+
262+
PL/SQL procedure successfully completed.
263+
SQL> exit
264+
```

doc/release_notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Release Notes
2+
## 24.2.16
3+
4+
* [GAT-465] - EVAL_RESULTS_EXC_PUB_V will not compile with ANSI join on PDB 19.27 #38
5+
* [GAT-440] - Provide uninstall script / documentation #12
26

37
## 24.2.15
48

product/sert/apex/application/f2100/application/comments.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: F3155752294F35E693C617B1C03365EDAA502B9311E39DCFD98F3CDA8216B9BB
1+
-- file_checksum: E31FA1424A364D4F013632D8F1DA3818A3BF269A509424C4D0FA6C4CC6C7C464
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.5'
14+
,p_release=>'24.2.6'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/create_application.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
-- file_checksum: AA4B0FA0CFD23EA7FC20CB22E6A3B852DC6C6320CC38ABCB76361E207B50A0BE
1+
-- file_checksum: 20703B57525A63047957AFCA5FD72D98EB9AEFFDB3519CC9BBCE690142C699E2
22
prompt --application/create_application
33
begin
44
-- Manifest
55
-- FLOW: 2100
66
-- Manifest End
77
wwv_flow_imp.component_begin (
88
p_version_yyyy_mm_dd=>'2024.11.30'
9-
,p_release=>'24.2.5'
9+
,p_release=>'24.2.6'
1010
,p_default_workspace_id=>32049826282261068
1111
,p_default_application_id=>2100
1212
,p_default_id_offset=>43721417861278263
@@ -55,7 +55,7 @@ wwv_imp_workspace.create_flow(
5555
,p_substitution_value_01=>'APEX-SERT'
5656
,p_file_prefix => nvl(wwv_flow_application_install.get_static_app_file_prefix,'')
5757
,p_files_version=>204
58-
,p_version_scn=>44997293662873
58+
,p_version_scn=>45029884746733
5959
,p_print_server_type=>'INSTANCE'
6060
,p_file_storage=>'DB'
6161
,p_is_pwa=>'Y'

product/sert/apex/application/f2100/application/delete_application.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: DAC7D17918C98F783616634B4152362F5AA13FBAF026DFC6E263AC0019EE0CB7
1+
-- file_checksum: 3B8DB7C317D8203FB76AECC4F7F603E78C4E3919643E025C542AF03C06800E59
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -8,7 +8,7 @@ prompt --application/delete_application
88
begin
99
wwv_flow_imp.component_begin (
1010
p_version_yyyy_mm_dd=>'2024.11.30'
11-
,p_release=>'24.2.5'
11+
,p_release=>'24.2.6'
1212
,p_default_workspace_id=>32049826282261068
1313
,p_default_application_id=>2100
1414
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/deployment/buildoptions.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: E0C7773A614319A4BEB6B2B87816A30DB36A690A20324BF4E3DC42DA279639C2
1+
-- file_checksum: 2DCDD4A33DF5379A6CD605C869DC4720E706250C1E7C8A14642F6F2D1C7C1ECF
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.5'
14+
,p_release=>'24.2.6'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/deployment/checks.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: 5C205F868F1CE4E349AC99C20CA4E9D83B9317B9227C784146F721DD2C6125D1
1+
-- file_checksum: 778E92A52F8EEF8DCF0849BE131C7BF6F0BB527FC4391B77D02481D659923A60
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.5'
14+
,p_release=>'24.2.6'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/deployment/definition.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: 75FA1B4A7D2514B582A8401D379E3BBC9ED9F334378C10D5F51EBA3E62C991B7
1+
-- file_checksum: B05EDB1038375AE670DBB206F477F003D6059BFE77DF453ABAB20924F0878697
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.5'
14+
,p_release=>'24.2.6'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/pages/page_00000.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: BDD7BD84300AA7B67577C8D37553A5597A4634C04128C16269E17F6512D46F66
1+
-- file_checksum: A05DD2174E686B708C71E1C68D0ED4AC66653AEB93CDA62D8583ECF7E1DB37E0
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.5'
14+
,p_release=>'24.2.6'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/pages/page_00001.sql

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: 06BE9BB3FA51B79B4ECCE6D7C990D1B7EA71AD3020DAF5CCC8E1CA18CBA4132D
1+
-- file_checksum: 8C8F583842FBCDCBC5C5904ABB86EC7FC0FC54DEDAE1E6EB1C9B4515F77F1643
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.5'
14+
,p_release=>'24.2.6'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263
@@ -189,6 +189,7 @@ wwv_flow_imp_page.create_region_column(
189189
,p_source_type=>'DB_COLUMN'
190190
,p_source_expression=>'APPLICATION_NAME'
191191
,p_data_type=>'VARCHAR2'
192+
,p_session_state_data_type=>'VARCHAR2'
192193
,p_display_sequence=>270
193194
,p_is_group=>false
194195
,p_use_as_row_header=>false

0 commit comments

Comments
 (0)