All Products
Search
Document Center

Data Management:GetSQLReviewCheckResultStatus

Last Updated:Oct 21, 2024

Queries the result of an SQL review.

Operation description

For more information about the SQL review feature, see SQL review.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
OrderIdlongYes

The ID of the ticket. You can obtain the ticket ID from the response parameters of the CreateSQLReviewOrder operation.

123321
TidlongNo

The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the ID of the tenant.

1

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request.

0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
ErrorCodestring

The error code returned if the request failed.

UnknownError
ErrorMessagestring

The error message returned if the request failed.

UnknownError
Successboolean

Indicates whether the request was successful.

true
CheckResultStatusobject

The result of the SQL review.

TotalSQLCountlong

The total number of SQL statements.

10
CheckedCountlong

The number of SQL statements that were reviewed.

10
CheckStatusResultobject

The result of the SQL status check.

Newlong

The number of SQL statements to be reviewed.

0
Unknownlong

The number of abnormal SQL statements.

0
CheckNotPasslong

The number of SQL statements that failed to pass the review.

1
CheckPasslong

The number of SQL statements that passed the review.

8
ForcePasslong

The number of SQL statements that passed the manual review.

1
ForceNotPasslong

The number of SQL statements that failed to pass the manual review.

0
SQLReviewResultobject

The optimization suggestion for SQL statements.

MustImprovelong

The number of SQL statements that must be modified.

1
PotentialIssuelong

The number of SQL statements that have potential issues.

0
SuggestImprovelong

The number of SQL statements that can be modified.

3
UseDmsToolkitlong

The number of SQL statements that can be used for lock-free schema changes.

0
UseDmsDmlUnlocklong

The number of SQL statements that can be used for lock-free data changes.

0
TableIndexSuggestlong

The number of SQL statements that can use indexes.

2

Examples

Sample success responses

JSONformat

{
  "RequestId": "0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931",
  "ErrorCode": "UnknownError",
  "ErrorMessage": "UnknownError",
  "Success": true,
  "CheckResultStatus": {
    "TotalSQLCount": 10,
    "CheckedCount": 10,
    "CheckStatusResult": {
      "New": 0,
      "Unknown": 0,
      "CheckNotPass": 1,
      "CheckPass": 8,
      "ForcePass": 1,
      "ForceNotPass": 0
    },
    "SQLReviewResult": {
      "MustImprove": 1,
      "PotentialIssue": 0,
      "SuggestImprove": 3,
      "UseDmsToolkit": 0,
      "UseDmsDmlUnlock": 0,
      "TableIndexSuggest": 2
    }
  }
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history