Retrieve an existing In Flight Transaction Information

get

/services/{version}/mpoints/{item}/currentInflightTransactions

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate Current In-Flight Transactions
Type: object
Title: Oracle GoldenGate Current In-Flight Transactions
Show Source
Nested Schema : currentInflightTransactions
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 2147483647
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : commitScn
SCN Number
Match One
Show Source
  • Minimum Value: 0
    Maximum Value: 9.223372036854776E18
    System Change Number(Normal Format) for Oracle Database.
    Example: 6488359
  • Minimum Length: 3
    Maximum Length: 64
    Pattern: [0-9]+[.][0-9]+
    System Change Number(Alternate Format) for Oracle Database.
    Example: 6488359.3456712
Nested Schema : scn
SCN Number
Match One
Show Source
  • Minimum Value: 0
    Maximum Value: 9.223372036854776E18
    System Change Number(Normal Format) for Oracle Database.
    Example: 6488359
  • Minimum Length: 3
    Maximum Length: 64
    Pattern: [0-9]+[.][0-9]+
    System Change Number(Alternate Format) for Oracle Database.
    Example: 6488359.3456712
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "response":{
        "$schema":"mpoints:currentInflightTransactions",
        "currentInflightTransactions":[
            {
                "scn":"0.4080896",
                "xid":"1.6.1358",
                "startTime":"2015-06-11T11:21:31.011Z",
                "extract":"EORADB1",
                "status":"Running",
                "redoRba":11829476,
                "redoSeq":202,
                "size":3,
                "redoThread":1
            },
            {
                "scn":"0.4080898",
                "xid":"2.16.1835",
                "startTime":"2015-06-11T11:21:31.564Z",
                "extract":"EORADB1",
                "status":"Running",
                "redoRba":11830800,
                "redoSeq":202,
                "size":7,
                "redoThread":1
            }
        ]
    },
    "messages":[
    ],
    "links":[
    ]
}
Back to Top