List SDO_GEOR_ADMIN Package Functions

get

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

List all the available MDSYS.SDO_GEOR_ADMIN package functions that can be invoked through the REST API.

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

200 Response

List of function names.
Body ()
Root Schema : functionNameResponse
Type: object
Show Source
Nested Schema : items
Type: array
Show Source

401 Response

Authentication information is missing or invalid
Headers
Back to Top

Examples

The following is an example on how to list available function names for SDO_GEOR_ADMIN package by submitting a GET request using cURL.

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

The following shows an example of the list of SDO_GEOR_ADMIN package functions supported by this REST endpoint:

{
  "items" : [ "CHECKSYSDATAENTRIES", "ISGEORASTERENABLED", "ISRDTNAMEUNIQUE",
  "LISTDANGLINGRASTERDATA", "LISTGEORASTERCOLUMNS", "LISTGEORASTEROBJECTS",
  "LISTGEORASTERTABLES", "LISTRDT", "LISTREGISTEREDRDT",
  "LISTUNREGISTEREDRDT",   "MAINTAINSYSDATAENTRIES", "REGISTERGEORASTERCOLUMNS",
  "REGISTERGEORASTEROBJECTS" ]
 }   
Back to Top