Hi Eric,
It seems like your SQL Server uses case sensitive collation. We recommend that you change the collation to SQL_Latin1_General_CP1_CI_AS which is case insensitive.
You can check your server collation using:
SELECT SERVERPROPERTY('collation');