Searching Flashcards

1
Q

dtSearch - AND

A

Returns documents with both terms

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

dtSearch - OR

A

Returns documents with one or the other term

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

dtSearch - AndAny

A

First term(s) required, terms after operator are optional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

dtSearch - NOT

A

Returns documents that do not have the term

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

dtSearch - precedence (order) w/o parentheses

A

dtSearch evaluates OR expressions before AND expressions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

dtSearch - precedence (order) w/ parentheses

A

Parentheses evaluated first

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

dtSearch - xfirstword

A

Marks the beginning of a file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

dtSearch - xlastword

A

Marks the end of a file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

dtSearch - fuzzy searching

A

return documents containing spelling variations of a specified term

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

dtSearch - %

A

the character used for fuzzy searches. The number of (%) used indicates how many characters in the search term dtSearch engine ignores when it runs the query. The position of the % indicates the number of characters from the beginning of the term that must match exactly with words in the result set. The following search strings illustrate how this character is used:

app%ly indicates that a matching word must begin with app and differ from apply by only one character.
a%%pply indicates that a matching word must begin with a and differ from apply by only two characters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

dtSearch - #

A

Phonetic searching. Add character to the front of words

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

dtSearch - ~

A

stemming - allowing grammatical variations of a root word

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

dtSearch - ?

A

Matches any single character

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

dtSearch - *

A

Matches any number of characters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

dtSearch - W/N

A

Within N number of words (N as a number) - aka proximity searching

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

dtSearch - NOT W/N

A

excludes documents based on proximity. First word is required, second term/phrase must be at least N words away from first term (or not present at all)

17
Q

dtSearch - PRE/N

A

Proximity searching, but first word needs to be found before the second word, and within N number of words

18
Q

dtSearch - =

A

Numerical patterns. = will hit on any single digit. === could hit 123 or 999, etc.. Used for numerical pattern finding such as SSN

19
Q

dtSearch - Phrases with Noise Words

A

dtSearch skips any noise words in a phrase. For example, it skips of in the search string Statue of Liberty and retrieves any documents that contains statue an intervening word, and liberty.

20
Q

dtSearch - Words with Punctuation

A

Punctuation inside a word is treated as a space. For example, dtSearch treats the search term can’t as two words, can and t.

21
Q

dtSearch - Numbers and Characters in Parenthesis

A

Unexpected results may be returned when numbers or characters in parenthesis are used in a dtSearch. For example, the search term 1843 (c)(8)(ii) is treated as four words.