The information in this article applies to:
SYMPTOMSIf a source document contains a metatag with a period (for example meta name="term" content="Holder v. Hall"), when you run the query, the query becomes case sensitive. The following queries fail to find the document with the aforementioned example metatag:
CAUSEThe period (.) is a wildcard in queries and is being treated as it should. When you query a column, a period in a query means that the query must be an exact match of the string. RESOLUTIONThe simplest way to resolve this problem is to do a "free text" query. To specify a free text query, the column name should be prefixed by a dollar sign ($) rather than @. For example: $META_Name holder v. hall This is interpreted as "holder" AND "v" AND "hall." WORKAROUNDIf you do not want to do a "free text" query, you can change the period to a question mark (?), as follows: @META_term holder v? hall This produces a query that is not case sensitive . Additional query words:
Keywords : |
Last Reviewed: September 23, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |