3
votes
3answers
49 views
How do I identify a blank uniqueidentifier in SQL Server 2005?
Hello
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 …
0
votes
4answers
59 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
158 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
118 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 …
1
vote
4answers
108 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) …
0
votes
3answers
139 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, …
3
votes
2answers
91 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
4answers
83 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
2
votes
3answers
169 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 …
3
votes
4answers
207 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 …
0
votes
3answers
680 views
Increment a uniqueidentifier in TSQL
I am looking for a way to increment a uniqueidentifier by 1 in TSQL. For example, if the id is A6BC60AD-A4D9-46F4-A7D3-98B2A7237A9E, I'd like to be able to select …
1
vote
2answers
293 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
50 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 …
1
vote
2answers
919 views
Clustered/non-clustered index on unique identifier column in SQL Server
I have read the various questions/answers here that basically indicate that having a clustered index on a uniqueidentifier column is a poor choice for performance reasons. Regardless, I need to use a …
0
votes
6answers
67 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 …
