0
votes
4answers
43 views
Is it possible to create a Unique ID in an SQL Server View that will remain the same each time the view is called?
I've got 10 tables that I'm joining together to create a view. I'm only selecting the ID from each table, but in the view, each ID can show more than once, however the combination of all ID's will …
2
votes
8answers
147 views
Is there a simple way to create a unique integer key from a two-integer composite key?
For various reasons that aren't too germane to the question, I've got a table with a composite key made out of two integers and I want to create a single unique key out of those two numbers. My …
1
vote
4answers
109 views
is it good to have primary keys as Identity field
Hi , I have read a lot of articles about whether we should have primary keys that are identity columns, but I'm still confused.
There are advantages of making columns are identity as it would give …
0
votes
3answers
126 views
Core Data: Generate Unique ID Number
Hi all,
I have a window that looks like so:
Everytime a record is added, I want the repair ID to be set to a unique number that hasn't been used in the table yet. e.g. if there is ID numbers 1,2,3, …
1
vote
4answers
89 views
Using uniqueidentifier as Primary Key and inserting it from the client application using parameterized queries.
I have created a database where I use uniqueidentifier as the primary key. I'm trying to run a parametrized query that in the end looks like this. (insert into someTable (uniqueID) …
3
votes
2answers
79 views
Why does aspnet_users use guid for id rather than incrementing int? bonus points for help on extending user fields
Why does aspnet_users use guid for id rather than incrementing int?
Also is there any reason no to use this in other tables as the primary key? It feels a bit odd as I know most apps I've worked with …
2
votes
3answers
157 views
C# Random Code Field Generator for Object
I have an object with the following properties
GID
ID
Code
Name
Some of the clients dont want to enter the Code so the intial plan was to put the ID in the code but the baseobject of the orm is …
2
votes
4answers
76 views
SQL Server 2005 UniqueIdentifier and C# Data Type.
Hi
What is the best data type to choose in C# for representing a SQL Serer UniqueIdentifier type? I'm was going to use a GUID but I've seen people using varChars.
Thanks
3
votes
4answers
176 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 …
1
vote
2answers
252 views
How to determine MAC Address of the actual physical network card — not virtual network interfaces created by VPN’s (.NET C#)
Background
I'm trying to get obtain a unique identifier out of a computer and want to be able to reliably return the same MAC address each time. Trust me I have my reasons for using MAC address and …
1
vote
3answers
45 views
Do custom Event type identifiers in as3 need to be unique?
Say I have two classes which extend Event:
public class CustomEventOne extends Event
{
public static const EVENT_TYPE_ONE:String = "click";
//... rest of custom event
and
public class …
5
votes
4answers
105 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 …
0
votes
6answers
61 views
Formula/pattern to provide a unique 32 bit int that represents a 512 character file path?
Is there a common formula that could provide a unique value for a 512 character file path, assuming one 32 bit byte per character, and possibly limiting the characters used in the names?
I know that …
0
votes
1answer
105 views
setting UniqueIdentifier from Guid in LINQ, Null Reference exception
I am trying to set a unique identifier in my customer table from the unique identifer from my membership table (asp.net membership).
However I am getting a null reference exception when doing so. …
3
votes
4answers
360 views
How do I create a unique ID in Java?
Hi,
I'm looking for the best way to create a unique ID as a String in Java.
Any guidance appreciated, thanks.
I should mention I'm using Java 5.
