Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
202 views

SQL Primary Keys

So, a co-worker and I are in an argument on which way is better for generating primary keys that are GUIDs. We are using .NET 4.0 with Entities 4 and using stored procs to make select/insert/updates. ...
2
votes
1answer
31 views

MySQL - Using foreign key as primary key too

I have table 1 with a primary key user_id and table 2 where user_id is a foreign key. Only 1 record per user_id can exist in table 2, and no record can exist without it. QUESTION: Can user_id in ...
2
votes
2answers
35 views

Ensuring uniqueness on a varchar greater than 255 in MYSQL/InnoDB

I have a table which contains HTML entries for news pages. When I initially designed it I used URL as the primary key. I've learned the error of my ways because left-joining is super slow. So I want ...
2
votes
2answers
80 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.
2
votes
9answers
2k views

Database Design and the use of non-numeric Primary Keys

I'm currently in the process of designing the database tables for a customer & website management application. My question is in regards to the use of primary keys as functional parts of a table ...
2
votes
4answers
321 views

Key DataType for a high volume SQL Server 2008?

I in the process of designing a database for high volume data and I was wondering what datatype to use for the primary keys? There will be table partitioning and the database will ultimatley be ...
1
vote
2answers
44 views

Database design: Primary key from multiple data sources

Initially I was importing foods from an excel document from Food Source 1 and it had VARCHAR type primary*(PK example #FOOD0001)* (Because there was only 1 source at the time I just imported directly ...
1
vote
4answers
84 views

Why does an SQL table have multiple primary keys?

On my job (non programming job that takes advantage of some of my programming skills), I was asked to generate a report from our outsourced, custom made program's SQL database. When looking at the ...
1
vote
3answers
120 views

MySQL. Primary key in a relational table. Unique id or multiple unique key?

Primary key in relational tables. Composite primary key or unique primary key in those pure relational tables? Which design would you recommend to use in MySQL for high performance? See diagram ...
1
vote
2answers
63 views

Skipping perfectly identical records in SQL Server

I have a set of text files I'm importing into SQL Server via a SqBulkCopy in C#. There are some records that appear in multiple records and I'd like to skip those rather than throwing an error and ...
0
votes
3answers
83 views

MYSQL - Problems using a string as primary key [closed]

Possible Duplicate: Alphanumeric Order By in Mysql My tables are sorting my records incorrectly. The primary key is a string that as one char and its combined with a number starting from 1 ...
0
votes
3answers
55 views

optomise very large table query

I have a table that is close to 20million records and growing. The table was setup as innodb. There is a primary index on the two main fields: `entries_to_fields` entry_id int(11) NO PRI NULL ...
0
votes
2answers
161 views

Adding a new primary key to existing table

I have table with following details Table name EMPLOYEE and columns EMPID (PK smallint not null) EMPNAME (varchar 256 not null) ORG (FK smallint not null) FUNCTION (FK smallint not null) EFF_DATE ...
0
votes
1answer
484 views

MySQL - using String as Primary Key

I saw a similar post on Stack Overflow already, but wasn't quite satisfied. Let's say I offer a Web service. http://foo.com/SERVICEID SERVICEID is a unique String ID used to reference the service ...
0
votes
2answers
104 views

Best way to create unique identities for distributed data that will be merged?

I have a centrally hosted database (MS SQL Server) and distributed clients save data to it over the Internet. When the Internet connection goes down the client starts storing new data locally into a ...