The db-schema tag has no wiki summary.
4
votes
1answer
534 views
database design for online ordering system
while designing an online shop database I had a problem with one part, could please someone give me an advise whether it is designed ok? The idea is that there are products which can be assigned to ...
4
votes
1answer
1k views
DB Schema of a Role Based Access Control
I'm currently developing a member administration for a local association here and I'm developing the database schema at the moment. I'd like to share it with you to improve it and give other an ...
3
votes
1answer
272 views
entity framework code first and database user
We're running into a small problem deploying a web application to another environment.
We created the application's db using Entity Framework Code First approach (db automatic created from Model).
In ...
2
votes
1answer
227 views
How can I get a dbschema file of an existing sql 2005/2008 database?
there are two databases to compare,but I can't connect one database directly.
so I want to compare the schema,then get a script to update one database.
VS2010 can compare two databases by dbschema ...
2
votes
5answers
250 views
Do 1 to 1 relations on db tables smell?
I have a table that has a bunch of fields. The fields can be broken into logical groups - like a job's project manager info. The groupings themselves aren't really entity candidates as they don't and ...
1
vote
1answer
43 views
For financial data is it useful to index DATETIME?
Suppose I have a table
STOCKCODE, DATETIME, PRICE
I want to perform a basic query such as finding the maximum price between 12.00 PM and 3.00 PM on a given date for a given stock. Currently I index ...
1
vote
4answers
1k views
Youtube Table structures
Can anyone share me how does youtube stored video related information in there tables ? What would be the table structure and what would be the various columns in tables and the relations between them ...
0
votes
2answers
114 views
Is using JPA/ORM to generate a db schema a bad idea?
Salve!
Part of another question/answer on SO (as well as other statements claiming the same):
if you are updating your database schema by JPA (generally not a good practice though)
Is it true ...
0
votes
3answers
190 views
Users group table schema
I am creating a system where users can join and create groups. Within these groups, members can create topics and respond to topics already created, so I'd like to know your opinion on which of the ...