Thanks both. I hadn't realised that the search syntax was slightly different depending on whether you were in an eap file or a shared server.
The wildcards now work but I've run into another issue. To confirm the search query I'm using is:
select Connector_ID, Direction, Connector_Type, t_object.Name, so.name, eo.name
from t_connector, t_xref, t_object, t_object so, t_object eo
where t_xref.Client = t_connector.ea_guid and t_xref.description LIKE '#WC#'+t_object.ea_guid+'#WC#' and so.object_id = Start_Object_ID and eo.object_id = End_Object_ID and t_object.name LIKE '<Search Term>'
In the eap file the search returns the following columns:
Connector_ID | Direction | Connector_Type | t_object.name | so.name | eo.name
and the search results come up fine, listing the information conveyed, the start element and end element. On the server, the same query comes back as:
Connector_ID | Direction | Connector_Type | Name | name | name
The first and third name columns are populated with the end element; the start element and the name of the information conveyed doesn't show up at all. Maybe there's another syntax issue I need to correct in the query?