Finding Items → Using Search Features → Tips for Using Search Features → Using Wildcard Characters in Searches
You can use wildcard characters to search for items and field values using the search mechanisms provided by the SBM User Workspace. The wildcard search criteria in this section apply to the following search features:
Search by Keyword
Search by Submitter
Advanced Search
Value Find
Find Reports
Wildcard characters work differently in the Advanced Lookup Tool and the Relational Field Value Lookup. For details, refer to Advanced Lookup and Relational Field Value Lookup Wildcard Searches.
The following rules apply to wildcard characters in searches:
For example:
For more further detail, review the following examples. Assume that your database contains the following data records:
TS_ID | TS_TITLE |
---|---|
1 | No entries in ts_systemsettings table |
2 | TS_SET_ATTRIBUTES column not found in TS_SYSTEMSETTINGS table |
3 | No entries found in TS_SYSTEMSETTINGS table |
4 | TS_SYSTEMSETTINGS |
5 | TS SYSTEMSETTINGS |
The table below shows a user input example, the corresponding SQL that is passed to the database (the right part of the argument after LIKE), and the records that are returned as a result:
User Input | Corresponding Part of SQL Query ('WHERE field LIKE '...') | Records Returned |
---|---|---|
entries | '%entries%' | 1,3 |
No entries | '%No%' and '%entries%' | 1,3 |
"No entries" | '%No entries%' | 1,3 |
TS_SYSTEMSETTINGS | '%TS_SYSTEMSETTINGS%' | 1,2,3,4,5 |
"TS_SYSTEMSETTINGS" | '%TS\_SYSTEMSETTINGS%' | 1,2,3,4 |
No%entries | 'No%entries' | No items found (see rule 3 above) |
%No%entries% | '%No%entries%' | 1,3 |
No*entries | 'No%entries' | No items found (see rule 3 above) |
No"*"entries | '%No*entries%' | No items found |
Copyright © 2001–2016 Serena Software, Inc. All rights reserved.