Hello,I am using a code from a open project to create one of the tables of my project:create table dbo.Errors( Id uniqueidentifier rowguidcol not null constraint DF_Errors_Id default (newid()), constraint PK_Errors primary key nonclustered, Application nvarchar(60) collate SQL_Latin1_General_CP1_CI_AS not null, Host nvarchar(50) collate SQL_Latin1_General_CP1_CI_AS not null, Type nvarchar(100) collate SQL_Latin1_General_CP1_CI_AS not null, Source nvarchar(60) collate SQL_Latin1_General_CP1_CI_AS not null, Message nvarchar(500) collate SQL_Latin1_General_CP1_CI_AS not null, [User] nvarchar(50) collate SQL_Latin1_General_CP1_CI_AS not null, StatusCode int not null, TimeUtc datetime not null, [Sequence] int identity (1, 1) not null, AllXml ntext collate SQL_Latin1_General_CP1_CI_AS not null)
Why do I have collate SQL_Latin1_General_CP1_CI_AS in all columns?Thanks,Miguel