I am trying to query a custom list and getting the following error:

At,
SPListItemCollection OsplistitemCollection = Olist.GetItems(OqueryResponse);
below is my code
string TicketID = "123";
Osite = new SPSite(noPrevSite.ID);
Oweb = Osite.OpenWeb(noPrevWeb.ID);
Olist = Oweb.Lists["ListName"];
helpDeskIDLabel.Text = TicketID;
camlQuery = "<Where><Contains><FieldRef Name='TicketID'/<Value Type='Text'>"
+ TicketID+ "</Value></Contains></Where>";
OqueryResponse.Query = camlQuery;
SPListItemCollection OsplistitemCollection = Olist.GetItems(OqueryResponse);
string count = OsplistitemCollection.Count.ToString();
Update -->ULS Log
Unable to execute query: Error 0x81020014 One or more field types are not installed properly. Go to the list settings page to delete these fields.
>is missing after TicketID in query string (?) – Vedran Rasol Feb 8 '12 at 20:15