Skip to content

Commit

Permalink
Merged in some recent improvements from another environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveIves committed Jul 5, 2024
1 parent 521bad9 commit 26a3853
Show file tree
Hide file tree
Showing 20 changed files with 26,215 additions and 25,586 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
/DAT/EMPLOYEE.IS1_250K
SendToVMS.Settings.bat
/VMS/REPLICATOR_SETUP.COM
/DAT/*.7z

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
Expand Down
50,000 changes: 25,000 additions & 25,000 deletions DAT/EMPLOYEE.SEQ

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions DAT/EMPLOYEE.XDL
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RECORD
KEY 0
!Primary key
START 1
LENGTH 6
LENGTH 8
TYPE alpha
ORDER ascending
NAME "EMP_ID"
Expand All @@ -41,7 +41,7 @@ KEY 0

KEY 1
!Alternate key #1
START 47
START 49
LENGTH 15
TYPE alpha
ORDER ascending
Expand All @@ -57,7 +57,7 @@ KEY 1

KEY 2
!Alternate key #2
START 27
START 29
LENGTH 20
TYPE nocase
ORDER ascending
Expand All @@ -73,7 +73,7 @@ KEY 2

KEY 3
!Alternate key #3
START 216
START 218
LENGTH 2
TYPE alpha
ORDER ascending
Expand All @@ -89,7 +89,7 @@ KEY 3

KEY 4
!Alternate key #4
START 218
START 220
LENGTH 5
TYPE alpha
ORDER ascending
Expand Down
19 changes: 10 additions & 9 deletions RPS/REPLICATION.SCH
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

; SYNERGY DATA LANGUAGE OUTPUT
;
; REPOSITORY : D:\SqlReplication\RPS\rpsmain.ism
; : D:\SqlReplication\RPS\rpstext.ism
; : Version 11.1.1b
; REPOSITORY : C:\DEV_SYNERGEX\SqlReplication\RPS\rpsmain.ism
; : C:\DEV_SYNERGEX\SqlReplication\RPS\rpstext.ism
; : Version 12.4.1
;
; GENERATED : 30-JAN-2020, 18:12:04
; : Version 11.1.1c
; EXPORT OPTIONS : [ALL-K-R-A]
; GENERATED : 04-JUL-2024, 16:11:31
; : Version 12.3.1
; EXPORT OPTIONS : [ALL]


Format PHONE Type NUMERIC "(XXX) XXX-XXXX" Justify LEFT
Expand All @@ -18,7 +18,8 @@ Enumeration REPLICATION_INSTRUCTION
LOAD_TABLE 5, CREATE_AND_LOAD_TABLE 6, DELETE_ALL_ROWS 7,
DELETE_TABLE 8, SHUTDOWN 9, INSERT_RELATIVE 10,
UPDATE_RELATIVE 11, ADD_INDEXES 12, DELETE_INDEXES 13,
BULK_LOAD_TABLE 14, BULK_LOAD_FIRST_1000,
BULK_LOAD_TABLE 14, BULK_LOAD_FIRST_1000 15,
BULK_LOAD_TO_TEMP_TABLE 16, DELETE_TEMP_TABLE 17,
DELETE_ALL_INSTRUCTIONS 20, CLOSE_FILE 21, CHANGE_INTERVAL 22,
CREATE_CSV 23, CYCLE_LOG 24, OPEN_FILE 25,
DELETE_FIRST_INSTRUCTION 26
Expand All @@ -34,7 +35,7 @@ Template DEPARTMENT_NAME Type ALPHA Size 50
Description "Department name"
Required

Template EMPLOYEE_ID Type DECIMAL Size 6
Template EMPLOYEE_ID Type DECIMAL Size 8
Description "Employee ID"
Prompt "Employee ID"
Required
Expand Down Expand Up @@ -169,7 +170,7 @@ Field EMP_ADDRESS_ZIP Type DECIMAL Size 5
Prompt "Zip code" Info Line "What is the employees home ZIP code?"
ODBC Name ZIP_CODE

Field NONAME_001 Type ALPHA Size 78 Language Noview Script Noview
Field NONAME_001 Type ALPHA Size 76 Language Noview Script Noview
Report Noview Nonamelink
Description "Spare space"
ODBC Name SPARE_SPACE_1
Expand Down
4 changes: 4 additions & 0 deletions SRC/LIBRARY/DatabaseCommunicationException.dbl
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,17 @@ namespace ReplicationLibrary
public class DatabaseCommunicationException extends Exception

public method DatabaseCommunicationException
required in aRoutine, string
required in aDatabaseErrorNumber, int
required in aDatabaseErrorMessage, string
proc
this.FailingRoutine = aRoutine
this.DatabaseErrorNumber = aDatabaseErrorNumber
this.DatabaseErrorMessage = aDatabaseErrorMessage
endmethod

public readwrite property FailingRoutine, string

public readwrite property DatabaseErrorNumber, int

public readwrite property DatabaseErrorMessage, string
Expand Down
Loading

0 comments on commit 26a3853

Please sign in to comment.