Tagged Questions
11
votes
6answers
1k views
Best Database Change Control Methodologies
As a database architect, developer, and consultant, there are many questions that can be answered. One, though I was asked recently and still can't answer good, is...
"What is one of, or some of, ...
4
votes
5answers
735 views
A database schema for Tags (eg. each Post has some optional tags)
I have a site like SO, Wordpress, etc, where you make a post and u can have (optional) tags against it.
What is a common database schema to handle this? I'm assuming it's a many<->many structure, ...
2
votes
2answers
2k views
What database schema can I use to save different types of billing data?
I have a system that creates an order and that order can be billed to a house account, sent Cash on Delivery (COD), or charged to a credit card. I've created the following tables:
ORDERS
order_id
...
1
vote
2answers
79 views
Collecting audit and statistical data
My problem is that I have a lot of events happening in a large web application and now and then I want to see what happened (for auditing purposes) or I want to aggregate the data for statistical ...
1
vote
1answer
919 views
MongoDB Alternative Design
Since it's really not possible to return a single embedded document (yet), what is a good database design alternative?
Here is a situation. I have an object First. First has an array of Second ...
1
vote
2answers
172 views
Creating an Information Systems Map
I am in the process of documenting the high level view of the information systems that we have. They aren't all 'silo' applications and components, and I the goal here is to highlight which components ...
0
votes
2answers
41 views
Tips for setting up a public transportation route planner
I am intending to develop in the near future a web app for planning a route using my local public transportation system. I will be using Google Maps and I would like to hear some tips on how should I ...
0
votes
1answer
53 views
Re-architecting MySQL Indexes
I have to re-architect the index structure because of previously bad index design.
I have some 200 tables with a few thousand up to 20 million rows per table.
It would take days to manually remove ...
0
votes
2answers
68 views
What is the best way to add discounts to ordering process?
Lets say a website sells products and wants to allow discounts using coupon codes. What is the best way to structure this? Here's what I have in mind, can you confirm that this is a right way to go ...