Introduction
This article describes an overview of how to integrate Oracle GoldenGate Cloud Service (GGCS) in terms of populating or loading data into Oracle Business Intelligence Cloud Service (BICS) from On-Premises. Both GGCS and BICS are Platform as a Service (PaaS) services that runs in the Oracle Public Cloud (OPC).
For GGCS to be integrated with BICS, the following prerequisites must be met:
- BICS has to be provisioned with Database Cloud Service (DBCS) not Schema as a Service as it’s data repository
- GGCS has to be provisioned and attached to the DBCS used by BICS as it’s data repository
- The DBCS used by BICS for its data repository and GGCS must be in the same domain
The high level steps for this On-Premises data with GGCS & BICS data integration are as follows:
- Configure and Start GGCS Oracle GoldenGate Manager on the OPC side
- Configure and Start SSH proxy server process on the On-Premises
- Configure and Start On-Premises OGG Extract process for the tables to be moved to BICS DBCS
- Configure and Start On-Premises OGG Extract Data Pump process
- Configure and Start GGCS Replicat process on the OPC side to deliver data into BICS database
The following assumptions have been made during the writing of this article:
- The reader has a general understanding of Windows and Unix platforms.
- The reader has basic knowledge of Oracle GoldenGate products and concepts.
- The reader has a general understanding of Cloud Computing Principles
- The reader has basic knowledge of Oracle Cloud Services
- The reader has basic knowledge of Oracle GoldenGate Cloud Service (GGCS)
- The reader has basic knowledge of Oracle Business Intelligence Cloud Service (BICS)
- The reader has a general understanding of Network Computing Principles
Main Article
GoldenGate Cloud Service (GGCS)
The GoldenGate Cloud Service (GGCS), is a cloud based real-time data integration and replication service, which provides seamless and easy data movement from various On-Premises relational databases to databases in the cloud with sub-second latency while maintaining data consistency and offering fault tolerance and resiliency.
Figure 1: GoldenGate Cloud Service (GGCS) Architecture Diagram
Business Intelligence Cloud Service (BICS)
Oracle Business Intelligence Cloud Service (BICS) is a robust platform designed for customers who wants to simplify the creation, management, and deployment of analyses through interactive visualizations, data model designs, reports and dashboards. It extends customer analytics—enhances data while ensuring consistency, and maintaining governance through standard definitions, advanced calculations and predictive analytical functions.
Figure 2: On-Premises to Business Intelligence Cloud Service (BICS) Architecture Diagram
As illustrated on figure 2, there are various ways or tools to integrate or move data between On-Premises and Business Intelligence in the cloud, such as Oracle Data Integration (ODI) application, Data Sync for BICS, even direct upload via secured File Transfer, and Remote Data Connector (RDC) are just some of the examples to access data from On-Premises and integrate or move it into BICS platform in the cloud.
For near real time integration of On-Premises data to Business Intelligence Cloud Service (BICS); GoldenGate replication platform is the tool to use and this article will present an overview on how to configure or load data from On-Premises to Business Intelligence Cloud Service (BICS) via GoldenGate Cloud Service (GGCS).
Oracle GoldenGate Replication
The high level steps for GoldenGate replication between On-Premises (Source) data with BICS (Target) data via GGCS are as follows:
- Configure and Start GGCS Oracle GoldenGate Manager on the OPC side
- Configure and Start SSH proxy server process on the On-Premises
- Configure and Start On-Premises OGG Extract process for the tables to be moved to BICS DBCS
- Configure and Start On-Premises OGG Extract Data Pump process
- Configure and Start GGCS Replicat process on the OPC side to deliver data into BICS database
GGCS Oracle GoldenGate Manager
To start configuring Oracle GoldenGate on the GGCS instance, the manager process must be running. Manager is the controller process that instantiates the other Oracle GoldenGate processes such as Extract, Extract Data Pump, Collector and Replicat processes.
Connect to GGCS Instance through ssh and start the Manager process via the GoldenGate Software Command Interface (GGSCI).
[oracle@ogg-wkshp db_1]$ ssh -i mp_opc_ssh_key opc@mp-ggcs-bics-01
[opc@bics-gg-ggcs-1 ~]$ sudo su – oracle
[oracle@bics-gg-ggcs-1 ~]$ cd $GGHOME
Note: By default, “opc” user is the only one allowed to ssh to GGCS instance. We need to switch user to “oracle” via “su” command to manage the GoldenGate processes. The environment variable $GGHOME is pre-defined in the GGCS instance and it’s the directory where GoldenGate was installled.
[oracle@bics-gg-ggcs-1 gghome]$ ggsci
Oracle GoldenGate Command Interpreter for Oracle
Version 12.2.0.1.160517 OGGCORE_12.2.0.1.0OGGBP_PLATFORMS_160711.1401_FBO
Linux, x64, 64bit (optimized), Oracle 12c on Jul 12 2016 02:21:38
Operating system character set identified as UTF-8.
Copyright (C) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
GGSCI (bics-gg-ggcs-1) 1> start mgr
Manager started.
GGSCI (bics-gg-ggcs-1) 2> info mgr
Manager is running (IP port bics-gg-ggcs-1.7777, Process ID 79806).
Important Note: By default, GoldenGate processes doesn’t accept any connection remotely. To enable connection from other hosts via the SSH proxy we need to add an ACCESS RULE to the Manager parameter File (MGR.prm) to allow connectivity through the public interface of the GGCS Instance.
Here’s the MGR.prm file used in this example:
–###############################################################
–## MGR.prm
–## Manager Parameter Template
— Manager port number
— PORT <port number>
PORT 7777
— For allocate dynamicportlist. Here the range is starting from
— port n1 through n2.
Dynamicportlist 7740-7760
— Enable secrule for collector
ACCESSRULE, PROG COLLECTOR, IPADDR 129.145.1.180, ALLOW
— Purge extract trail files
PURGEOLDEXTRACTS ./dirdat/*, USECHECKPOINTS, MINKEEPHOURS 24
— Start one or more Extract and Replicat processes automatically
— after they fail. –AUTORESTART provides fault tolerance when
— something temporary interferes with a process, such as
— intermittent network outages or programs that interrupt access
— to transaction logs.
— AUTORESTART ER *, RETRIES <x>, WAITMINUTES <y>, RESETMINUTES <z>
— This is to specify a lag threshold that is considered
— critical, and to force a warning message to the error log.
— Lagreport parameter specifies the interval at which manager
— checks for extract / replicat –lag.
–LAGREPORTMINUTES <x>
–LAGCRITICALMINUTES <y>
–Reports down processes
–DOWNREPORTMINUTES <n>
–DOWNCRITICAL
Start SSH Proxy Server on the On-Premises
By default, the only access allowed to GGCS is via ssh, so to allow communication of GoldenGate processes between On-Premises and GGCS instance we would need to run SSH proxy server on the on-premises side to communicate to GoldenGate processes on the GGCS side.
Start the SSH proxy via the following ssh command:
[oracle@ogg-wkshp db_1]$ ssh -i keys/mp_opc_ssh_key -v -N -f -D 127.0.0.1:8888 opc@129.145.1.180 > ./dirrpt/socks.log 2>&1
Command Syntax: ssh –i -v –N –f –D listening_ip_address:listening_tcp_port_address @ > output_file 2>&1
SSH Command Options Explained:
- -i = Private Key file
- -v = Verbose Mode
- -N = Do no execute remote command; mainly used for port forwarding
- -f = Run ssh process in the background
- -D Specifies to run as local dynamic application level forwarding; act as a SOCKS proxy server on a specified interface and port
- listening_ip_address = Host Name or Host IP Address where this SOCKS proxy will listen (127.0.0.1 is the loopback address)
- listening_tcp_port_address = TCP/IP Port Number to listen on
- 2>&1 = Redirect Stdout and Stderr to the output file
-
Verify the SSH Socks Proxy server has started successfully.
-
- Check the socks proxy output file via the “cat” utility and look for the messages “Local connections to forwarded…” and “Local forwarding listening on port ”. Make sure it’s connected to GGCS instance and listening on the right IP and port address.
[oracle@ogg-wkshp db_1]$ cat ./dirrpt/socks.log
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 129.145.1.180 [129.145.1.180] port 22.
debug1: Connection established.
debug1: identity file keys/mp_opc_ssh_key type 1
debug1: loaded 1 keys
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host ‘129.145.1.180’ is known and matches the RSA host key.
debug1: Authentication succeeded (publickey).
debug1: Local connections to 127.0.0.1:8888 forwarded to remote address socks:0
debug1: Local forwarding listening on 127.0.0.1 port 8888.
debug1: channel 0: new [port listener]
debug1: Entering interactive session.
Configure On-Premises Oracle GoldenGate
For our test, we shall use the following tables for source (On-Premises) and target (GGCS delivering to BICS DBCS):
CREATE TABLE ACCTN
(
ACCOUNT_NO NUMBER (10,0) NOT NULL
, BALANCE NUMBER (8,2) NULL
, PREVIOUS_BAL NUMBER (8,2) NULL
, LAST_CREDIT_AMT NUMBER (8,2) NULL
, LAST_DEBIT_AMT NUMBER (8,2) NULL
, LAST_CREDIT_TS TIMESTAMP NULL
, LAST_DEBIT_TS TIMESTAMP NULL
, ACCOUNT_BRANCH NUMBER (10,0) NULL
, CONSTRAINT PK_ACCTN
PRIMARY KEY
(
ACCOUNT_NO
)
USING INDEX
)
;
CREATE TABLE ACCTS
(
ACCOUNT_NO NUMBER (10,0) NOT NULL
, FIRST_NAME VARCHAR2 (25) NULL
, LAST_NAME VARCHAR2 (25) NULL
, ADDRESS_1 VARCHAR2 (25) NULL
, ADDRESS_2 VARCHAR2 (25) NULL
, CITY VARCHAR2 (20) NULL
, STATE VARCHAR2 (2) NULL
, ZIP_CODE NUMBER (10,0) NULL
, CUSTOMER_SINCE DATE NULL
, COMMENTS VARCHAR2 (30) NULL
, CONSTRAINT PK_ACCTS
PRIMARY KEY
(
ACCOUNT_NO
)
USING INDEX
)
;
CREATE TABLE BRANCH
(
BRANCH_NO NUMBER (10,0) NOT NULL
, OPENING_BALANCE NUMBER (8,2) NULL
, CURRENT_BALANCE NUMBER (8,2) NULL
, CREDITS NUMBER (8,2) NULL
, DEBITS NUMBER (8,2) NULL
, TOTAL_ACCTS NUMBER (10,0) NULL
, ADDRESS_1 VARCHAR2 (25) NULL
, ADDRESS_2 VARCHAR2 (25) NULL
, CITY VARCHAR2 (20) NULL
, STATE VARCHAR2 (2) NULL
, ZIP_CODE NUMBER (10,0) NULL
, CONSTRAINT PK_BRANCH
PRIMARY KEY
(
BRANCH_NO
)
USING INDEX
)
;
CREATE TABLE TELLER
(
TELLER_NO NUMBER (10,0) NOT NULL
, BRANCH_NO NUMBER (10,0) NOT NULL
, OPENING_BALANCE NUMBER (8,2) NULL
, CURRENT_BALANCE NUMBER (8,2) NULL
, CREDITS NUMBER (8,2) NULL
, DEBITS NUMBER (8,2) NULL
, CONSTRAINT PK_TELLER
PRIMARY KEY
(
TELLER_NO
)
USING INDEX
)
;
Start On-Premises Oracle GoldenGate Manager
[oracle@ogg-wkshp db_1]$ ggsci
Oracle GoldenGate Command Interpreter for Oracle
Version 12.1.2.1.10 21604177 23004694_FBO
Linux, x64, 64bit (optimized), Oracle 12c on Apr 29 2016 01:06:03
Operating system character set identified as UTF-8.
Copyright (C) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
GGSCI (ogg-wkshp.us.oracle.com) 1> start mgr
Manager started.
GGSCI (ogg-wkshp.us.oracle.com) 2> info mgr
Manager is running (IP port ogg-wkshp.us.oracle.com.7809, Process ID 8998).
Configure and Start Oracle GoldenGate Extract Online Change Capture process
Before we can configure the Oracle GoldenGate Extract Online Change process, we need to enable supplemental logging for the schema/tables we need to capture on the source database via the GGCSI utility.
Enable Table Supplemental Logging via GGCSI:
GGSCI (ogg-wkshp.us.oracle.com) 1> dblogin userid tpcadb password tpcadb
Successfully logged into database.
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 2> add schematrandata tpcadb
2017-02-04 11:59:20 INFO OGG-01788 SCHEMATRANDATA has been added on schema tpcadb.
2017-02-04 11:59:20 INFO OGG-01976 SCHEMATRANDATA for scheduling columns has been added on schema tpcadb.
Note: The GGSCI “dblogin” command let’s the GGSCI session logged into the database. Your GGSCI session needs to be connected to the database before you can execute the “add schematrandata” command.
Create an Online Change Data Capture Extract Group (Process)
For this test, we will name our Online Change Data Capture group process to ETPCADB.
-> Register the Extract group with the database via GGSCI:
GGSCI (ogg-wkshp.us.oracle.com) 1> dblogin userid tpcadb password tpcadb
Successfully logged into database.
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 2> register extract etpcadb database
Extract ETPCADB successfully registered with database at SCN 3112244.
-> Create/Add the Extract Group in GoldenGate via GGSCI:
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 3> add extract etpcadb, integrated, tranlog, begin now
EXTRACT added.
Note: To edit/create the Extract Configuration/Parameter file, you need to execute “edit param <group_name>” via the GGSCI utility.
GGSCI (ogg-wkshp.us.oracle.com) 1> edit param etpcadb
Here’s the Online Change Capture Parameter (etpcadb.prm) file used in this example:
EXTRACT ETPCADB
userid tpcadb, password tpcadb
EXTTRAIL ./dirdat/ea
discardfile ./dirrpt/etpcadb.dsc, append
TABLE TPCADB.ACCTN;
TABLE TPCADB.ACCTS;
TABLE TPCADB.BRANCH;
TABLE TPCADB.TELLER;
Add a local extract trail to the Online Change Data Capture Extract Group via GGSCI
GGSCI (ogg-wkshp.us.oracle.com) 1> add exttrail ./dirdat/ea, extract etpcadb
EXTTRAIL added.
Start the Online Change Data Capture Extract Group via GGSCI
GGSCI (ogg-wkshp.us.oracle.com) 2> start extract etpcadb
Sending START request to MANAGER …
EXTRACT ETPCADB starting
Check the Status of Online Change Data Capture Extract Group via GGSCI
GGSCI (ogg-wkshp.us.oracle.com) 4> dblogin userid tpcadb password tpcadb
Successfully logged into database.
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 5> info extract etpcadb detail
EXTRACT ETPCADB Last Started 2017-02-04 12:43 Status RUNNING
Checkpoint Lag 00:00:03 (updated 00:00:07 ago)
Process ID 18259
Log Read Checkpoint Oracle Integrated Redo Logs
2017-02-04 12:50:52
SCN 0.3135902 (3135902)
Target Extract Trails:
Trail Name Seqno RBA Max MB Trail Type
./dirdat/ea 0 1418 100 EXTTRAIL
Integrated Extract outbound server first scn: 0.3112244 (3112244)
Integrated Extract outbound server filtering start scn: 0.3112244 (3112244)
Extract Source Begin End
Not Available 2017-02-04 12:39 2017-02-04 12:50
Not Available * Initialized * 2017-02-04 12:39
Not Available * Initialized * 2017-02-04 12:39
Current directory /u01/app/oracle/product/12cOGG/v1212110
Report file /u01/app/oracle/product/12cOGG/v1212110/dirrpt/ETPCADB.rpt
Parameter file /u01/app/oracle/product/12cOGG/v1212110/dirprm/etpcadb.prm
Checkpoint file /u01/app/oracle/product/12cOGG/v1212110/dirchk/ETPCADB.cpe
Process file /u01/app/oracle/product/12cOGG/v1212110/dirpcs/ETPCADB.pce
Error log /u01/app/oracle/product/12cOGG/v1212110/ggserr.log
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 6> info all
Program Status Group Lag at Chkpt Time Since Chkpt
MANAGER RUNNING
EXTRACT RUNNING ETPCADB 00:00:09 00:00:03
Configure and Start Oracle GoldenGate Extract Data Pump process
For this test, we will name our GoldenGate Extract Data Pump group process to PTPCADB.
Create the Extract Data Pump Group (Process) via GGSCI
The Extract Data Pump group process will read the trail created by the Online Change Data Capture Extract (ETPCADB) process and sends the data to the GoldenGate process running on the GGCS instance via the SSH Socks Proxy server.
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 7> add extract ptpcadb, exttrailsource ./dirdat/ea
EXTRACT added.
Note: To edit/create the Extract Configuration/Parameter file, you need to execute “edit param <group_name>” via the GGSCI utility.
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 8> edit param ptpcadb
Here’s the Extract Data Pump Parameter (ptpcadb.prm) file used in this example:
EXTRACT PTPCADB
RMTHOST 129.145.1.180, MGRPORT 7777, SOCKSPROXY 127.0.0.1:8888
discardfile ./dirrpt/ptpcadb.dsc, append
rmttrail ./dirdat/pa
passthru
table TPCADB.ACCTN;
table TPCADB.ACCTS;
table TPCADB.BRANCH;
table TPCADB.TELLER;
Add the remote trail to the Extract Data Pump Group via GGSCI
The remote trail is the location output file on the remote side (GGCS instance) used by the Extract Data Pump to write data to be read by the Replicat Delivery process and apply to the target database in this case the DBCS used as a data repository of BICS.
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 9> add rmttrail ./dirdat/pa, extract ptpcadb
RMTTRAIL added.
Start the Extract Data Pump Group via GGSCI
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 10> start extract ptpcadb
Sending START request to MANAGER …
EXTRACT PTPCADB starting
Check the Status of Extract Data Pump Group via GGSCI
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 11> info extract ptpcadb detail
EXTRACT PTPCADB Last Started 2017-02-04 13:48 Status RUNNING
Checkpoint Lag 00:00:00 (updated 00:00:03 ago)
Process ID 29285
Log Read Checkpoint File ./dirdat/ea000000
First Record RBA 0
Target Extract Trails:
Trail Name Seqno RBA Max MB Trail Type
./dirdat/pa 0 0 100 RMTTRAIL
Extract Source Begin End
./dirdat/ea000000 * Initialized * First Record
./dirdat/ea000000 * Initialized * First Record
Current directory /u01/app/oracle/product/12cOGG/v1212110
Report file /u01/app/oracle/product/12cOGG/v1212110/dirrpt/PTPCADB.rpt
Parameter file /u01/app/oracle/product/12cOGG/v1212110/dirprm/ptpcadb.prm
Checkpoint file /u01/app/oracle/product/12cOGG/v1212110/dirchk/PTPCADB.cpe
Process file /u01/app/oracle/product/12cOGG/v1212110/dirpcs/PTPCADB.pce
Error log /u01/app/oracle/product/12cOGG/v1212110/ggserr.log
GGSCI (ogg-wkshp.us.oracle.com as tpcadb@oracle) 13> info all
Program Status Group Lag at Chkpt Time Since Chkpt
MANAGER RUNNING
EXTRACT RUNNING ETPCADB 00:00:10 00:00:08
EXTRACT RUNNING PTPCADB 00:00:00 00:00:02
Configure and Start GGCS Oracle GoldenGate Delivery Process
Connect to GGCS Instance through ssh and go GoldenGate Software Command Interface (GGSCI) utility to configure GoldenGate Delivery process.
[oracle@ogg-wkshp db_1]$ ssh -i mp_opc_ssh_key opc@mp-ggcs-bics-01
[opc@bics-gg-ggcs-1 ~]$ sudo su – oracle
[oracle@bics-gg-ggcs-1 ~]$ cd $GGHOME
Note: By default, “opc” user is the only one allowed to ssh to GGCS instance. We need to switch user to “oracle” via “su” command to manage the GoldenGate processes. The environment variable $GGHOME is pre-defined in the GGCS instance and it’s the directory where GoldenGate was installled.
[oracle@bics-gg-ggcs-1 gghome]$ ggsci
Oracle GoldenGate Command Interpreter for Oracle
Version 12.2.0.1.160517 OGGCORE_12.2.0.1.0OGGBP_PLATFORMS_160711.1401_FBO
Linux, x64, 64bit (optimized), Oracle 12c on Jul 12 2016 02:21:38
Operating system character set identified as UTF-8.
Copyright (C) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
Configure GGCS Oracle GoldenGate Replicat Online Delivery process
Configure the Replicat Online Delivery group that reads the trail file that the Data Pump writes to and deliver the changes into the BICS DBCS.
Before configuring the delievery group make sure that the GGSCI session is connected to the database via the GGSCI “dblogin” command.
GGSCI (bics-gg-ggcs-1) 1> dblogin useridalias ggcsuser_alias
Successfully logged into database BICSPDB1.
Create / Add the Replicat Delivery group and in this example we will name our Replicat DElivery group to RTPCADB.
GGSCI (bics-gg-ggcs-1 as c##ggadmin@BICS/BICSPDB1) 2> add replicat rtpcadb, integrated, exttrail ./dirdat/pa
REPLICAT (Integrated) added.
Note: To edit/create the Replicat Delivery Configuration/Parameter file, you need to execute “edit param <group_name>” via the GGSCI utility.
GGSCI (bics-gg-ggcs-1 as c##ggadmin@BICS/BICSPDB1) 3> edit param rtpcadb
Here’s the GGCS Replicat Online Delivery Parameter (rtpcadb.prm) file used in this example:
REPLICAT RTPCADB
useridalias ggcsuser_alias
–Integrated parameter
DBOPTIONS INTEGRATEDPARAMS (parallelism 2)
DISCARDFILE ./dirrpt/rtpcadb.dsc, APPEND Megabytes 25
ASSUMETARGETDEFS
MAP TPCADB.ACCTN, TARGET GGCSBICS.ACCTN;
MAP TPCADB.ACCTS, TARGET GGCSBICS.ACCTS;
MAP TPCADB.BRANCH, TARGET GGCSBICS.BRANCH;
MAP TPCADB.TELLER, TARGET GGCSBICS.TELLER;
Start the GGCS Replicat Online Delivery process via GGCSI
GGSCI (bics-gg-ggcs-1 as c##ggadmin@BICS/BICSPDB1) 3> start replicat rtpcadb
Sending START request to MANAGER …
REPLICAT RTPCADB starting
Check the Status of GGCS Replicat Online Delivery process via GGSCI
GGSCI (bics-gg-ggcs-1 as c##ggadmin@BICS/BICSPDB1) 4> info replicat rtpcadb detail
REPLICAT RTPCADB Last Started 2017-02-04 17:12 Status RUNNING
INTEGRATED
Checkpoint Lag 00:00:00 (updated 00:00:45 ago)
Process ID 80936
Log Read Checkpoint File ./dirdat/pa000000000
First Record RBA 0
INTEGRATED Replicat
DBLOGIN Provided, no inbound server is defined
Inbound server status may be innacurate if the specified DBLOGIN connects to a different PDB than the one Replicat connects to.
Current Log BSN value: (no data)
Integrated Replicat low watermark: (no data)
(All source transactions prior to this scn have been applied)
Integrated Replicat high watermark: (no data)
(Some source transactions between this scn and the low watermark may have been applied)
Extract Source Begin End
./dirdat/pa000000000 * Initialized * First Record
./dirdat/pa000000000 * Initialized * First Record
Current directory /u02/data/gghome
Report file /u02/data/gghome/dirrpt/RTPCADB.rpt
Parameter file /u02/data/gghome/dirprm/rtpcadb.prm
Checkpoint file /u02/data/gghome/dirchk/RTPCADB.cpr
Process file /u02/data/gghome/dirpcs/RTPCADB.pcr
Error log /u02/data/gghome/ggserr.log
At this juncture, you now have a complete replication platform that integrates data between On-Premises and BICS DBCS via GGCS; any On-Premises changes on the table you make will be moved or integrated to the BICS Database Cloud Service via this GGCS replication platform.
Summary
This article walked through the steps to configure the Oracle GoldenGate Data Integration tool to be able to connect and extract data from On-Premise and integrate or deliver data to Business Intelligence Cloud Service (BICS) using Database Cloud Service (DBCS) as it’s data repository via GoldenGate Cloud Service (GGCS).
For further information on other ways to integrate or move data from On-Premises to BICS, check the following A-Team articles:
- Integrating Oracle Data Integrator (ODI) On-Premises with Cloud Services
- Using BICS Data Sync to Extract Data from Oracle OTBI, either Cloud or On-Premise
- Loading Data into Oracle BI Cloud Service using BI Publisher Reports and REST Web Services
All content listed on this page is the property of Oracle Corp. Redistribution not allowed without written permission