guid Questions

2

Note: I have already read through older questions like What is the best format for a customer number, order number? , however my question is a little more specific. Generating pseudo-random number...
Renny asked 22/8, 2012 at 4:54

12

I want to combine two guid values and generate a 32 bit alphanumberic value(It can be done by using hashing).
Gebler asked 5/9, 2009 at 10:54

3

Solved

I understand that this doesn't take a significant chunk off of the entropy involved, and that even if a whole nother character of the GUID was reserved (for any purpose), we still would have more t...
Umbel asked 10/11, 2017 at 20:20

3

Solved

I use TextWriterTraceListener (System.Diagnostics) in my application to trace several things like exceptions,... The application is running on a terminal server and if there are many users using i...
Rabblement asked 26/2, 2010 at 11:12

10

Solved

Is there any way to get the functionality of the Sql Server 2005+ Sequential Guid generator without inserting records to read it back on round trip or invoking a native win dll call? I saw someone ...
Doodle asked 17/11, 2009 at 21:36

5

Solved

When using the MongoDB shell, how do I use a guid datatype (which I have used as the _id in my collection). The following format doesn't work: >db.person.find({"_id","E3E45566-AFE4-A564-7876-A...
Faugh asked 13/4, 2011 at 15:56

3

Solved

Sequential GUIDs are unique but are created with an order; that order is slightly unusual and is different to the order achieved when using the standard .NET Guid comparer. I'm looking for a C# Gu...
Unofficial asked 16/4, 2015 at 12:13

10

Solved

I've worked on a number of database systems in the past where moving entries between databases would have been made a lot easier if all the database keys had been GUID / UUID values. I've considere...
Crescendo asked 5/9, 2008 at 8:0

5

Solved

Postman's official website states that Postman has a few dynamic variables. My question is about: {{$guid}}: Adds a v4 style guid What kind of variable is {{$guid}}? How can it be used in tes...
Durative asked 16/6, 2016 at 6:24

10

Solved

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?
Gassaway asked 2/6, 2011 at 6:2

3

Solved

Given that each GUID is represented by 16 bytes. So at best there are 2^128 possibilities = 3.4028237e+38 possible GUIDs. Will it be possible that it will all be used up?
Piefer asked 16/4, 2015 at 17:41

7

Solved

What are some of the best ways to create a GUID / UUID in Java?
Hazelton asked 6/6, 2010 at 1:12

2

Solved

How to generate deterministic GUID/UUIDs v3/v5 in C# having both namespace and name as strings (according to RFC4122, you need to provide namespace as GUID and name as string) provided to function,...
Guizot asked 17/4, 2020 at 8:31

4

Solved

How to create a Guid that all of its elements are zero. i.e. {00000000-0000-0000-0000-000000000000}. I could use: Guid.Parse("{00000000-0000-0000-0000-000000000000}") But is there any easier meth...
Anodyne asked 2/9, 2013 at 8:22

4

Solved

RFC 4122 (A Universally Unique IDentifier (UUID) URN Namespace) uses the term "clock sequence": 4.1.5. Clock Sequence For UUID version 1, the clock sequence is used to help avoid dupli...
Trina asked 5/1, 2017 at 1:15

5

Solved

I need to generate unique 64 bits integers from Python. I've checked out the UUID module. But the UUID it generates are 128 bits integers. So that wouldn't work. Do you know of any way to generate...
Martie asked 20/8, 2010 at 11:9

6

Solved

Sometimes in bash scripting, i need to generate new GUID(Global Unique Identifier). I already done that by a simple python script that generates a new guid: see here #! /usr/bin/env python import...
Collage asked 4/5, 2013 at 8:51

1

Solved

How do I convert a JSON Guid to Oracle Raw(16) String Data Type? In C# Net, it is Using ToByteArray(). What is the equivalent in Java 8? The following website will convert, however I need underlyin...
Desrochers asked 23/8, 2021 at 2:33

4

Solved

I want to generate guids to insert into a SQLite database (i.e. no support from the db itself). However, I would like to have control over certain properties: Orderedness for generating increasin...
Janeyjangle asked 13/9, 2011 at 8:45

16

Solved

What exactly is GUID? Why and where I should use it? I've seen references to GUID in a lot of places, and in wikipedia, but it is not very clear telling you where to use it. If someone could answe...
Wendolynwendt asked 16/12, 2008 at 16:7

6

Solved

I have unity 2019.3.7f1, 2 sided libraries: GooglePlayGamesPlugin-0.10.08 GoogleMobileAds-v3.18.3 (it also installed "latest External Dependency Manager for Unity") And everything compiled perf...
Losing asked 5/4, 2020 at 12:35

7

Solved

Quoting from an answer from this question. Guid is a value type, so a variable of type Guid can't be null to start with. What then if I see this? public Nullable<System.Guid> SomePrope...
Toxinantitoxin asked 17/7, 2013 at 7:49

3

I need to add a column to an already existing table and set it to be the primary key. I use other software to add new data. Why does the column GIANGGUID have the value 00000000-0000-0000-0000-0000...
Sipes asked 16/12, 2015 at 8:30

10

Solved

How unique is the php session id? I got the impression from various things that I've read that I should not rely on two users never getting the same sessionid. Isn't it a GUID?
Tomasatomasina asked 26/9, 2008 at 10:41

8

Solved

I am stuck in a strange predicament. I need to generate UUIDs in my Linux program (which I distribute using RPMs). I do not want to add another dependency to my application by requiring the user to...
Jeanninejeans asked 1/2, 2010 at 5:5

© 2022 - 2024 — McMap. All rights reserved.