Pre-General Availability: 2022-08-18. This documentation is in pre-General Availability status and is intended for demonstration and preliminary use only. It may not be specific to the hardware on which you are using the software. Oracle Corporation and its affiliates are not responsible for and expressly disclaim all warranties of any kind with respect to this documentation and will not be responsible for any loss, costs, or damages incurred due to the use of this documentation.

Get query execution result

get

/20210831/projects/{projectId}/queryExecutions/{queryExecutionId}/result

Request

Supported Media Types
Path Parameters
Query Parameters
  • Minimum Value: 1
    Maximum Value: 1000
    The maximum number of items to return.
    Default Value: 100
  • Minimum Length: 1
    The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.
Header Parameters
  • The client request ID for tracing.
  • Minimum Length: 1
    Maximum Length: 64
    A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations. For example, if a resource has been deleted and purged from the system, then a retry of the original creation request might be rejected.
Back to Top

Response

Supported Media Types

200 Response

successful operation
Headers
  • For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : QueryExecutionResult
Type: object
asynchronous query execution result
Show Source
Nested Schema : FieldsCollection
Type: object
A list of fields that make up the schema.
Show Source
Nested Schema : rows
Type: array
array of results
Show Source
Nested Schema : items
Type: array
A list of fields that make up the schema.
Show Source
  • FieldSchema
    A field schema decribes a particular field in the object schema. It contains at least a name and a data type, but potentially can be extended with some additional or more complex properties.
Nested Schema : FieldSchema
Type: object
A field schema decribes a particular field in the object schema. It contains at least a name and a data type, but potentially can be extended with some additional or more complex properties.
Show Source
  • AdditionalFlags
    Additional flags which further clarifies the primary and logical types, or provide data type constraints.
  • Allowed Values: [ "BOOLEAN", "INT", "LONG", "FLOAT", "DOUBLE", "BYTES", "STRING", "ENUM", "ARRAY", "MAP", "FIXED" ]
    Data type of the field. Possible values include STRING, INTEGER, ...
  • Minimum Length: 1
    Maximum Length: 255
    Name of the field
  • Allowed Values: [ "DECIMAL", "UUID", "DATE", "TIME_MILLIS", "TIME_MICROS", "TIMESTAMP_MILLIS", "TIMESTAMP_MICROS", "LOCAL_TIMESTAMP_MILLIS", "LOCAL_TIMESTAMP_MICROS", "DURATION" ]
    Logical data type of the field which extends or clarifies the primary data type.
  • Minimum Length: 1
    Maximum Length: 255
    Oracle DB data type of the field which extends or clarifies the primary data type.
Nested Schema : AdditionalFlags
Type: object
Additional flags which further clarifies the primary and logical types, or provide data type constraints.
Show Source
Nested Schema : enumConstants
Type: array
A list of string constants for a particular enum, can be used only with the enum logical type.
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object

400 Response

Bad Request
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : DefaultError
Type: object
Error Information.
Show Source
  • Minimum Length: 1
    Maximum Length: 255
    A short error code that defines the error, meant for programmatic parsing.
  • Minimum Length: 1
    Maximum Length: 1024
    A human-readable error string.

401 Response

Unauthorized
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : DefaultError
Type: object
Error Information.
Show Source
  • Minimum Length: 1
    Maximum Length: 255
    A short error code that defines the error, meant for programmatic parsing.
  • Minimum Length: 1
    Maximum Length: 1024
    A human-readable error string.

404 Response

Not Found
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : DefaultError
Type: object
Error Information.
Show Source
  • Minimum Length: 1
    Maximum Length: 255
    A short error code that defines the error, meant for programmatic parsing.
  • Minimum Length: 1
    Maximum Length: 1024
    A human-readable error string.

500 Response

Internal Server Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : DefaultError
Type: object
Error Information.
Show Source
  • Minimum Length: 1
    Maximum Length: 255
    A short error code that defines the error, meant for programmatic parsing.
  • Minimum Length: 1
    Maximum Length: 1024
    A human-readable error string.
Back to Top