Tagged Questions
44
votes
15answers
2k views
Explaining why “Just add another column to the DB” is a bad idea, to non programmers
I have sales people and bean counters who are trying to sell customizations to clients, which is fine. But when a complex change request comes in that I send back a large estimate for, they get ...
20
votes
13answers
3k views
Business Logic in Database versus Code?
As a software engineer, I have a strong bias towards writing business logic in the application layer, while typically relying on the database for little more than CRUD (Create Retrieve Update and ...
18
votes
8answers
3k views
Transactions best practices
How much do you rely on database transactions?
Do you prefer small or large transaction scopes ?
Do you prefer client side transaction handling (e.g. TransactionScope in .NET) over server
side ...
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, ...
14
votes
14answers
2k views
Recommended location for document storage - in database or elsewhere?
Background:
We have an in house document storage system that was implemented long ago. For whatever reason, using the database as the storage mechanism for the documents was chosen.
My question ...
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 ...
11
votes
10answers
457 views
Why shouldn't I give outsiders access to my database?
Lots of sites today have APIs that allow users to get data from the site as XML or JSON using a GET HTTP request. Flickr and del.icio.us are example of sites with APIs. These APIs require the server ...
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, ...
10
votes
8answers
2k views
Database exception handling best practices
How do you handle database exceptions in your application?
Are you trying to validate data prior passing it to DB or just relying on DB schema validation logic?
Do you try to recover from some kind of ...
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 ...
8
votes
8answers
3k views
Extreme Sharding: One SQLite Database Per User
I'm working on a web app that is somewhere between an email service and a social network. I feel it has the potential to grow really big in the future, so I'm concerned about scalability.
Instead of ...
8
votes
9answers
6k views
SaaS database design - Multiple Databases? Split?
I've seen SaaS applications hosted in many different ways. Is it a good idea to split features and modules across multiple databases? For example, putting things like the User table on one DB and ...
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 ...
7
votes
5answers
2k views
Advice on moving to a multi tier Delphi architecture
We have a relatively large application that is strongly tied into Firebird (stored procedures, views etc). We are now getting a lot of requests to support additional databases and we would also like ...
7
votes
11answers
735 views
Do you have any good examples of “architecture for architecture's sake”?
Just listening to this week's podcast and thought it would be nice to group together some of your experiences where you've seen the "architecture" side of design dominate things a little more than it ...
7
votes
10answers
2k views
Are flat file databases any good?
Informed options needed about the merits of flat file database. I'm considering using a flat file database scheme to manage data for a custom blog. It would be deployed on Linux OS variant and ...
6
votes
5answers
914 views
.Net opening and closing database connections
I designed the data access portion of our framework so that every time a business object needs to interact with the database it would have to open a connection, invoke the data access layer (to ...
5
votes
2answers
82 views
Is RavenDB a good fit for this concept?
First, a caveat: I'm rather new to the concepts behind document databases, so this may be an entirely obvious question.
I need to design a system that maintains a deep hierarchical catalog of parts ...
5
votes
4answers
162 views
Custom Fields for a Form representing an object
I have an architectural question concerning custom fields in a view for an object. Let's say you have a User Object with some basic information like firstname, lastname, ... that can be used by all ...
5
votes
2answers
95 views
Techniques for Data Aging
I'm looking for information about how to age data in a db, generally related to Oracle and Sql
Server, but any database would be good. Any examples or books containing examples of how the best
...
5
votes
4answers
183 views
SQL Server architecture guidance
We are designing a new version of our existing product on a new schema.
Its an internal web application with possibly 100 concurrent users (max)This will run on a SQL Server 2008 database.
On of the ...
5
votes
5answers
415 views
Using email instead of login name in django
Firstly, this is not the question how to authenticate on email/password pair, but rather how to produce logical, and if you like, beautiful data structure.
I want to use emails as user names in a ...
4
votes
1answer
54 views
Best strategy for connecting from my client to my database
Im looking into developing a new version of a client/server application for a client. The current solution is a website in asp.net mvc.
The purpose of the application is to build a digital signage ...
4
votes
3answers
257 views
architecture for high availability
I have this scenario:
You have a factory process line which runs 24/7. Downtime is extremely expensive.
The software controlling all different parts must use a shared form of database storage
The ...
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
338 views
How to share data across an organization
What are some good ways for an organization to share key data across many deparments and applications?
To give an example, let's say there is one primary application and database to manage customer ...
4
votes
1answer
213 views
When should I use an object database?
I have been using relational databases for some time now and recently came across a different type of database: object database. One of the products built around this idea had a description: A ...
4
votes
4answers
215 views
Architecture of a secure application that encrypts data in the database
I need to design an application that protects some data in a database against root attack. It means, that even if the aggressor takes control over the machine where data is stored or machine with the ...
4
votes
7answers
504 views
Entity names vs table names
We are going to develop a new system over a legacy database(using .NET C#).There are approximately 500 tables. We have choosen to use an ORM tool for our data access layer. The problem is with namig ...
4
votes
3answers
333 views
Applications for using couchDB and a RDBMS together
Wondering if there was a scenario where one would use a document-based DB and a relational DB together in a best-of-both-worlds scenario?
3
votes
2answers
52 views
Storage engine for large amounts of constantly inserted data which should be available instantly
Our server (several Java applications on Debian) handles incoming data (GNSS observations) that should be:
immediately (delay <200ms) delivered to other applications,
stored for further use.
...
3
votes
4answers
104 views
The best way to organize work with database [closed]
I wonder what is the best way to organize working with database from C# code.
I used to have different approaches for that:
Each object has Save, Update and Delete methods, which implemented all ...
3
votes
4answers
78 views
Any gain on performance when using single vs multiple databases?
We are building a software that receives pre-calculated hour averages of about 100 data items per system that are sent about once per day. There might be about 20 customers with 5-50 systems. So the ...
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
3answers
375 views
Architecture and pattern for large scale, time series based, aggregation operation
I will try to describe my challenge and operation:
I need to calculate stocks price indices over historical period. For example, I will take 100 stocks and calc their aggregated avg price each second ...
3
votes
2answers
195 views
Lightweight cross platform database engine to work with my Qt Application
I am developing a Qt application to run on Windows, Mac and Linux (Ubuntu Desktop). Development is in C++ of course and it's a desktop application that needs to store and retrieve "tabluar" ...
3
votes
1answer
233 views
Is a document-oriented DB appropriate for this use case?
I have a large, complex, legacy relational database containing our user data. I want to build an application that will segment user populations by various criteria (show me everyone who weighs more ...
3
votes
1answer
788 views
NoSql/Raven DB implementation best practices
I'm investigating a new project which will be a social networking style site. I'm reading up on RavenDb and I like the look of a lot of its features. I've not read up on nosql all that much but I'm ...
3
votes
7answers
528 views
Alternative to “master” and “slave” in entity relationship?
Example: I have two tables in my database called classA and classB, and one table called classA_classB. The last one just defined two int fields with foreign keys to link between classA and classB. So ...
3
votes
5answers
570 views
Relational database management system vs object database
I'm a research assistant for a university. We're retooling our Software Architecture subject, hoping to "modernize", and address some of the teaching and collaborative learning issues we've discovered ...
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
5answers
4k views
Where is the best place to store application parameters : database, file, code…?
I am developing a Ruby on Rails website and I have an "architectural" question : my application needs some parameters and I'm wondering where to store them.
In concrete terms, my application receive ...
3
votes
5answers
499 views
Keeping validation logic in sync between server and client sides
In my previous question most commenters agreed that having validation logic both at client & server sides is a good thing.
However there is a problem - you need to keep your validation rules in ...
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
2answers
104 views
Architecture for an enterprise solution [closed]
I am going to be developing a fairly large system that needs to have all the "qualities" of a large system. This system will be in the financial space, so there are some mandatory things that are ...
2
votes
2answers
36 views
Looking for the best tool to do large-scale set comparisons
I'm working on a project that requires finding the most intersected set among a great number of other sets.
That is, I have a large number (~300k) of sets with hundreds of entries each. Given one of ...
2
votes
4answers
106 views
Multiple applications against single database architecture
We are currently creating a new strategy for our inhouse applications. We currently have about 10-15 applications that goes against the same database directly. This is obviously not very good and we ...
2
votes
2answers
252 views
joins across multiple sqlite db files
hey guys android has some serious limitations with file system space on certain devices and my app starts giving me errors once my sqlite db file size grows beyond 5mb and i try to run the vaccum ...
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
1answer
116 views
What is the purpose of DBs like CouchDB ? When they can provide beneficts over standard DB or Object like DBs With Ruby On Rails?
I'am Starting a new App (Something like an AngelList + hacker news but local), and got thinking if I should join the wave and get a CouchDB or stay with the old School and proved to work relational ...