Browse Oracle database instance using instance id
Select
SaaS
Customer Managed
This operation is used to browse a oracle database.
Path Parameters
- instanceId integer required
Id of the Oracle instance to be browsed
- application/json
Request Body required
Request Body
- path string
Default value:
\\
The database path on which browse is to be performed, Example, PDB level, Tablespace Level
- pointInTime integer
Unix timestamp of database browse time
entity object
instanceId integer requiredOracle InstanceId
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example1
Schema
oracleContent object[]
tableSpace stringTablespaces found during browse operation
fileType integerFile type browsed based on input path parameter
{
"oracleContent": [
{
"tableSpace": "string",
"fileType": 0
}
]
}
{
"oracleContent": [
{
"tableSpace": "SYSAUX",
"fileType": 5
},
{
"tableSpace": "UNDOTBS01",
"fileType": 5
},
{
"tableSpace": "USERS",
"fileType": 5
},
{
"tableSpace": "SYSTEM",
"fileType": 5
},
{
"tableSpace": "TBS01",
"fileType": 5
}
]
}
Bad Request
- application/json
- application/xml
- Schema
- Example
Schema
- string
Request body is empty or format is invalid
- Schema
- Example (from schema)
Schema
- object
<root/>
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
- errorMessage string
- errorCode integer
{
"errorMessage": "string",
"errorCode": 0
}
{
"errorMessage": "Access Denied",
"errorCode": 5
}
Loading...