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

link|improve this question

1  
Note: Guid.NewGuid has no implicit "string length"; It all depends on the format used in the ToString (The no-argument ToString uses "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
feedback

3 Answers

up vote 76 down vote accepted

It depends on how you format the Guid:

  • Guid.NewGuid().ToString() => 36 characters (Hyphenated)
    outputs: 12345678-1234-1234-1234-123456789abc

  • Guid.NewGuid().ToString("D") => 36 characters (Hyphenated, same as ToString())
    outputs: 12345678-1234-1234-1234-123456789abc

  • Guid.NewGuid().ToString("N") => 32 characters (Digits only)
    outputs: 12345678123412341234123456789abc

  • Guid.NewGuid().ToString("B") => 38 characters (Braces)
    outputs: {12345678-1234-1234-1234-123456789abc}

  • Guid.NewGuid().ToString("P") => 38 characters (Parentheses)
    outputs: (12345678-1234-1234-1234-123456789abc)

link|improve this answer
1  
@Shimmy - Look at the first one 'Hypenated, the same as default' – Stevo3000 Dec 17 '10 at 9:24
I have no idea what hypenated means :( – Shimmy Dec 20 '10 at 13:39
@Shimmy - A hypen character - is used to seperate the groups. – Stevo3000 Dec 20 '10 at 15:17
1  
Oh, then it's 'Hyphen' with an H (I was looking in the dictionary and wasn't able to find hypen)... Thanks – Shimmy Dec 21 '10 at 9:56
4  
I'd like to add that a Guid is a 128-bit unsigned integer. You can also store it as a 16-byte array byte[16]. – Eric Falsken Mar 7 '11 at 17:59
show 1 more comment
feedback

36, and the GUID will only use 0-9A-F (hexidecimal!).

12345678-1234-1234-1234-123456789012

That's 36 characters in any GUID--they are of constant length. You can read a bit more about the intricacies of GUIDs here.

You will need two more in length if you want to store the braces.

Note: 36 is the string length with the dashes in between. They are actually 16-byte numbers.

link|improve this answer
1  
I think one respresentation surrounds with {}, so that would mean a max of 38 – Mitch Wheat Jun 9 '09 at 4:49
3  
I'm pretty sure you had it right the first time, Eric. guid.ToString() returns a string of length 36, with no braces. – Michael Petrotta Jun 9 '09 at 4:56
Thanks for you two, what I will need is 36, I said I wanna store Guid.NewGuid. – Shimmy Jun 9 '09 at 6:24
7  
This is wrong for .NET; you only get 36 characters! You do get the braces (38 characters) for the C# visualizer, but not in code! – Stevo3000 Feb 9 '10 at 11:37
feedback

I believe GUIDs are constrained to 16-byte lengths (or 32 bytes for an ASCII hex equivalent).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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