A database is an organized collection of data.
413
votes
17answers
478k 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?
386
votes
14answers
78k 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 ...
351
votes
56answers
18k views
Do you use source control for your database items?
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 ...
338
votes
19answers
115k views
SQLite vs MySQL [closed]
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?
313
votes
2answers
113k 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 ...
262
votes
8answers
632k 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 ...
257
votes
16answers
81k 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 ...
237
votes
2answers
30k 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.
...
229
votes
30answers
230k 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 ...
192
votes
11answers
120k views
How do I list the tables in a SQLite database file
What SQL can be used to list the tables, and the rows within those tables, in a SQLite database file once i've ATTACHed it on the sqlite3 command line tool?
185
votes
21answers
84k views
Compare two MySQL databases [closed]
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 ...
181
votes
6answers
23k 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 ...
169
votes
9answers
56k 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?
168
votes
26answers
68k 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 ...
163
votes
7answers
65k views
What's the difference between identifying and non-identifying relationships?
I haven't been able to fully grasp the differences. Can you describe both concepts and use real world examples?
162
votes
6answers
99k views
160
votes
26answers
33k views
How do I version my SQL Server database in SVN? [closed]
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 ...
158
votes
31answers
7k views
What should every developer know about databases? [closed]
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 ...
155
votes
6answers
68k views
MongoDB vs. Cassandra [closed]
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 ...
153
votes
13answers
38k views
Wanted: Good examples of Scala database persistence [closed]
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 ...
151
votes
15answers
17k views
Would you recommend PostgreSQL over MySQL? [closed]
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 ...
150
votes
7answers
15k 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 ...
150
votes
25answers
6k 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 ...
147
votes
12answers
10k views
What scalability problems have you encountered 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 ...
139
votes
19answers
109k 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 ...
139
votes
4answers
37k views
What are the best practices for SQLite on Android?
What would be considered the best practices when executing queries on an SQLite db within an Android app?
Is it safe to run inserts, deletes and select queries from an AsyncTask's doInBackground ? Or ...
136
votes
11answers
5k 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 ...
132
votes
16answers
42k 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 ...
131
votes
5answers
100k views
How to shrink/purge ibdata1 file in MySQL
I am using MySQL in localhost as a "query tool" for performing statistics in R, that is, everytime I run a R script, I create a new database (A), create a new table (B), import the data into B, submit ...
127
votes
6answers
66k views
How do I specify unique constraint for multiple columns in MySQL?
I have a table:
table votes (
id,
user,
email,
address,
primary key(id),
);
Now I want to make the columns user, email, address unique (together).
How do I do this in MySql?
...
127
votes
5answers
14k 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 ...
123
votes
12answers
60k views
What is the ideal data type to use when storing latitude / longitudes in a MySQL database?
Bearing in mind that I'll be performing calculations on lat / long pairs, what datatype is best suited for use with a MySQL database?
121
votes
10answers
8k views
“where 1=1” statement [duplicate]
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:
...
120
votes
22answers
8k 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 ...
119
votes
4answers
47k views
Rails :include vs. :joins
This is more of a "why do things work this way" question rather than a "I don't know how to do this" question...
So the gospel on pulling associated records that you know you're going to use is to ...
117
votes
39answers
8k 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 ...
115
votes
2answers
27k views
Maximum length of the textual representation of an IPv6 address?
I want to store the data returned by $_SERVER["REMOTE_ADDR"] in PHP into a DB field, pretty simple task, really. The problem is that I can't find any proper information about the maximum length of the ...
111
votes
4answers
73k views
What do Clustered and Non clustered index actually mean?
I have a limited exposure to DB and have only used DB as an application programmer. I want to know about Clustered and Non clustered indexes.
I googled and what I found was :
A clustered index is ...
111
votes
21answers
11k 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? In my opinion, most applications rarely use the full power of SQL--it ...
111
votes
1answer
42k views
Skip certain tables with mysqldump
Is there a way to restrict certain tables from the mysqldump command?
For example, I'd use the following syntax to dump only table1 and table2:
mysqldump -u username -p database table1 table2 > ...
110
votes
9answers
33k views
What is the difference between Left, Right, Outer and Inner Joins?
I am wondering how to differentiate all these different joins ...
109
votes
7answers
9k 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% ...
105
votes
2answers
29k views
Entity Framework and Connection Pooling
I've recently started to use the Entity Framework 4.0 in my .NET 4.0 application and am curious about a few things relating to pooling.
Connection pooling as I know is managed by the ADO.NET data ...
101
votes
22answers
161k views
How to select the nth row in a SQL database table?
I'm interested in learning some (ideally) database agnostic ways of selecting the nth row from a database table. It would also be interesting to see how this can be achieved using the native ...
98
votes
9answers
68k views
Run MySQLDump without Locking Tables
I want to copy a live production database into my local development database. Is there a way to do this without locking the production database?
I'm currently using:
mysqldump -u root ...
96
votes
5answers
38k views
Multiple Indexes vs Multi-Column Indexes
I've just been adding an Index to a table in SQL Server 2005 and it got me thinking. What is the difference between creating 1 index and defining multiple columns over having 1 index per column you ...
94
votes
9answers
37k views
What are the performance characteristics of sqlite with very large database files?
I know that sqlite doesn't perform well with extremely large database files even when they are supported (there used to be a comment on the sqlite website stating that if you need file sizes above 1GB ...
92
votes
11answers
8k views
What is a good choice of database for a small .NET application? [closed]
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 ...
91
votes
8answers
40k views
Best way to store password in database [closed]
I am working on a project that has to have authentication (user name/pass)
It also connects to a database so i figured i would store the user name and password there but it seems like not such a ...
91
votes
6answers
17k views
What are your thoughts on Raven DB? [closed]
What are your thoughts on Raven DB?
How do I go about using Raven DB for data storage in a shared web hosting environment, since Raven DB is interacted with through HTTP?
Are there any areas that ...


