Obsolete. Retrieves the diagnostic queries belonging to a debug-data bundle.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
sys_debugdata_id

The sys_debugdata bundle id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of queries in the bundle.

sys_debugdata_query
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
sys_debugdata_id

Foreign key of the parent debug session () this query belongs to.

globally unique identifier
tsql_query

The T-SQL query text to execute against the device's local database.

string
object_name

Name of the table/object the query targets, for reference in the collected results.

string
empty_byte_field

When true, indicates that binary/byte columns in the result should be returned empty (e.g. to avoid transferring large blob data over the wire).

boolean
is_done

Indicates whether the device has finished executing this query and reported its result.

boolean
sequence

Order in which this query should be executed relative to other queries in the same debug session.

integer

Response Formats

application/json, text/json

Sample:
{
  "id": "d2fce985-f944-430c-beb9-78386a59a56b",
  "sys_debugdata_id": "f52611e5-c08e-4814-ab73-38802ed18b0b",
  "tsql_query": "sample string 3",
  "object_name": "sample string 4",
  "empty_byte_field": true,
  "is_done": true,
  "sequence": 7
}

application/xml, text/xml

Sample:
<sys_debugdata_query xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <empty_byte_field>true</empty_byte_field>
  <id>d2fce985-f944-430c-beb9-78386a59a56b</id>
  <is_done>true</is_done>
  <object_name>sample string 4</object_name>
  <sequence>7</sequence>
  <sys_debugdata_id>f52611e5-c08e-4814-ab73-38802ed18b0b</sys_debugdata_id>
  <tsql_query>sample string 3</tsql_query>
</sys_debugdata_query>