Identifiers - GoToAssist Monitoring

GoToAssist Monitoring Service Status

Service Fully Operational

***Our GoToAssist maintenance window is Wednesday or Friday 6:00am-10:00am GMT. A maintenance generally results in 5-10 minutes of downtime during the beginning of the maintenance window.***

Updated: Wed, Oct 17 2012 2:27 PM RSS Feed

Find an Answer

Search GoToAssist Monitoring articles, videos and user guides   Your search term must have 2 or more characters.

Browse Articles

Identifiers

PQL recognizes an identifier as any sequence of characters that start with a letter, and can include letters, underscores, and numbers. Identifiers are case-insensitive, with some exceptions. Identifiers must start with a letter, and cannot include spaces. You cannot use a reserved word as an identifier, unless you surround it with double quotes, as shown in the following examples.

You can try the following examples against your own data in the GoToAssist search field, or against fictitious data in the Query Sandbox:

Example 1: Misuse of reserved word

Query: Find the value of the Index node.

SELECT * 
FROM /network/device/wmi/win32_networkadaptersetting/element/index

Result: GoToAssist returns an error message because INDEX is a reserved word:

Example 2: Proper use of reserved word

Query: Find the value of the "Index" node.

SELECT * 
FROM /network/device/wmi/win32_networkadaptersetting/element/"index\"

Result: The use of double quotes around "index\" changes it from a reserved word into an identifier that produces a result.

row
   * 1
row
   * 2
row
   * 3 
   . . .

Related topics

| Views: 1326 | Last Updated: Thu, May 09 2013 2:28 PM

Is this article helpful?