3
votes
7answers
81 views
Database “key/ID” design ideas, Surrogate Key, Primary Key, etc
So I've seen several mentions of a surrogate key lately, and I'm not really sure what it is and how it differs from a primary key.
I always assumed that ID was my primary key in a table like this:
…
2
votes
9answers
89 views
Which is the most common ID type in SQL Server databases, and which is better?
Is it better to use a Guid (UniqueIdentifier) as your Primary/Surrogate Key column, or a serialized "identity" integer column; and why is it better?
8
votes
7answers
83 views
How many significant digits should I store in my database for a GPS coordinate?
I have in my MySQL database both longitude and latitude coordinates (GPS data).
It's currently stored as:
column type
------------------------
geolat decimal(10,6)
geolng decimal(10,6)
…
1
vote
0answers
18 views
Using SQLite or MS Access, how should the tables be organized to model the logic of this 3D structure?
Here is an explanation of how the elements are related.
tl;dr: Intensity is strongest at the center of the diagram. The basic emotions (in the arms) combine to form secondary emotions in the outer …
2
votes
10answers
121 views
Database: Best practice - old data?
I have a database of automobile classified listings.
After 90 days, the classified listing is no longer valid to be displayed (the listing expires); however, I want to retain the listing for archive …
2
votes
4answers
32 views
Database - Index on multiple columns
When I run the EXPLAIN command on my MySQL query:
EXPLAIN SELECT colZ FROM table1, table 2
WHERE table1.colA = table2.colA
AND table1.colB = table2.colB
AND table1.colC = X
The EXPLAIN command …
0
votes
1answer
15 views
Fluent NHibernate table per subclass inheritance mapping
I'm new to NHibernate and Fluent NHibernate. I'm wondering how to properly use Fluent NHibernate with the "table per subclass" mapping strategy.
This is an example of what I'm after. More …
0
votes
2answers
54 views
MySQL table structure
I have a MySQL database with the following table structure:
TransactionType: Transaction_Amount, Transaction_ID, Transaction_Form
Transaction: Transaction_ID, Timestamp
Purchase: Transaction_ID, …
0
votes
2answers
65 views
Modelling Financial Transactions In Database
I m really looking for some input and guidance here.
Suppose you need to model a financial trading system. This needs to be able to handle different products (eg Equities(Shares) / Commodities (Oil …
0
votes
2answers
37 views
Database schema for forum thread votes/views, and strategy for incrementing and displaying # of views
If it matters as of now I'm using
MySQL/MyISAM but I'm open to using
PostgreSQL. I'm also open to using memcached.
Consider a table that's used to store forum threads:
id forum_name …
1
vote
2answers
22 views
Hibernate database specific columnDefinition values
Hello,
the problem is as follows: We're using hibernate with annotations as O/R Mapper.
Some @Column annotations look like:
@Column(columnDefinition = "longblob", name = "binaryData", nullable = …
1
vote
4answers
55 views
Can an attribute designate one table over another?
I'm creating a sports statistics database. With it, I'd like to catalog game/match statistics for many types of sports. For example, this database would be able to tell you how many touchdowns the …
0
votes
1answer
26 views
mySQL KEY Partitioning using three table fields (columns)
I am writing a data warehouse, using MySQL as the back-end. I need to partition a table based on two integer IDs and a name string. I have read (parts of) the mySQL documentation regarding …
1
vote
2answers
64 views
Should I worry about sqlite filesize?
When writing my own flat file databases I try and keep the file sizes as small as possible, when designing mySQL databases I put all my tables into one database (I'm under the belief that mySQL stores …
0
votes
6answers
62 views
what is the best db strategy for column indexing?
Two examples are:
Columns that will show up in a queries where clause (where Name = "xtz")
Columns that you are going to order (sort) on in queries
Is this correct and are there other important …
