Execute SDO_GEOR_ADMIN Package Functions

post

{server}/georaster/v1/{datasource}/sdo_geor_admin/{functionName}

Execute MDSYS.SDO_GEOR_ADMIN package functions with the specified function names. The parameters to the function is specified in the request body in JSON. See Spatial GeoRaster Developer's Guide for the usage of each function and its parameters.

Request

Path Parameters
  • The name of the functions in SDO_GEOR_ADMIN package
    Allowed Values: [ "checksysdataentries", "getuniquerdtname", "isgeorasterenabled", "isrdtnameunique", "listdanglingrasterdata", "listgeorastercolumns", "listgeorasterobjects", "listgeorastertables", "listrdt", "listregisteredrdt", "listunregisteredrdt", "maintainsysdataentries", "registergeorastercolumns", "registergeorasterobjects" ]
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Match One Schema
Show Source
Nested Schema : isrdtnameunique_param
Type: object
Show Source
Nested Schema : listgeorastercolumns_param
Type: object
Show Source
Nested Schema : listgeorasterobjects_param
Type: object
Show Source
Nested Schema : registergeorastercolumns_param
Type: object
Show Source
Nested Schema : registergeorasterobjects_param
Type: object
Show Source
Back to Top

Response

200 Response

Result of the function
Body ()
Root Schema : functionReturn
Type: object
Show Source
Nested Schema : ReturnValue
Match One Schema
Show Source
Nested Schema : sdo_number_array
Type: array
Show Source
Nested Schema : sdo_string2_array
Type: array
Show Source
Nested Schema : sdo_string2_arrayset
Type: array
Show Source
Nested Schema : sdo_geometry
Type: object
Show Source

401 Response

Authentication information is missing or invalid
Headers
Back to Top

Examples

The following is an example on how to list GeoRaster column by submitting a POST request using cURL.

curl -X POST "https://localhost:8080/oraclespatial/georaster/v1/datasource1/sdo_geor_admin/listGeorasterColumns" -H "Cookie: JSESSIONID=<jsessionid_value>"

The following is an example of a response body for the above request:

{
   "ReturnStatus" : "Success",
   "ReturnValue" : [ [ "IMAGE_TABLE", "IMAGE", "registered" ] ]
}
Back to Top