1-) MSSQL RMOS - ingilizce karakterleri türkçeye çevirme
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'Ş', 'S')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'ş', 's')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'İ', 'I')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'ı', 'I')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'Ğ', 'G')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'ğ', 'g')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'Ç', 'C')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'ç', 'c')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'Ö', 'O')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'ö', 'o')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'Ü', 'U')
UPDATE TabloAdi SET AlanAdi = REPLACE( AlanAdi, 'ü', 'u')