VB6 & SQL 7i have a search screen that searches for people using firstname and lastname (2 seperate textboxes that are fed into stored procedure below).The problem is this does not work if such characters as é exist in the persons name.for example.......they want to be able to type in 'andre'and get back everybody whose firstname is 'andre' AND andréFirst thought was to use the replace function (example added in SP below) but there are too many combinations to make it viable and the stored procedure would take ages to run i suspect.i've read a few posts on collation here and that seems to be the direction i need to go but how can i cater for all 'funny' characters ? We have people from all over the world in the database so any 'funny' character could appear. e.g. with diaresis, acute, grave, cedilla, stroke and the funny Beta character the germans use to name a few that spring to mind.Is there a collation that can handkle them all ?Help in any direction appreciated ?alter PROCEDURE usp_Search_BrokerEmployee_sel@Forename varchar(50),@Surname varchar(50)AS-- ** Used within frm_SearchBrokerEmployee **SELECT Broker_Employee.fs_forename, Broker_Employee.fs_surname, Brokers_in_UID.fs_brokerNameinUID, Broker_Employees_in_UID.fs_UID, Broker_Employee_Positions.fs_positionDescription, Broker_Employees_in_UID.f_brokerEmployeeCode, Broker_Employees_in_UID.fl_brokerCode, Broker_Employees_in_UID.fb_ValidatedFROM Brokers_in_UID INNER JOIN Broker_Employees_in_UID ON Brokers_in_UID.fl_brokerCode = Broker_Employees_in_UID.fl_brokerCodeAND Brokers_in_UID.fs_UID = Broker_Employees_in_UID.fs_UIDINNER JOIN Broker_EmployeeON Broker_Employees_in_UID.f_brokerEmployeeCode = Broker_Employee.fa_brokerEmployeeCode INNER JOIN Broker_Employee_PositionsON Broker_Employees_in_UID.fl_position = Broker_Employee_Positions.fa_positionCodeWHERE Broker_Employee.fs_Forename like (@Forename + '%')AND Broker_Employee.fs_Surname like (replace(@Surname,'e','[e,é]') + '%')ORDER BY Broker_Employee.fs_surname, Brokers_in_UID.fs_brokerNameinUID, Broker_Employees_in_UID.fs_UID
====Paul