全部產品
Search
文件中心

ApsaraDB RDS:DescribeSQLLogRecords

更新時間:Jul 14, 2026

停止維護:可以正常呼叫,但不再維護。該介面用於查詢 RDS 執行個體的 SQL 洞察(SQL 審計)日誌。

介面說明

該介面已停止維護:介面仍可以正常呼叫,但阿里雲不再維護該介面。建議您使用 GetDasSQLLogHotData 介面。

注意事項

  • 本 API 無論呼叫成功或失敗,單一使用者(主帳號包括 RAM 帳號)每分鐘最多呼叫 1000 次。

  • 本 API 不支援查詢 MySQL 執行個體 SQL 洞察試用版的 SQL 洞察日誌。

  • 本 API 產生審計檔案時(請求參數 Form 取值為 File),最多記錄 100 萬筆日誌,且不支援透過關鍵字篩選日誌。

調試

您可以在OpenAPI Explorer中直接運行該介面,免去您計算簽名的困擾。運行成功後,OpenAPI Explorer可以自動產生SDK程式碼範例。

調試

授權資訊

當前API暫無授權資訊透出。

請求參數

名稱

類型

必填

描述

樣本值

ClientToken

string

用於保證請求的冪等性,防止重複提交請求。由用戶端產生該參數值,要保證在不同請求間唯一,最大值不超過 64 個 ASCII 字元,且該參數值中不能包含非 ASCII 字元。

ETnLKlblzczshOTUbOCz****

DBInstanceId

string

執行個體 ID。可呼叫 DescribeDBInstances 獲取。

rm-uf6wjk5****

SQLId

integer

備用參數。

None

QueryKeywords

string

用於查詢的關鍵字。

  • 透過 API 產生審計檔案時(請求參數 Form 取值為 File),不支援透過關鍵字篩選。

  • 多個關鍵字以空格分隔,不超過 10 個關鍵字;各個關鍵字之間的邏輯關係為 and

  • 如果 SQL 語句中的欄位名使用了反引號(`),以該欄位名作為查詢的關鍵字時,也需要輸入反引號。例如,欄位名為 `id`,則輸入 `id`,而不是 id。

說明

輸入關鍵字後,系統會以 DatabaseUserQueryKeywords 同時進行關鍵字比對,三個請求參數之間的邏輯關係為 and

table_name

StartTime

string

查詢開始時間,可查詢當前日期 7 天內的資料。格式:yyyy-MM-ddTHH:mm:ssZ(UTC 時間)。

說明

當開通了 DAS 企業版 V3,使用其提供的 SQL 洞察和審計功能時,可查詢資料熱儲存時長內的資料。透過 DescribeSqlLogConfig 可以查詢開通的企業版資訊。

2011-06-01T15:00:00Z

Database

string

資料庫名稱。預設為所有資料庫,也可以輸入資料庫名稱查詢,一次只能輸入一個。

Database

User

string

使用者名稱。預設為所有使用者,也可以輸入使用者名稱查詢,一次只能輸入一個。

user

Form

string

觸發審計檔案的產生或者返回 SQL 記錄清單,取值:

  • File:若傳入這個值,則觸發審計檔案的產生,只返回公用參數,需再呼叫 DescribeSQLLogFiles 介面獲取檔案的最終下載連結。

  • Stream:預設值,返回 SQL 記錄清單。

說明

取值為 File 時,只支援 MySQL(高效能本機磁碟)和 SQL Server 執行個體,且最多記錄 100 萬筆日誌。

Stream

EndTime

string

查詢結束時間,大於查詢開始時間,與查詢開始時間間隔小於等於 7 天。格式:yyyy-MM-ddTHH:mm:ssZ(UTC 時間)。

說明

當開通了 DAS 企業版 V3,使用其提供的 SQL 洞察和審計功能時,可查詢資料熱儲存時長內的資料。透過 DescribeSqlLogConfig 可以查詢開通的企業版資訊。

2011-06-06T15:00:00Z

PageSize

integer

每頁記錄數,取值:30~100。預設值:30

30

PageNumber

integer

頁碼,取值:大於 0 且不超過 Integer 的最大值。

預設值:1

1

返回參數

名稱

類型

描述

樣本值

object

返回參數詳情。

Items

object

SQLRecord

array<object>

SQL 審計日誌清單。

object

SQL 審計日誌詳情。

AccountName

string

執行操作的帳號名稱。

accounttest

DBName

string

資料庫名稱。

testDB

ExecuteTime

string

執行時間。格式:yyyy-MM-ddTHH:mm:ssZ(UTC 時間)。

2011-06-11T15:00:23Z

HostAddress

string

串連資料庫的用戶端 IP 位址。

192.168.XX.XX

ReturnRowCounts

integer

返回記錄數。

30

SQLText

string

SQL 陳述式。

update test.zxb set id=0 limit 1

ThreadID

string

線程 ID。

1025865428

TotalExecutionTimes

integer

執行耗時,單位:微秒。

600

PageNumber

integer

頁碼。

1

PageRecordCount

integer

本頁 SQL 審計日誌個數。

30

RequestId

string

請求 ID。

08A3B71B-FE08-4B03-974F-CC7EA6DB1828

TotalRecordCount

integer

總記錄數。

100

樣本

正常返回樣本

JSON格式

{
  "Items": {
    "SQLRecord": [
      {
        "AccountName": "accounttest",
        "DBName": "testDB",
        "ExecuteTime": "2011-06-11T15:00:23Z",
        "HostAddress": "192.168.XX.XX",
        "ReturnRowCounts": 30,
        "SQLText": "update test.zxb set id=0 limit 1",
        "ThreadID": "1025865428",
        "TotalExecutionTimes": 600
      }
    ]
  },
  "PageNumber": 1,
  "PageRecordCount": 30,
  "RequestId": "08A3B71B-FE08-4B03-974F-CC7EA6DB1828",
  "TotalRecordCount": 100
}

錯誤碼

HTTP status code

錯誤碼

錯誤資訊

描述

400 InvalidDBInstanceId.NotFound The DBInstanceId provided does not exist in records. 提供的 DBInstanceId 不存在。
400 InvalidQueryTimeRange The query time range is invalid. 查詢時間範圍無效。
400 Order.ComboInstanceNotAllowOperate A package instance is not allowed to operate independently. 套件執行個體不允許單獨操作。
400 Price.PricingPlanResultNotFound Pricing plan price result not found. 定價計畫價格結果沒有找到。
400 Order.NoRealNameAuthentication You have not passed the real-name authentication and do not meet the purchase conditions. Please log in to the user center for real-name authentication. 您尚未通過實名認證,不符合購買條件,請登入費用與成本進行實名認證。
400 InsufficientAvailableQuota Your account quota limit is less than 0, please recharge before trying to purchase. 您的帳戶可用額度小於 0,請先儲值後再嘗試購買。
400 CommodityServiceCalling.Exception Failed to call commodity service. 呼叫商品服務傳回失敗。
400 RegionDissolvedEOM Dear customer, Alibaba Cloud plans to optimize and adjust the current region. Cloud services in this region will cease operations. You are currently unable to operate new purchase orders. Thank you for your understanding and support. 使用者您好,阿里雲端計劃對當前地域進行最佳化調整,該區域雲端服務將停止營運,為確保您的業務連續性及資料移轉工作的平穩過渡,您目前無法操作新購類型的訂單,感謝理解與支援。
400 Commodity.InvalidComponent The module you purchased is not legal, please buy it again. 您購買的模組不合法,請重新購買。
400 RegionEndTimeDissolvedAustralia Cloud services in the Australia (Sydney) region will be discontinued. Set the validity date to September 30, 2024 or earlier than September 30, 2024. 使用者您好,該地域已裁撤。
400 Price.CommoditySys Commodity system call exception. 商品系統呼叫異常。
400 Pay.InsufficientBalance Insufficient available balance.
400 Order.PeriodInvalid There is a problem with the period you selected, please choose again. 您選購的週期有問題,請重新選購。
400 pay.noCreditCard Account not bound to credit card. 無信用卡。
400 Order.InstHasUnpaidOrder There is an unpaid order for the service you have purchased. Please pay or void it before placing the order. 您選購的服務存在未支付訂單,請支付或作廢後再下單。
400 noAvailablePaymentMethod No payment method is specified for your account. We recommend that you add a payment method. 帳戶未指定付款方式。我們建議您新增付款方式。
400 BasicInfoUncompleted Your information is incomplete. Complete your information before the operation. 您的基本資訊未完善,請在操作前先完善您的基本資訊。
400 Risk.RiskControlRejection Your account is abnormal, please contact customer service for details. 您的帳戶出現異常,詳情請聯絡客服。
400 Api.NotSupport Specified api is not supported. 目前介面不支援。
400 ContainForbiddenLabelError There is a label that prohibits placing orders. Please contact your distributor for assistance. 存在禁止下單的標籤,請聯絡您的經銷商處理。
400 InvalidInstanceLevel.DiskType Specified instance level not support request disk type 目前執行個體規格不支援該儲存類型。
400 InvalidParam Sepcified wal level Parameter is invalid. There are still logical slots in instance, so it can not be set as replica. 輸入參數無效。
400 KmsApiError User secret key invalid. 使用者金鑰失效。
400 System.SaleValidateFailed Sales expression validation system error.
400 Abs.InvalidAccount.NotFound account is not found. 您的阿里雲端帳號不存在,或者您的 AccessKey 已經過期。
400 SqlExecuteFailedOrTimeout sql command execution failed or timed out:%s. SQL 命令執行失敗或執行逾時。
400 ColdData.EngineVersionNotSupport The current instance engine version not support coldDataEnabled. 目前執行個體引擎版本不支援歸檔冷資料。
400 ColdData.MinorVersionNotSupport The current instance minor version not support coldDataEnabled. 目前核心版本不支援歸檔冷資料。
400 IncorrectTargetClasscode The current instance type does not support this operation. 目前規格不支援此操作。
400 InvalidConnectionString.Duplicate Specified connection string already exists in the RDS. 連結位址名稱重複,請重新設定連線字串。
400 RequiredParam.NotFound Required input param is not found. 沒有傳入必要的參數。
400 Parameters.Invalid Parameter error, please check the parameters. 參數錯誤,請檢查參數。
400 BackupPolicyNotSupport Cold Data won't open with CrossBackup or Flash Backup, please check Backup Policy. 資料歸檔不支援跨地域備份和秒級快照,請檢查備份策略。
400 InvalideStatus.Format The instance status does not support this operation. 執行個體狀態不支援此操作。
400 InvalidReleasedKeepPolicy.Format Specified Released Keep Policy is not valid. 執行個體釋放後的歸檔備份保留策略無效。
400 InvalidDBInstanceEngineType.Format the DB instance engine type does not support this operation. DB 執行個體引擎類型不支援此操作。
400 Pay.NoCreditCard No credit cards.
400 VpcNetworkTypeNotSupport The vpc network type instance does not support this operation. VPC 網路類型執行個體不支援此操作。
400 MirrorInsExists Specified DB instance mirror ins already existed. 目前資料庫執行個體映像已存在。
400 UnsupportedClassCode The specified DB instance class stops selling. 執行個體規格已停止銷售。
400 InvalidBackupSet The specified database does not exist in the backup set. 備份集中沒有指定的資料庫。
400 OrdTCommodityQueryError Failed to query for product. 查詢產品失敗。
400 ProductInstanceReleased The instance has been released. Please check before placing the order. 執行個體已釋放,請核實後下單。
400 RegionEndTimeDissolvedIndia The region is no longer supported. 指定的地域無效。
500 ExternalFailure The request processing has failed due to external service failure. 請求服務失敗,請稍後重試。
500 RequestMetaDataFailed The service request failed. Please try again later or contact service personnel. 請求服務失敗,請稍後再試或聯絡服務人員。
500 InvokeProxyFailure The request processing has failed due to service failure of rds api. 由於 RDS API 服務失敗,請求處理失敗。
403 OrderStatus.UnPaid The specified db instance has unpaid order. 執行個體當前存在未支付訂單,請支付後重試。
403 InvalidReduceDiskSize The storage capacity after the scale-down must be larger than the used amount. 縮容目標容量不能小於目前儲存空間使用量。
403 CloudSSDNotSupport Cloud ssd does not support this operation, please upgrade to essd. SSD 磁碟不支援此操作,請升級至 ESSD。
403 InvalidUserOperatorPermission The user permission does not support this operation. 使用者權限不支援此操作。
403 InvalidVswitchId Specified conn vswitch id is not valid. 指定的 VSwitchId 格式不正確或為空。
403 IncorrectMinorVersion Current engine minor version does not support operations. 目前引擎小版本不支援此操作。
403 OperationDenied.ZoneResource There is no available zone for inventory. 沒有可用的庫存區域。
403 NotInFlowController Sorry,no permission. 非集團上雲使用者不可用,無權限。
403 InvalidKmsKey Kms key is disabled. Kms key 已停用。
403 InvalidInstanceLevel.Malformed Current DB instance level does not support this operation. 目前資料庫執行個體層級不支援此操作。
404 InvalidClusterKms The current instance does not authorized to access the Key Management Service. 當前執行個體未授權存取金鑰管理服務。
404 Request.NotFound The requested resource is not available. 請求的資源不可用。
404 HostInfo.NotFound The specified host info is not found. 指定的主機資訊不存在。
408 OperationDenied.Timeout The request processing has failed due to timeout. 請求由於逾時處理失敗。

訪問錯誤中心查看更多錯誤碼。

變更歷史

更多資訊,參考變更詳情