Problem to create the database on SQL Server 2008 R2
2 answers
Here's the Setting up an SQL Server database section of the 4.0.2 information center
One of the steps is to run:
The CS near the end is what indicates the DB should be case sensitive. (CI would indicate Case Insensitive)
I'm pretty sure that value is available from a drop down list if you are creating the database from the GUI interface.
One of the steps is to run:
ALTER DATABASE jts COLLATE SQL_Latin1_General_CP437_CS_AS
The CS near the end is what indicates the DB should be case sensitive. (CI would indicate Case Insensitive)
I'm pretty sure that value is available from a drop down list if you are creating the database from the GUI interface.