-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: updating local copy of oracle db data
- Loading branch information
1 parent
a70d9c7
commit a0cc90a
Showing
8 changed files
with
3,879 additions
and
329 deletions.
There are no files selected for viewing
1,225 changes: 1,018 additions & 207 deletions
1,225
legacy/src/test/resources/db/migration/V1__init.sql
Large diffs are not rendered by default.
Oops, something went wrong.
293 changes: 171 additions & 122 deletions
293
legacy/src/test/resources/db/migration/V2__full_client.sql
Large diffs are not rendered by default.
Oops, something went wrong.
43 changes: 43 additions & 0 deletions
43
legacy/src/test/resources/db/migration/V3__pre_packages.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
CREATE OR REPLACE TYPE THE."SIL_ERROR_PARAMS" AS VARRAY(50) OF VARCHAR2(500); | ||
|
||
CREATE OR REPLACE TYPE THE."SIL_ERROR_MESSAGE" AS OBJECT | ||
( | ||
DATABASE_FIELD VARCHAR2(50), | ||
MESSAGE VARCHAR2(250), | ||
PARAMS SIL_ERROR_PARAMS, | ||
WARNING_FLAG VARCHAR2(1) | ||
); | ||
|
||
CREATE OR REPLACE TYPE THE."SIL_ERROR_MESSAGES" AS VARRAY(100) OF SIL_ERROR_MESSAGE; | ||
|
||
CREATE OR REPLACE PACKAGE THE.client_constants AS | ||
|
||
TYPE REF_CUR_T IS REF CURSOR; | ||
|
||
C_AUDIT_INSERT CONSTANT VARCHAR2(3) := 'INS'; | ||
C_AUDIT_UPDATE CONSTANT VARCHAR2(3) := 'UPD'; | ||
C_AUDIT_DELETE CONSTANT VARCHAR2(3) := 'DEL'; | ||
|
||
END client_constants; | ||
|
||
CREATE OR REPLACE TYPE THE."CLIENT_GENERIC_STRING_VARRAY" AS VARRAY(4000) OF VARCHAR2(255); | ||
CREATE OR REPLACE TYPE THE."CLIENT_REORG_RESULTS" AS VARRAY(1000) OF client_reorg_result; | ||
|
||
CREATE OR REPLACE TYPE THE."CLIENT_REORG_RESULT" AS OBJECT | ||
( | ||
TABLE_NAME VARCHAR2(30) | ||
, ROWS_UPDATED NUMBER(20) | ||
); | ||
|
||
CREATE SEQUENCE client_dba_seq | ||
START WITH 1 | ||
INCREMENT BY 1 | ||
NOCACHE | ||
NOCYCLE; | ||
|
||
|
||
CREATE SEQUENCE client_contact_seq | ||
START WITH 1 | ||
INCREMENT BY 1 | ||
NOCACHE | ||
NOCYCLE; |
Oops, something went wrong.