Tagged Questions

0
votes
4answers
47 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
149 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
110 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
92 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
129 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
80 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
78 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
159 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 …
1
vote
2answers
260 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
47 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 …
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 …
3
votes
4answers
179 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
1answer
109 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. …
0
votes
3answers
118 views

unique Id: is a unique username + currentMilliseconds good enough for a unique Id

I need to store posts from users. Their usernames are unique and I'm sure they can't make posts at the same millisecond. Then the URL of their post would contain …
5
votes
4answers
107 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 …

1 2 3 4 5 next
15 30 50 per page