About 595,000 results
Open links in new tab
  1. What exactly is GUID? Why and where I should use it?

    Dec 16, 2008 · GUID technically stands for globally unique identifier. What it is, actually, is a 128 bit structure that is unlikely to ever repeat or create a collision. If you do the maths, the domain …

  2. Is there any difference between a GUID and a UUID?

    Oct 29, 2008 · I see these two acronyms being thrown around and I was wondering if there are any differences between a GUID and a UUID?

  3. Is a GUID unique 100% of the time? - Stack Overflow

    A GUID is microsoft's specifica implementation of the UUID standard. So, it's both. Globally unique ID vs Universally unique ID.

  4. javascript - How do I create a GUID / UUID? - Stack Overflow

    May 7, 2019 · How do I create GUIDs (globally-unique identifiers) in JavaScript? The GUID / UUID should be at least 32 characters and should stay in the ASCII range to avoid trouble …

  5. How many characters are there in a GUID? - Stack Overflow

    Mar 3, 2009 · Using ASCII encoding, how many characters are there in a GUID? I'm interested in the Microsoft style, which includes the curly brackets and dashes.

  6. C# how to create a Guid value? - Stack Overflow

    Feb 26, 2010 · One field of our struct is Guid type. How to generate a valid value for it?

  7. .net - What is the string length of a GUID? - Stack Overflow

    Jun 9, 2009 · I want to create a varchar column in SQL that should contain N'guid' while guid is a generated GUID by .NET (Guid.NewGuid) - class System.Guid. What is the length of the …

  8. c# - How to Create Deterministic Guids - Stack Overflow

    var guid = GuidHelpers.CreateFromName(GuidHelpers.UrlNamespace, filePath); To reduce the risk of collisions with other GUIDs even further, you could create a private GUID to use as the …

  9. What are the best practices for using a GUID as a primary key ...

    I have an application that uses GUID as the Primary Key in almost all tables and I have read that there are issues about performance when using GUID as Primary Key. Honestly, I haven't …

  10. c# - How to validate GUID is a GUID - Stack Overflow

    Jun 2, 2011 · How to determine if a string contains a GUID vs just a string of numbers. will a GUID always contain at least 1 alpha character?