Tagged Questions

27
votes
10answers
5k views

How to version control a record in a database

Let's say that I have a record in the database and that both admin and normal users can do updates. Can anyone suggest a good approach/architecture how to version control every change in this table ...
21
votes
2answers
491 views

Is it fine to copy the mediawiki database architecture to design your own wiki?

In the highscalability blog, Todd Hoff talks about the wiki architecture SO adopted (initially), crunches that followed and mentions the painful refactoring needed to get back on track. To quote: ...
16
votes
12answers
7k views

Dynamic Database Schema

What is a recommended architecture for providing storage for a dynamic logical database schema? To clarify: Where a system is required to provide storage for a model whose schema may be extended or ...
14
votes
2answers
2k views

Simulating relations in MongoDB

Being one of the most popular NoSQL solutions MongoDB has most of the advantages of this approach. But one issue I'm still struggling with is how reflect object relations in NoSQL data store, ...
12
votes
3answers
297 views

How would I implement separate databases for reading and writing operations?

I am interested in implementing an architecture that has two databases one for read operations and the other for writes. I have never implemented something like this and have always built single ...
12
votes
5answers
671 views

What should be the considerations for choosing SQL/NoSQL?

Target application is a medium-sized website built to support several hundred to several thousand users an hour, with an option to scale above that. Data model is rather simple, and caching potential ...
8
votes
6answers
669 views

Avoid exposing primary keys in the source of a web app?

I often come across web applications that expose internal database primary keys through forms like select boxes. And occasionally I see javascript matching against an int or guid magic value that ...
8
votes
11answers
4k views

Many-to-many relationship: use associative table or delimited values in a column?

Update 2009.04.24 The main point of my question is not developer confusion and what to do about it. The point is to understand when delimited values are the right solution. I've seen delimited data ...
7
votes
9answers
752 views

Database per application VS One big database for all applications

I'm designing a few applications that will share 2 or 3 database tables and all of the other tables will be independent of each app. The shared databases contain mostly user information, and there ...
6
votes
7answers
144 views

Version changes for Stored Procedures

I have an application that relies very heavily on stored procedures (SQL 2005/2008). We are doing a minor update that will modify 25-35 of these stored procedures. The application is such that both ...
5
votes
5answers
2k views

Practical limit for the number of databases in SQL Server?

In one of the stackoverflow podcasts (#18 I think) Jeff and Joel were talking about multi vs single tenant databases. Joel mentioned that "FogBugz on Demand" used a database per customer architecture ...
5
votes
1answer
181 views

How do you build a ratings implementation?

We have need for a "rating" system in a project we are working on, similar to the one in SO. However, in ours there are multiple entities that need to be "tagged" with a vote up (only up, never down, ...
4
votes
6answers
53 views

Practices for allowing systems to accommodate human error?

Systems have to sometimes accommodate the possibility of real world bad data. Consider that some data originates with paper forms. And forms inherently have a limited means of validating data. ...
4
votes
4answers
110 views

Should two applications with separate release cycles share one database

We have two products: BI reports (Business Information) Social networking Product 'Social networking' is a web application, which allow users in a company to collaborate - in particular with ...
4
votes
3answers
103 views

How to/Most Efficient way to send a message to many users?

Ok so I have a site with users. I want a user to be able to send a message to multiple users based on a search query. Eg. John searches for "Florida" and this search returns 1 million ...
4
votes
8answers
376 views

How much of your database application should be in stored procedures?

I'm writing a second interface to a database application to get around some shortcomings of the original interface. Unfortunately, if I create new records, expected audit trail records will not be ...
3
votes
2answers
63 views

A single huge table or many small ones

I have a database which logs modification records into a table. This modification table contains foreign keys to other tables (the modification table only contains references to objects modified). ...
3
votes
6answers
132 views

Best way to store hierarchical tags

I have a list, where each list entry is tagged with multiple tags. Each tag can also have child tags. Every entry in the list can have more than one tags. For example, a list entry that talks about ...
3
votes
4answers
136 views

Db design for data update approval

I'm working on a project where we need to have data entered or updated by some users go through a pending status before being added into 'live data'. Whilst preparing the data the user can save ...
3
votes
5answers
129 views

design choice for a data structure customizable by the user?

I'm planning to build an application that must allow the user to set up its own data model (i.e. create fields, data structure, etc.) dynamically. I'm facing several technical possibilities, all ...
3
votes
5answers
83 views

Reducing repeated information in database design

I am designing an application that when users create a new account, their account is populated with several hundred rows of data (predefined options, settings, etc). Most of the users will rarely, if ...
3
votes
1answer
270 views

What are locking issues in OLAP?

In one local financial institution I was rebuked by their programmers for expressing them my opinion that (their programmers' obsession with) (b)locking issues in their MS SQL Server 2005 OLAP (SSAS) ...
3
votes
3answers
635 views

How to overcome shortcomings in reporting from EAV database?

The major shortcomings with Entity-Attribute-Value database designs in SQL all seem to be related to being able to query and report on the data efficiently and quickly. Most of the information I read ...
3
votes
7answers
161 views

Rewriting the system… keep the old schema?

Suppose we have a system (in production) written in an obsolete technology and difficult to adapt to changing business needs. The decision has been made to rewrite it in a newer technology. Should we ...
3
votes
2answers
218 views

How do I architect and implement self-serve custom reporting?

What type of architecture, design and software would one need to provide something similar to the excellent custom report functionality provided by google analytics. To be more specific we want to ...
3
votes
3answers
147 views

How do web services and databases relate to each other?

The idea that web services are small bits of functionality or data that are bundled together and encapsulated as small, stand-alone entities is pretty clear, and makes good sense. But how do services ...
3
votes
6answers
1k views

Software Architecture and Database Design: One database/web application per each company or one database/web application for all companies?

I'm designing a web driven SQL database application from ground up. The application will manage information for clients that are in the same type of industry. In other words, the information ...
3
votes
4answers
561 views

The dangers of hyper-normalization?

Several colleagues and I are faced with an architectural decision that has serious performance implications: our product includes a UI-driven schema builder that lets non-programmers build their own ...
3
votes
4answers
203 views

Implementing large system changes

If you're familiar with the phrase "build one to throw away", well, we seem to have done that; we’re reaching the limits of version 1 of our online app. It's time to clean things up by: ...
2
votes
3answers
146 views

What is proper design for system with external database and RESTful web gui and service?

Basically I started to design my project to be like that: Play! Framework for web gui (consuming RESTful service) Spray Framework for RESTful service, connects to database, process incoming data, ...
2
votes
4answers
152 views

is there any stock management design pattern?

We want to design an e-commerce application, and we are mental about consitent stock numbers. We don't want our customers finding out, after they have bought an item, that that item is out of stock, ...
2
votes
1answer
143 views

SQL Server table with different user profiles

I am designing my db tables in SQL Server 2005 and have come across a small design/architecture issue... I have my main Users table (username, password, lastlogin, etc.), but I also need to store 2 ...
2
votes
2answers
228 views

CQRS in a Rails environment?

I'm trying to wrap my head around CQRS (Command Query Response Separation) per Martin Fowlers recent post at: http://martinfowler.com/bliki/CQRS.html Given a project: Main Database (Postgres): ...
2
votes
3answers
124 views

How to store data when there is no schema?

I'm trying to figure out what is the right choice of data storage in a project I'm starting up right now. I want to store data that is the output result of powershell scripts. This means that an ...
2
votes
2answers
226 views

How to structure data model for an advertising tool in MongoDB

I am building an ad analytics tool which assumes a data structure like this: Account Campaign Keyword Conversion I have a lot of information about individual conversion events, which can be tied ...
2
votes
1answer
212 views

building a large scale web service

If I am going to write a web service that will be called 100k times per day and that web service will expose the database to user. What best suggestions/approach do you guys think? Should I host the ...
2
votes
4answers
84 views

Is modeling a database model a good approach for designing complex and large enterprise application?

We're working on a freaky big service-oriented multilayered application, that has to be designed from scratch. Now we need to start programming, and try to assemble the first bricks. The question is ...
2
votes
4answers
338 views

Recommended database design for relationship between business hour and it's staff and their hours

Been going back and forth on how to architect this. I'm using rails,and started with Single-Table-Inheritance, then changed my mind, now I'm not sure. BusinessHours business_id, day_of_week, ...
2
votes
4answers
472 views

Logical Model versus Domain Model

I am not a database guy. My understanding of data modelling is not extensive. From that limited understanding the logical data model is an abstraction of the physical data model, not containing ...
2
votes
3answers
96 views

Should we start with multiple small-grained databases for an app that may scale massively

We're developing a new eCommerce website and are using NHibernate for the first time. At present we are splitting our data into multiple SQL Server databases, divided per area of functionality. So ...
2
votes
4answers
194 views

architecthure for a large data driven website

I know how to create small data driven websites but want to get an idea on how to convert them to handle large data flow. The questions are based on a site that would act mostly like stack overflow, ...
2
votes
3answers
55 views

How to handle “Type” field in DB and app?

It is necessary to implement a logging, messages are planned to store in DB in a "log" table. Among other fields each message will have a "status" field: 0 - successful, 1 - wrong data, 2 - wrong ...
2
votes
1answer
85 views

Providing multi-version databases for backward compatibility for production applications/databases

How can I manage multiple versions of a database easily? I have some data (as views as selects for data originating in tables from other schemas), which other database may reference using various ...
2
votes
1answer
32 views

Suggestions needed for threading and process architecture for search engine software

The software is a classic search engine. There is one portion of the app that is tasked with crawling/collecting data, and there is another that takes that data and builds an index or database. The ...
2
votes
8answers
481 views

Building app to Classify / Describe Products - Overwhelmed somewhere between planning & execution

Greetings! I recently started working for a company that carries a line of 20,000 Surgical Instruments. Our data on all items is currently spotty and chaotic at best. I intend to fix this. I have ...
2
votes
6answers
761 views

User defined data objects - what is the best data storage strategy?

I am building a system that allows front-end users to define their own business objects. Defining a business object involves creating data fields for that business object and then relating it to other ...
2
votes
4answers
1k views

Oracle Multiple Schemas Aggregate Real Time View

All, Looking for some guidance on an Oracle design decision I am currently trying to evaluate: The problem I have data in three separate schemas on the same oracle db server. I am looking to build ...
2
votes
2answers
157 views

MySQL architecture question regarding null columns vs. joins

I have an application where I'll have repeating events. So an event can repeat by day, "every n days", by week, "every n weeks on Mon/Tue/Wed/etc", and by month, "every n months on the ...
2
votes
2answers
1k views

Library Database System Design

I have a library, and I want to migrate it from an old system to a new optimized one. The old library was built using MS Access (mdb files), where each book is a file by itself. Each book consists of ...
2
votes
11answers
492 views

Design from the database first through to UI or t'other way round?

Do you always lean towards thinking of db schema when starting or planning a new project it or do you go the other way and start designing UI then moving down the stack? Or do you have a different ...

1 2 3