Which operations are considered as "full text" ones?

Hi!

I got a lot of warnings on my console after placing some of my databases on ND6 server.

These warnings are

“Warning: Agent is performing full text operations on database ‘directory\file.nsf’ which is not full text indexed. This is extremely inefficient.”

Please help me to get a list of operations which are considered to be “full text”.

Thanks.

Subject: Which operations are considered as “full text” ones?

any where you use field names or operators = > < etc

Subject: RE: Which operations are considered as “full text” ones?

Hi!Thanks for your answer but it didn’t help me so far. Here is URL and agent source. No selection criteria exists in agent definition.

URL for invoking the agent “XML” (not real address)

http://server.domain.ru/Applications/IP-Phone/ipphone.nsf/XML?OpenAgent&E5DB1D9D62DE1CE0C3256DC800161679

The “XML” agent source:

Sub Initialize

Dim s As New NotesSession

Dim view As NotesView	

Dim context As NotesDocument

Dim arg As String

Dim doc  As notesdocument

Dim db As  NotesDatabase



Set db = s.currentdatabase



Set context = s.DocumentContext

arg = s.DocumentContext.Query_String(0)



p1 = Instr(arg, "&")

If p1 <> 0 Then 

	arg = Lcase(Mid$(arg, p1 + 1))

Else

	arg = ""

End If



If arg = "" Then

	Set view = db.GetView( "XML" )

	Call view.Refresh

	Set doc = view.GetFirstDocument

Else		

	Set doc = db.GetDocumentByUNID(arg)			

End If

XML = doc.XML(0)

Print "Content-type: text/xml; charset=windows-1251" 

Print XML

End Sub

Please help me to find any full text operation here.

Thanks.

Subject: Which operations are considered as “full text” ones?

If you created a selection criteria in the agent builder UI that perform search operations.