A database is any organized collection of data.
562
votes
41answers
55k views
Database development mistakes made by application developers [closed]
What are common database development mistakes made by application developers?
374
votes
56answers
31k views
Storing Images in DB - Yea or Nay?
So I'm using an app that stores images heavily in the DB. What's your outlook on this? I'm more of a type to store the location in the filesystem, than store it directly in the DB.
What do you think ...
295
votes
56answers
12k views
Do you source control your databases?
I feel that my shop has a hole because we don't have a solid process in place for versioning our database schema changes. We do a lot of backups so we're more or less covered, but it's bad practice to ...
249
votes
11answers
53k views
MongoDB or CouchDB - fit for production?
I was wondering if anyone can tell me if MongoDB or CouchDB are ready for a production environment.
I'm now looking at these storage solutions (I'm favouring MongoDB at the moment), however these ...
163
votes
34answers
59k views
Good PHP ORM Library?
Is there a good object-relational-mapping library for PHP?
I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between the ...
161
votes
16answers
59k views
SQLite vs MySQL
SQLite is a single-file based database and MySQL is a normal database. That's great, but I'm not sure which is faster where or better for what...what are the pros and cons of each option?
143
votes
2answers
18k views
What's the Hi/Lo algorithm?
What's the Hi/Lo algorithm?
I've found this in the NHibernate documentation (it's one method to generate unique keys, section 5.1.4.2), but I haven't found any good explanation of how does it work.
...
128
votes
31answers
4k views
What should every developer know about databases?
Whether we like it or not, many if not most of us developers either regularly work with databases or may have to work with one someday. And considering the amount of misuse and abuse in the wild, and ...
119
votes
28answers
20k views
How do I version my MS SQL database in SVN?
I've been wanting to get my databases under version control. Does anyone have any advice or recommended articles to get me started?
I'll always want to have at least some data in there (as alumb ...
118
votes
11answers
3k views
First-time database design: am I overengineering?
Background
I'm a first year CS student and I work part time for my dad's small business. I don't have any experience in real world application development. I have written scripts in Python, some ...
116
votes
11answers
6k views
What scalability problems have you solved using a NoSQL data store?
NoSQL refers to non-relational data stores that break with the history of relational databases and ACID guarantees. Popular open source NoSQL data stores include:
Cassandra (tabular, written in ...
116
votes
15answers
187k views
Add column, with default value, to existing table in SQL Server
How do you add a column, with a default value, to an existing table in SQL Server 2000/2005?
116
votes
22answers
117k views
How do I quickly rename a mysql database (change schema name)?
Usually I just dump the database and reimport it with a new name. This is not an option for very big databases. Apparently RENAME {DATABASE | SCHEMA} db_name TO new_db_name; does bad things, exist ...
111
votes
9answers
33k views
Is there a .NET/C# wrapper for SQLite?
I'd sort of like to use SQLite from within C#.Net, but I can't seem to find an appropriate library. Is there one? An official one? Are there other ways to use SQLite than with a wrapper?
110
votes
15answers
33k views
MyISAM versus InnoDB
I'm working on a projects which involves a lot of database writes, I'd say (70% inserts and 30% reads). This ratio would also include updates which I consider to be one read and one write. The reads ...
106
votes
7answers
8k views
When and why are database joins expensive?
I'm doing some research into databases and I'm looking at some limitations of relational DBs.
I'm getting that joins of large tables is very expensive, but I'm not completely sure why. What does the ...
104
votes
24answers
4k views
What resources exist for Database performance-tuning?
What good resources exist for understanding database tuning on the major engines and advancing your knowledge in that area?
The idea of this question is to collect the shed load of resources that ...
102
votes
17answers
9k views
Would you recommend PostgreSQL over MySQL?
We are currently working with JavaEE and MySQL 5 in our company, but we have some queries, especially delete queries that take > 10 min to execute. We consider to switch to PostgreSQL.
What are the ...
102
votes
38answers
6k views
Why do we need entity objects?
Ok, I realize I might be downvoted into oblivion for this question, especially given my stance on the matter, but I really need to see some honest, thoughtful debate on the merits of the currently ...
97
votes
5answers
56k views
95
votes
20answers
10k views
Hidden Features of MySQL
I've been working with Microsoft SQL Server with many years now but have only just recently started to use MySQL with my web applications, and I'm hungry for knowledge.
To continue with the long line ...
89
votes
1answer
41k views
How does database indexing work?
Given that indexing is so important as your dataset increases in size, can someone explain how indexing works at a database agnostic level?
For information on queries to index a field, check out ...
87
votes
23answers
5k views
is email address a bad primary key
Is email address a bad candidate for primary when compared to auto incrementing numbers. Our web application needs the email address to be unique in the system. So, I thought of using email address ...
87
votes
20answers
39k views
Compare two MySQL databases
I have a database in MySQL that I am currently developing. I have a copy of this database on my development machine which I modify as fast as I develop and a copy on a test server. My question is:
Is ...
86
votes
22answers
24k views
Database, Table and Column Naming Conventions?
Whenever I design a database, I always wonder if there is a best way of naming an item in my database. Quite often I ask myself the following questions:
Should table names be plural?
Should column ...
85
votes
21answers
7k views
Good reasons NOT to use a relational database?
Can you please point to alternative data storage tools and give good reasons to use them instead of good-old relational databases? Imo most applications rarely use full power of SQL, it would be ...
84
votes
14answers
23k views
Wanted: Good examples of Scala database persistence
I would like to use Scala to persist data to a relational database, so what I am looking for are examples of CRUD operations using Scala.
I would like to code on a lower level of abstraction than ...
82
votes
5answers
8k views
How do you recommend implementing tags or tagging
I've heard of a few ways to implement tagging; using a mapping table between TagID and ItemID (makes sense to me, but does it scale?), adding a fixed number of possible TagID columns to ItemID (seems ...
79
votes
10answers
3k views
“where 1=1” statement [closed]
Possible Duplicate:
Why would someone use WHERE 1=1 AND <conditions> in a SQL clause?
I saw some people use a statement to query a table in a MySQL database like the following:
...
79
votes
6answers
6k views
How to think in data stores instead of databases?
As an example, Google App Engine uses data stores, not a database, to store data. Does anybody have any tips for using data stores instead of databases? It seems I've trained my mind to think 100% ...
75
votes
5answers
31k views
MongoDB vs. Cassandra
I am evaluating what might be the best migration option.
Currently, I am on a sharded MySQL (horizontal partition), with most of my data stored in JSON blobs. I do not have any complex SQL queries ...
73
votes
24answers
2k views
Why are database features being ignored, and instead reinvented in the middle tier?
What are the top reasons (apart from "database independence") that most IT projects today seem to ignore the wealth of features that exist in modern database engines such as Oracle 11g and SQL Server ...
73
votes
11answers
3k views
How should you build your database from source control?
There has been some discussion on the SO community wiki about whether database objects should be version controlled. However, I haven't seen much discussion about the best-practices for creating a ...
72
votes
10answers
2k views
What is a good choice of database for a small .NET application?
I'm developing a small application with C# in .NET and I want have a small local database next to it where I can save and retrieve records by SQL queries. I don't need anything powerful, just ...
72
votes
17answers
6k views
Why isn't PostgreSQL as widespread as MySQL?
I'm currently developing a pretty big project, and I'm considering open source databases to use.
One of the main factors I consider is support, and it seems like there is not much support/community ...
72
votes
52answers
4k views
What's your #1 way to be careful with a live database?
For my customer I occasionally do work in their live database in order to fix a problem they have created for themselves, or in order to fix bad data that my product's bugs created. Much like Unix ...
66
votes
5answers
8k views
Non-Relational Database Design
I'm interested in hearing about design strategies you have used with non-relational "nosql" databases - that is, the (mostly new) class of data stores that don't use traditional relational design or ...
64
votes
10answers
11k views
What is the difference between Left, Right, Outer and Inner Joins?
I am wondering how to differentiate all these different joins ...
63
votes
18answers
50k views
Solutions for INSERT OR UPDATE on SQL Server
Assume a table structure of MyTable(KEY, datafield1, datafield2...)
Often I want to either update an existing record, or insert a new record if it doesn't exist.
essentially
if (key exists)
Run ...
62
votes
20answers
10k views
Mechanisms for tracking DB schema changes
What are the best methods for tracking and/or automating DB schema changes? Our team uses Subversion for version control and we've been able to automate some of our tasks this way (pushing builds up ...
61
votes
4answers
6k views
What are the Options for Storing Hierarchical Data in a Relational Database?
Good Overviews
Generally speaking you're making a decision between fast read times (e.g. nested set) or fast write times (adjacency list). Usually you end up with a combination of the options below ...
61
votes
33answers
37k views
Good Free Alternative To MS Access
Consider the need to develop a lightweight desktop DB application on the Microsoft platforms.
It could be done fairly easily with MS Access but I'd like to be able to distribute it to others and I ...
60
votes
22answers
5k views
Questions every good Database/SQL developer should be able to answer
I was going through Questions every good .Net developer should be able to answer and was highly impressed with the content and approach of this question and so in the same spirit, I am asking this ...
60
votes
16answers
16k views
How to secure database passwords in PHP?
When a PHP application makes a database connection it of course generally needs to pass a login and password. If I'm using a single, minimum-permission login for my application, then the PHP needs to ...
60
votes
31answers
7k views
SQL - What are your favorite performance tricks? [closed]
When you have a query or stored procedure that needs performance tuning, what are some of the first things you try?
60
votes
27answers
7k views
What is the best way to avoid SQL injection attacks?
I've provided a solution for Python... please flesh this out with examples for other languages.
58
votes
3answers
178k views
SQL Insert into … values ( SELECT … FROM … )
I am trying to insert into a table using the input from another table. Although this is entirely feasible for many database engines, I always seem to struggle to remember the correct syntax for the ...
57
votes
17answers
12k views
Good tool to visualise database schema?
Are there any good tools for visualising a pre-existing database schema? I'm using MySQL if it matters.
I'm currently using MySQL Workbench to process an SQL create script dump, but it's clunky, slow ...
56
votes
4answers
4k views
What's the best strategy for unit-testing database-driven applications?
I work with a lot of web applications that are driven by databases of varying complexity on the backend. Typically, there's an ORM layer separate from the business and presentation logic. This makes ...
56
votes
11answers
4k views
.NET Migrations Engine
I was once under the belief that Microsoft was working on an official, ruby-like, Migration framework. However, I haven't been able to find any additional information (or even the original source of ...