vote up 1 vote down star

How can I find out if an instance of SQL Server 2005 allows case sensitive databases or not?

By case sensitive, I mean case sensitivity of the objects in the database, i.e. the following two statements are not equivalent:

SELECT * FROM TABLE
SELECT * FROM table

I've looked in the property pages of the server (in Management Studio) but I couldn't see it.

flag

Although factually exact, the replies so far speak to the way SQL server handles case sensivity with regards to the database contents. The OP's question is about the case sensitivity of the Identifiers used in the SQL statements themselves. – mjv Sep 17 at 15:29

3 Answers

vote up 3 vote down check
SELECT DATABASEPROPERTYEX('DatabaseNameHere', 'Collation') SQLCollation;

Returns "SQL_Latin1_General_CP1_CI_AS", the CI is what indicates case insensitivity

link|flag
1  
you mean "MyDatabasename"? – gbn Sep 17 at 15:20
Yes, good call! Updated! – Josh Stodola Sep 17 at 15:20
Thanks, just to confirm (for anyone else who might find this question), collation determines whether or not database objects (such as tables) are equal AS WELL as determining if text values stored in the database are. – Kragen Sep 17 at 15:29
@kragen2uk: of course. object names are stored in sys.objects, which is subject to collation... – gbn Sep 17 at 16:04
vote up 1 vote down

In Management studio, right click on Instance in the object explorer and then click on "properties" to see the server properties. In the "General" section look at the collation. The default case insensitive setting is SQL_Latin1_General_CP1_CI_AS. The case sensitive setting is Latin1_General_CS_AS.

link|flag
vote up 1 vote down

The collation of a database can be different to the server collation. There is no restriction.

When you CREATE DATABASE, you specify it there or it assumes the collation of the model databases (which should be the server collation).

SELECT
    DATABASEPROPERTYEX('MyDB', 'Collation'), 
    SERVERPROPERTY ('Collation')
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.