3
votes
3answers
92 views

C# generate Guid that is unique(does not exist in a table in the database)

I have a table where the primary key is of type Guid. In my MVC application, I want to add a record to this table. I know of the Guid.newGuid() that creates a new Guid. This workds well but I have a ...
1
vote
0answers
20 views

Why can't I trust a client-generated GUID? Does treating the PK as a composite of client-GUID and a server-GUID solve anything?

I'm building off of a previous discussion I had with Jon Skeet. The gist of my scenario is as follows: Client application has the ability to create new 'PlaylistItem' objects which need to be ...
0
votes
2answers
43 views

How to deal with guid or uuid type primary key in Yii's urlManager instead of only digital type?

I'm trying to figure out how to pass the guid type primary key value in the HTTP GET method to the controller. I have changed my urlManager as follows: 'urlManager'=>array( ...
1
vote
1answer
92 views

Why would servicestack ormlite save valid Guid values as NULL to SqLite database?

I am having this problem intermittently with ServiceStack.Net OrmLite on SqLite. My model class is using a Guid for the primary Id. My code sets a Guid.NewGuid() value to my model before saving, if ...
0
votes
0answers
70 views

Using Generic or object for entity id

I am working on a database that contains both GUID and int for keys. some table uses GUID and other uses int. Is there any best practices for this type of databases, I found that most of the ...
0
votes
1answer
63 views

Can a client ever reliably generate a PK for an object being written to a DB?

I've been fussing with this dilemma for a while now and I thought I'd approach SO. A bit of background on my scenario: I have Playlists which contain 0 or more PlaylistItem children. Playlists are ...
0
votes
1answer
76 views

Guid(Random ints) vs regular int primary key for chat application

I am not asking a general "guid vs ints which is better" question. I know that, or atleast think I know that they both have specific scenarios where one is better than the other. But I do have a ...
1
vote
3answers
1k views

Should I use Oracle's sys_guid() to generate guids?

I have some inherited code that calls SELECT SYS_GUID() FROM DUAL each time an entity is created. This means that for each insertion there are two calls to Oracle, one to get the Guid, and another to ...
0
votes
1answer
1k views

Multiple columns from different tables as foreign keys to one column

I was having a doubt regarding multiple columns as foreign keys to a single column. Let me explain with an example. Ex: I have 3 tables: Company1 : Company_ID(guid) as Primary key, Address ...
2
votes
3answers
526 views

In SQL server how do I order table rows by insertion order if primary key is GUID?

I've started using GUIDs over auto-increment integers for my primary keys. However, during development I'm used to querying (from SQL management studio or visual studio) database in order to see what ...
0
votes
3answers
139 views

Can you use GUID for a column if column is not a primary key?

I have two columns in a database. Both are ids. I am making one numeric auto incremented. This is what I chose as the primary key.But the other column has to contain unique auto generated ids as well. ...
3
votes
2answers
363 views

GUID + Auto-Increment ID = Slow Performance?

One of Jeff Atwood's cons of using a GUID is that it is Cumbersome to debug (where userid='{BAE7DF4-DDF-3RG-5TY3E3RF456AS10}') And I agree. I was thinking, now that 16-byte ID's are no longer ...
0
votes
1answer
379 views

SQL Server 2008 Table Structure with Guid Performance Considerations

I'm actually in a dilemma right now with regards to whether or not to use Guid. I have a non-transactional table called Posts with a bigint as PK. As far as I understand, using Guid as PK would ...
1
vote
2answers
112 views

SQL tables primary key

which is better to be used Guid Or Int Primary Key? some search result favors Guid and other favor Int. so what are really the pros and cons of each.
1
vote
2answers
2k views

ABAP generate random UUID/GUID

I want to generate a random UUID like in Java with UUID.randomUUID(). I came up with the function GUID_GENERATE and used it like this DO 5 TIMES. CALL FUNCTION 'GUID_CREATE' ...
5
votes
5answers
243 views

How much I can rely on GUID in .Net?

How much I can rely on GUID in .Net ? My SA told me that we will use GUID as primary keys in all tables. I wonder the reliability of GUID as a primary key. Can there be any chances that there ...
1
vote
2answers
279 views

When to use GUID in SQL Server [duplicate]

Possible Duplicate: GUID vs INT IDENTITY Every now and then I see a system using GUIDs and I ask myself how much this will impact the performance. I once worked on a system that used GUIDs ...
1
vote
2answers
2k views

Return GUID from Stored Procedure Insert

I have some stored procedures where I do inserts into my SQL Server db. I would like to return this GUID for use for future inserts, or w/e I find use for it as. I know I could generate the GUID in ...
0
votes
1answer
131 views

Database design dilema. Guids or ints?

I currentlly have the following tables Nation ---------------- Id (int) primary key autoincrement Name (char) City ---------------- Id (int) primary key autoincrement NationId (int) ...
1
vote
1answer
614 views

how can I improve performance if I have used primary key on a guid column?

i got a table with half a million rows. the primary key is the guid column . I found the query select * from T where id ='xxxx' is very slow . what should I do to improve performance ?
0
votes
1answer
298 views

UUID or GUID in database as a primary key. when should I use it and when should I not use it?

I am designing the database for social web site. should I consider using UUID or GUID for primary key at all? or should I not worry about it until the site gains significant number of users, and ...
1
vote
1answer
193 views

Database Design Question: GUID + Natural Numbers

For a database I'm building, I've decided to use natural numbers as the primary key. I'm aware of the advantages that GUID's allow, but looking at the data, the bulk of row's data were GUID keys. I ...
1
vote
3answers
457 views

SQL Server: Primary Key Schema Largely Guid but Sometimes Integer Types

OK, this may be a silly question but... I have inherited a project and am tasked with going over the primary key relationships. The project largely uses Guids. I say "largely" because there are ...
0
votes
2answers
1k views

LINQ to SQl updating primary key field?

I have a linq to sql table/class that uses a GUID as both a primary key and as foreign key. This problem came up when factoring some code that previously worked. The exception generated is ...
0
votes
1answer
296 views

Is there a specific performance issue with Entity Framework + GUID PKs?

My company has a basic SOA, using Entity Framework for database access. One of our services must interface with a legacy database which uses uniqueidentifier primary keys in the database. Performance ...
3
votes
1answer
426 views

Primary key as INT and global key as GUID for improved performance

While deciding upon the keys for a table, is it good to have an INT primary key (autoincrement) for the table and a GUID (in addition to the INT) for the scope of the database? Given that there will ...
0
votes
2answers
288 views

Increase increment size to match GUID advantage

I've been thinking of implementing this system, but can't help but feel there's a catch somewhere. One of the points of using GUID over incrementing int is that, in the future, if you were to merge ...
2
votes
3answers
600 views

SQL Server how to maintain GUID across tables in same DB

I want to create a DB , where each table's PK will be GUID and which will be unique across the DB, Example: my DB name is 'LOCATION'. And I have 3 table as 'CITY' , 'STATE' and 'COUNTRY'. I want ...
6
votes
2answers
4k views

Using a System.Guid as primary key in ASP.Net MVC?

I have created a table in the database that has a System.Guid as it's primary key. The required ADO.Net Entity Framework model has been generated and the required stored procedures has been mapped. I ...
4
votes
3answers
3k views

When would you use GUIDs as primary keys? [duplicate]

Possible Duplicate: Advantages and disadvantages of GUID / UUID database keys Are there any circumstances where it is essential to use GUIDs as primary keys in a SQL Server 2005/8 DB. For ...
4
votes
15answers
9k views

GUID vs INT IDENTITY [duplicate]

Possible Duplicate: How do you like your primary keys? I'm aware of the benefits of using a GUID, as well as the benefits of using and INT as a PK in a database. Considering that a GUID is ...
1
vote
3answers
373 views

Why is a GUID is the best choice for a PK if you're going to be doing replication?

I'm building an intranet web app with an Oracle back end. The Oracle DB will be replicated on another server for reasons that aren't important to this discussion. I'm reasonably certain we'll be ...
5
votes
5answers
879 views

Using both a GUID and an auto-incrementing integer

I've been investigating the use of GUIDs as primary keys in databases. So far, the pros seem to outweigh the cons. However, I see one point where GUIDs may not be what I want. In my application, ...
1
vote
4answers
780 views

'None' or 'Not Used' foreign key when using GUIDs as primary key

We are building an application that may need to be replicated to many servers (I'm hoping not, but there's no way to know if clients will need their own client/server copy until after we release the ...
7
votes
6answers
7k views

Improving performance of cluster index GUID primary key

I've a table with large number of rows (10K+) and it primary key is GUID. The primary key is clustered. The query performance is quite low on this table. Please provide suggestions to make it ...
0
votes
4answers
469 views

Now that I've converted my primary keys to GUIDs, how do I fix the performance?

I'm using TopLink as my ORM and MySQL as the DB. I traded my auto-increment primary keys for GUIDs for one of my tables (alright, not quite: I'm actually using a random 64 bit integer, but that's ...
13
votes
6answers
5k views

Pros and cons of using md5 hash of URI as the primary key in a database

I'm building a database that will store information on a range of objects (such as scientific papers, specimens, DNA sequences, etc.) that all have a presence online and can be identified by a URL, or ...
31
votes
7answers
10k views

What are the performance improvement of Sequential Guid over standard Guid?

Has someone ever measured performance of Sequential Guid vs. Standard Guid when used as Primary Keys inside a database?