Class DataExecutionStatus

  • The DataExecutionStatus object provides information about the status of a data execution.

  • It includes methods to retrieve the error code, error message, execution state, last execution time, and last refreshed time.

  • You can also check if the data from the last successful execution was truncated using the isTruncated() method.

DataExecutionStatus

The data execution status.

Methods

MethodReturn typeBrief description
getErrorCode() DataExecutionErrorCode Gets the error code of the data execution.
getErrorMessage() StringGets the error message of the data execution.
getExecutionState() DataExecutionState Gets the state of the data execution.
getLastExecutionTime() DateGets the time the last data execution completed regardless of the execution state.
getLastRefreshedTime() DateGets the time the data last successfully refreshed.
isTruncated() BooleanReturns true if the data from last successful execution is truncated, or false otherwise.

Detailed documentation

getErrorCode()

Gets the error code of the data execution.

Return

DataExecutionErrorCode — The error code.


getErrorMessage()

Gets the error message of the data execution. The message may be empty.

Return

String — The error message.


getExecutionState()

Gets the state of the data execution.

Return

DataExecutionState — The execution state.


getLastExecutionTime()

Gets the time the last data execution completed regardless of the execution state.

Return

Date — The last execution time, or null if there has never been a data execution.


getLastRefreshedTime()

Gets the time the data last successfully refreshed.

Return

Date — The last successfully refreshed time, or null if there is never a successful data execution.


isTruncated()

Returns true if the data from last successful execution is truncated, or false otherwise.

Return

BooleanTrue if the data from execution is truncated, or false otherwise.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024年12月02日 UTC.