I want to create a varchar folumn in SQL should contain N'guid' while guid is a generated Guid by .net (Guid.NewGuid).
What is the length of the varchar I should expect from a Guid? is it a static length?
Should I use nvarchar (will Guid ever use unicode chars)?
varchar(Guid.Length)
PS. I don't want to use SQL row guid data-type, just asked what is Guid.MaxLength
Guid.NewGuidhas no implicit "string length"; It all depends on the format used in the ToString (The no-argumentToStringuses "D" formatting). I prefer "B" as it's easier to "see that it's a GUID", but that's just familiarity and convention. – pst Dec 16 '10 at 6:52