I am trying to query a list in SharePoint 2007 to get the items of the list that were created by a specified user. Here is my CAML:
<Query>
<Where>
<Eq>
<FieldRef Name="Author" />
<Value Type="Text">1073741823;#System Account</Value>
</Eq>
</Where>
</Query>
Actually, I've tried it lots of different ways, but no matter what I try, I get SoapServerException. I've tried changing around the Name attribute of the FieldRef and the Type attribute of the Value, as well as the inner text of the Value. There doesn't seem to be any documentation on how to create a CAML query like this... What should I do to make it work?