Retrieve Replicat

get

/services/{version}/replicats/{replicat}

Retrieve the details of an replicat process.

Request

Path Parameters
  • Minimum Length: 1
    Maximum Length: 8
    Pattern: ^[A-Z_$][A-Z0-9_$]*$

    The name of the replicat. Replicat names are upper case, begin with an alphabetic character followed by up to seven alpha-numeric characters.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]

Response

Supported Media Types

200 Response

The details of the extract were retrieved successfully.

Body ()
Root Schema : Oracle GoldenGate Replicat
Type: object
Title: Oracle GoldenGate Replicat
Show Source
Nested Schema : begin
Starting point for data processing
Default Value: now
Match One
Show Source
  • Allowed Values: [ "now" ]
  • Minimum Length: 20
    Maximum Length: 32
    Pattern: ^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$
  • begin-x-oneOf[2]
Nested Schema : checkpoint
Location for checkpoint data
Match One
Show Source
  • Allowed Values: [ "files" ]
    Use the local filesystem to store checkpoint data
  • checkpoint-x-oneOf[1]
    Use the specified table to store checkpoint information
Nested Schema : config
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 32767
Show Source
Nested Schema : credentials
Credentials for target database
Default Value: oracle.doceng.json.BetterJsonNull@38ebee36
Match One
Show Source
Nested Schema : mode
Mode of replication
Match One
Show Source
Nested Schema : source
Source of data to process
Match One
Show Source
Nested Schema : begin-x-oneOf[2]
Type: object
Show Source
  • Allowed Values: [ "type:position/atTrailRBA" ]
  • Minimum Value: 0
    Maximum Value: 2147483647
    Default Value: 0
    Offset in trail sequence file
  • Minimum Value: 0
    Maximum Value: 999999999
    Default Value: 0
    Trail file sequence number
Nested Schema : checkpoint-x-oneOf[1]
Type: object
Use the specified table to store checkpoint information
Show Source
Nested Schema : table
Match Any
Show Source
  • Minimum Length: 3
    Maximum Length: 261
    Pattern: ^([^.*?"]{1,128}|["].{1,128}["])[.]([^.*?"]{1,128}|["].{1,128}["])$
  • Minimum Length: 5
    Maximum Length: 392
    Pattern: ^([^.*?"]{1,128}|["].{1,128}["])[.]([^.*?"]{1,128}|["].{1,128}["])[.]([^.*?"]{1,128}|["].{1,128}["])$
Nested Schema : credentials-x-oneOf[0]
Type: object
Show Source
  • Allowed Values: [ "ogg:credentialsRef" ]
  • Minimum Length: 1
    Maximum Length: 30
    Pattern: ^[a-zA-Z][a-zA-Z0-9_#$]*$
  • Minimum Length: 1
    Maximum Length: 30
    Default Value: OracleGoldenGate
    Pattern: ^[a-zA-Z][a-zA-Z0-9_#$]*$
Nested Schema : mode-x-oneOf[0]
Type: object
Creates a standard, non-integrated Replicat
Show Source
Nested Schema : mode-x-oneOf[1]
Type: object
(Oracle Only) Creates a standard, integrated Replicat
Show Source
Nested Schema : mode-x-oneOf[2]
Type: object
(Oracle Only) Coordinated Replicat
Show Source
Nested Schema : source-x-oneOf[1]
Type: object
Show Source
  • Minimum Length: 1
    Maximum Length: 2
    Pattern: ^[A-Za-z][A-Za-z0-9]?$
    The name of the trail
  • Minimum Length: 1
    Maximum Length: 255
    The path where the trail data is stored
Nested Schema : source-x-oneOf[2]
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/replicats/REP2",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/replicats/REP2",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/replicat",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:replicat",
        "checkpoint":{
            "table":"oggadmin.checkpoints"
        },
        "config":[
            "Replicat    REP2",
            "UseridAlias oggadmin",
            "Map         oggadmin.*,",
            "  Target    oggadmin.*;"
        ],
        "credentials":{
            "alias":"oggadmin"
        },
        "mode":{
            "parallel":false,
            "type":"nonintegrated"
        },
        "registration":"none",
        "source":{
            "name":"X2",
            "path":"/u02/ogg/Local/var/lib/data"
        },
        "status":"running"
    }
}