About 11,700,000 results
Open links in new tab
  1. glossary - What is a UUID? - Stack Overflow

    Nov 15, 2008 · UUID is the same as GUID (Microsoft) and is part of the Distributed Computing Environment (DCE), standardized by the Open Software Foundation (OSF). As mentioned, …

  2. How to create a GUID/UUID in Python - Stack Overflow

    Feb 10, 2009 · How do I create a GUID/UUID in Python that is platform independent? I hear there is a method using ActivePython on Windows but it's Windows only because it uses COM. Is …

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

    Oct 29, 2008 · Reserved, Microsoft Corporation backward compatibility Reserved for future definition. According to RFC 4122, all UUID variants are "real UUIDs", then all GUIDs are real …

  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. Which UUID version to use? - Stack Overflow

    Dec 3, 2013 · Which version of the UUID should you use? I saw a lot of threads explaining what each version entails, but I am having trouble figuring out what's best for what applications.

  6. What kind of data can you extract from a UUID? - Stack Overflow

    Nov 10, 2009 · The OSSP uuid tool can decode UUIDs of all versions. On Debian-based Linux systems you can use apt-get install uuid to install it; for other distributions, the package name …

  7. When should I use uuid.uuid1 () vs. uuid.uuid4 () in python?

    Generate a random UUID. So uuid1 uses machine/sequence/time info to generate a UUID. What are the pros and cons of using each? I know uuid1() can have privacy concerns, since it's …

  8. Generating v5 UUID. What is name and namespace?

    The generated type 3 or type 5 UUID holds a (partial) hash of the namespace id and name-within-namespace (key). It no more holds the namespace UUID than does a message MAC hold the …

  9. What is the max character length of a UUID? - Stack Overflow

    Dec 22, 2023 · 169 We are using UUID as primary key for out oracle DB, and trying to determine an appropriate max character length for the VARCHAR. Apparently this is 36 characters but …

  10. guid - How unique is UUID? - Stack Overflow

    Jul 21, 2009 · Version 4 is the random number UUID. There's six fixed bits and the rest of the UUID is 122-bits of randomness. See Wikipedia or other analysis that describe how very …