Yes use COLLATE SQL_Latin1_General_CP1_CS_AS, take a look at the following example
create TABLE dbo.Customers
(
CustID char(8) NOT NULL ,
CustPassword varchar(15) NOT NULL,
CustName varchar(25) NOT NULL,
CustEmail varchar(60) NOT NULL,
CustAddress varchar(100) NOT NULL
)
GO
INSERT INTO dbo.Customers VALUES('USA00001', 'TheUnbreakable', 'John', '
[email protected]', '10932,Bigge Rd., Menlo Park, CA')
INSERT INTO dbo.Customers VALUES('USa00001', 'ABCxyz012789', 'Heather', '
[email protected]', '18 Broadway Av. San Francisco, CA')
INSERT INTO dbo.Customers VALUES('EUR00001', 'MagicNSparkle', 'Vyas', '
[email protected]', '18 Grove Mead, Herts, AL09 7JK, UK')
INSERT INTO dbo.Customers VALUES('ASA00001', 'aAbBcCXyZ', 'Franklin', '
[email protected]', '22 Main Street, Singapore')
INSERT INTO dbo.Customers VALUES('OZ000001', 'DOWNundah', 'Steve', '
[email protected]', '321, Cricket Way, Melbourne, Australia')
SELECT *
FROM dbo.Customers
WHERE CustID = 'USA00001' COLLATE SQL_Latin1_General_CP1_CS_AS
SELECT *
FROM dbo.Customers
WHERE CustID = 'USA00001'
âI sense many useless updates in you... Useless updates lead to fragmentation... Fragmentation leads to downtime...Downtime leads to suffering..Fragmentation is the path to the darkside.. DBCC INDEXDEFRAG and DBCC DBREINDEX are the force...May the force be with you" --
http://sqlservercode.blogspot.com/