You cannot make specific columns case-insensitive, only your whole server.<br>
<br>
If you run 'sp_helpsort' it will tell you all about your charset and sort order. The default is case-insensitive and I would be surprised if yours is case-sensitive, if so then it was changed for a reason.<br>
<br>
The sort order can be changed by re-running the install, but you will need to rebuild your database and reload your data....<br>
<br>
I tended to get round it by using the UPPER function, e.g.<br>
<br>
SELECT Cust_details from customer<br>
where UPPER(Custname) = "BLOGGS"<br>
<br>
This may however stop the index being used and reduce performance.