What can I use instead of LIKE in the queries? As LIKE has poor performance impact on the search condition.
My scenario:
SELECT 
    *
FROM 
    MetaDataTag
WHERE 
    Name LIKE 'SUN RCC%'
I cant use contains as a Full text index is required on the table, which I am not opting for.
Suggestions will be very helpful.