Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

137
votes
13answers
62k views

Is there a unique Android device ID?

Do Android devices have a unique id, and if so, what is a simple way to access it via java?
17
votes
9answers
2k views

How unique is UUID?

How safe is it to use UUID to uniquely identify something (I'm using it for files uploaded to the server)? As I understand it, it is based off random numbers. However, it seems to me that given enough ...
15
votes
6answers
4k views

SQL Server - SCOPE_IDENTITY() for GUIDs?

Can anyone tell me if there is an equivalent of SCOPE_IDENTITY() when using GUIDs as a primary key in SQL Server? I don't want to create the GUID first and save as a variable as we're using ...
11
votes
10answers
364 views

Performance issue with generation of random unique numbers

I have a situation where by I need to create tens of thousands of unique numbers. However these numbers must be 9 digits and cannot contain any 0's. My current approach is to generate 9 digits (1-9) ...
11
votes
5answers
12k views

C# guid and SQL uniqueidentifier

I want to create a GUID and store it in the DB. In C# a guid can be created using Guid.NewGuid(). This creates a 128 bit integer. SQL Server has a uniqueidentifier column which holds a huge ...
10
votes
5answers
290 views

Python Identity Problem: Multiple Personality Disorder. Need Code Shrink

I stumbled upon the following python weirdity: >>> two = 2 >>> ii = 2 >>> id(two) == id(ii) True >>> [id(i) for i in [42,42,42,42]] [10084276, 10084276, 10084276, ...
10
votes
8answers
8k views

How to get a unique computer identifier in Java (like disk id or motherboard id)

I'd like to get an id unique to a computer with Java, on Windows, MacOS and if possible, linux. It could be a disk UUID, motherboard s/n... Runtime.getRuntime().exec can be used (it is not an applet). ...
9
votes
3answers
649 views

Aggregate Function on Uniqueidentifier (GUID)

Let's say I have the following table: category | guid ---------+----------------------- A | 5BC2... A | 6A1C... B | 92A2... Basically, I want to do the following SQL: SELECT ...
9
votes
5answers
235 views

sources of “uniqueness”/entropy on embedded systems

I have an embedded system. What I would like for it to do when it powers up or otherwise resets, is to generate a unique ID, so that on different restarts a different unique ID is generated with high ...
9
votes
11answers
1k views

How can I create a unique 7-digit code for an entity?

When a user adds a new item in my system, I want to produce a unique non-incrementing pseudo-random 7-digit code for that item. The number of items created will only number in the thousands ...
9
votes
2answers
18k views

Convert varchar to uniqueidentifier in SQL Server

A table I have no control of the schema for, contains a column defined as varchar(50) which stores uniqueidentifiers in the format 'a89b1acd95016ae6b9c8aabb07da2010' (no hyphens) I want to convert ...
8
votes
2answers
65 views

php unique identifier for clients

I have a unique identifier for client i generate everytime a client request a service support. once the id is generate, the id is inserted in the database here my code: function makeUnique() { ...
8
votes
2answers
2k views

Unique computer ID hardware based in Java

I need to generate a unique code from a single PC, my software will be distribute by licence, and locally I need to identify the environment and send this code to the server. I don't want to mantain ...
8
votes
9answers
705 views

Generating a Not-Quite-Globally Unique Identifier

I've found a number of different questions on generating UIDs, but as far as I can tell, my requirements here are somewhat unique (ha). To summarize: I need to generate a very short ID that's ...
8
votes
7answers
6k views

What's a good way to uniquely identify a computer?

I'm developing some desktop software for a client to resell. The client wants to restrict the software so that the registration code will be specific to one and only one computer. Besides using the ...
7
votes
4answers
152 views

What would be a good order id scheme for a e-commerce solution or paid web service?

Considering the following: a) you want some confidentiality (as in not telling everybody how many orders you've received). b) you want a check digit (e.g., using the Verhoeff algorithm) at the end ...
7
votes
10answers
12k views

Short unique id in php

I want to create a unique id but uniqid() is giving something like '492607b0ee414'. What i would like is something similar to what tinyurl gives: '64k8ra'. The shorter, the better. The only ...
6
votes
2answers
74 views

Is it a good idea to template based on enums?

I am writing a unique ID generator which has different strategies for generating Id's which are unique through a day, or a week or a month. I do not want to create a hierarchy of classes with virtual ...
6
votes
4answers
366 views

Using GUIDs in Primary Keys / Clusted Indexes

I'm fairly well versed in SQL server performace but I constanly have to argue down the idea that GUIDs should be used as the default type for Clusterd Primary Keys. Assuming that the table has a ...
6
votes
3answers
3k views

Generating unique and opaque user IDs in Google App Engine

I'm working on an application that lets registered users create or upload content, and allows anonymous users to view that content and browse registered users' pages to find that content - this is ...
6
votes
5answers
9k views

Generating a globally unique identifier in Java

Summary: I'm developing a persistent Java web application, and I need to make sure that all resources I persist have globally unique identifiers to prevent duplicates. The Fine Print: I'm not using ...
5
votes
5answers
121 views

High performance unique timestamp id for multiple threads in Haskell

I have multiple threads processing events. I want to assign a nanosecond timestamp to each event. It must be a unique id, though. So, in the odd case that two events arrive such that they would be ...
5
votes
10answers
681 views

18 Digit Unique ID - Code reliability

I want a number that would be unique forever, I came up with the following code, it generates a number and adds a check digit to the end of it, I would like to know how reliable is this code? public ...
5
votes
7answers
4k views

How can i get cpuid in java?

I want create an encryption with java ; How can i get CPU Id or anythings is unique in pc such as bios or ... for example System.getCpuId(); :) it's just example ;) Thanks a lot ...
5
votes
3answers
1k views

SQL Server unique-identifier equivalent in C#

What datatype should I use in C# to work with the SQL Server uniqueidentifier. Do I need any conversions etc ? Thanks
5
votes
3answers
344 views

How do I identify a blank uniqueidentifier in SQL Server 2005?

I'm getting a uniqueidentifier into a Stored Procedure that looks like this "00000000-0000-0000-0000-000000000000". This seems like a simple thing, but how can identify that this is a blank ...
5
votes
4answers
4k views

Get unique identifier of a Thread in Java 1.4

In Java 1.4, is there any better way of getting a Thread's ID than using Thread.getName()? I mean, getName() in unit tests returns something like "Thread-1", but in WebLogic 10 I get "[ACTIVE] ...
4
votes
2answers
224 views

NSFileManager unique file names

I need a quick and easy way to store files with unique file names on iOS. I need to prefix the file with a string, and then append the generated unique identifier to the end. I was hoping ...
4
votes
1answer
364 views

Unique Identifier of a Mac?

On an iPhone I can use [[UIDevice currentDevice] uniqueIdentifier]; to get a string which identifies this device. Is there anything equal in OSX ? I didn't find anything. I just want to identify ...
4
votes
1answer
2k views

How is application ID used by Xcode when building/signing the application?

iOS Provisioning files make reference to the Apple application ID (of the form "A1A2A3A4A5"). Most often, the DNS form of the application is replaced with a star (*). My understanding is that the ...
4
votes
2answers
1k views

How can I generate a unique ID using a hash in Perl?

I am writing a message transfer program between multiple clients and server. I want to generate a unique message ID for every message. It should be generated by the server and returned to the client. ...
4
votes
8answers
3k views

How are hash functions like MD5 unique?

Im aware that MD5 has had some collisions but this is more of a high level question about hashing functions. If MD5 hashes any arbitrary string into a 32-digit hex value, then according to the ...
4
votes
4answers
671 views

Will using a substring of an MD5 hash like this be unique enough?

What I am trying to do is create a 12 character id for articles on my website similar to how youtube handles their video id (http://www.youtube.com/watch?v=53iddd5IcSU). Right now I am generating an ...
4
votes
2answers
576 views

On the mobile phone, is there a “mac address” that makes each mobile phone different?

In other words, is there an ID for each and every mobile phone--that makes it different. No two phones can have the same ID. (I'm talking about smartphones ...android, iphone, etc)
4
votes
5answers
6k views

Algorithm for generating a unique ID in C++?

What can be the best algorithm to generate a unique id in C++? The length ID should be a 32 bit unsigned integer.
4
votes
5answers
3k views

cutdown uuid further to make short string

I need to generate unique record id for the given unique string. I tried using uuid format which seems to be good. But we feel that is lengthly. so we need to cutdown the uuid string ...
4
votes
5answers
4k views

SQL Server: Search all tables for a particular GUID

i came across the need to cleanse some data, and i need to find some particular guids (i.e. uniqueidentifiers) in SQL Server°. i've come up with a stored procedure that does a SELECT from every ...
4
votes
1answer
717 views

Best way to get PK Guid of inserted row

I've read this question about getting the identity of an inserted row. My question is sort of related. Is there a way to get the guid for an inserted row? The table I am working with has a guid as ...
4
votes
7answers
1k views

Generating a unique reference number strategies

Hrm... here's where my CS knowledge lets me down. I want to write an algorithm that generates a reference number that is unique. I don't want to use sequential numbers as they introduce a security ...
3
votes
3answers
169 views

How should I generate unique IDs for a bunch of objects?

I have an array consisting of A LOT of Symbol objects: var symbols = { alpha : new Symbol('alpha', 'symbol_0', '&#x03B1', 'GreekSymbol'), beta : new Symbol('beta', 'symbol_1', ...
3
votes
2answers
303 views

Pros/Cons of and ways to implement globally unique identifier in relational database?

Regarding the first part of my question: I was recently asking myself what are the benefits and trade-offs of having a unique identifier for certain tables in a relational database. Just as an ...
3
votes
7answers
889 views

Generate a unique value for a combination of two numbers

Consider I've two numbers 1023232 & 44. I want to generate a unique number representing this combination of numbers. How can i generate it? Requirement f(x,y) = f(y,x) and f(x,y) is unique for ...
3
votes
1answer
295 views

Sorting jQuery Interactions of Multiple Instances, Each With Unique IDs

I'm expanding on what used to be a pretty simple jQuery accordion script, and I've made it so that multiple accordions can be placed on the page, each with its own unique ID. The trouble is, any ...
3
votes
7answers
775 views

Generating ID unique to a particular computer [closed]

Possible Duplicate: Reliable way of generating unique hardware ID Am trying to generate an ID that will be unique to a particular computer. The ID will not be generated randomly. It will be ...
3
votes
3answers
308 views

Locally unique identifier

Question: When you have a .NET GUID for inserting in a database, it's structure is like this: 60 bits of timestamp, 48 bits of computer identifier, 14 bits of uniquifier, and 6 bits are fixed, ...
3
votes
2answers
3k views

Programmatically display iPhone/iPad UDID

I have an iPad app in which I get the device's UDID by the following code in the viewDidLoad method. uid = [[UIDevice currentDevice] uniqueIdentifier]; uid = [uid ...
3
votes
2answers
398 views

__COUNTER__ equivalent on Xcode?

I am migrating a project from Linux to Xcode and I encountered a "version" problem.. I need a unique identifier at compile time for my dynamic stuff, on linux I was using the __ COUNTER__ ...
3
votes
4answers
1k views

Autoincrement uniqueidentifier in C#

Basically I want to use uniqueidentifier in similar way as identity. I don't want to insert values into it, It should just insert values automatically, different value for each row. I'm not able to ...
3
votes
5answers
1k views

Is it possible to get a truly unique id for a particular JVM instance?

I need a way to uniquely and permanently identify an instance of the JVM from within Java code running in that JVM. That is, if I have two JVMs running at the same time on the same machine, each is ...
3
votes
1answer
133 views

Are barcodes the best way to uniquely identify physical documents that need to be digitized for a web app?

I have to digitize a few thousand physical documents and assign them to a variety of categories for a web app where they will be displayed. Should I generate bar codes for each of the documents to ...

1 2 3 4 5 7