As WoodHouse pointed out it's perfectly possible to create a clustered index on a nullable column.It's a primary key that you can't create.CREATE TABLE dbo.primaryKey ( [Cola] INT NULL PRIMARY KEY )
ResultsMsg 8111, Level 16, State 1, Line 2Cannot define PRIMARY KEY constraint on nullable column in table 'primaryKey'.Msg 1750, Level 16, State 0, Line 2Could not create constraint. See previous errors.
Charlie===============================================================Msg 3903, Level 16, State 1, Line 1736The ROLLBACK TRANSACTION request has no corresponding BEGIN TRANSACTION