A fictitious database named xpubs is modified to use univarchar columns.
create database xpubs go use xpubs go create table authors (au_id int, au_lname varchar(255), au_fname varchar(255)) go create index au_idx on authors(au_lname, au_fname) go
Then the data was loaded into the server using a series of inserts and updates.
To convert the data to UTF-8: