Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
13answers
1k views

What are views good for?

I'm just trying to get a general idea of what views are used for in RDBMSes. That is to say, I know what a view is and how to make one. I also know what I've used them for in the past. But I want ...
21
votes
8answers
2k views

Why historically do people use 255 not 256 for database field magnitudes?

You often see database fields set to have a magnitude of 255 characters, what is the traditional / historic reason why? I assume it's something to do with paging / memory limits, and performance but ...
8
votes
7answers
894 views

Database Optimization techniques for amateurs

Can we get a list of basic optimization techniques going (anything from modeling to querying, creating indexes, views to query optimization). It would be nice to have a list of these, one technique ...
7
votes
17answers
586 views

SQL portability gotchas

My company has me working on finishing a back end for Oracle for a Python ORM. I'm amazed at how much differently RDBMSes do things even for the simple stuff. I've learned a lot about the ...
5
votes
1answer
477 views

recursive query for adjacency list to preorder tree traversal in SQL?

I am migrating data from one database schema to another. The old schema has a categorization system based on an adjacency list, with id, category, and parent_id. If one category is under a second, ...
5
votes
8answers
215 views

Do you use the OUTER keyword when writing left/right JOINs in SQL?

I often see people who write SQL like this: SELECT * from TableA LEFT OUTER JOIN TableB ON (ID1=I2) I myself write simply: SELECT * from TableA LEFT JOIN TableB ON (ID1=I2) To me the "OUTER" ...
5
votes
5answers
1k views

What is the problem with foreign key cascade multiple paths and cycles?

In MSSQL 2005 I just struck the infamous error message: Introducing FOREIGN KEY constraint XXX on table YYY may cause cycles or multiple cascade paths. Specify ON DELETE NO ACTION or ON UPDATE NO ...
4
votes
4answers
216 views

What Applications Don't Need ACID?

Sorry for the ignorant question, but what kind of applications wouldn't require an ACID compliant database server? I have a SQL Server background where ACID has always "been there", and now ...
3
votes
4answers
601 views

What are the disadvantages of having many indices?

I recently sped up a complicated query by an order of magnitude by giving SQLite a good index to work with. Results like this make me wonder if I should index a lot of other fields that are commonly ...
3
votes
11answers
413 views

What is the best way to generate an ID for a SQL Insert?

What is the best, DBMS-independent way of generating an ID number that will be used immediately in an INSERT statement, keeping the IDs roughly in sequence?
2
votes
2answers
147 views

Can an autoincrement ID ever change from the mid-transaction value upon commit?

The possibility of this happening seems extremely unlikely to me because of the problems it could cause, but I figured I'd ask the question anyway... Imagine a transaction where an autoincrement ID ...
2
votes
8answers
116 views

SQL join problem

I want to retrieve all records from one table when there are no matches in the second table. So it is kind of the opposite of an inner join.
2
votes
2answers
79 views

How do I join a one-to-many table with results only appended to the smaller table?

Basically I have a one-to-many table. I want to append the columns of the larger table to the result set of the smaller table. I will end up with a result set the same size of the smaller table, but ...
2
votes
9answers
274 views

How to best implement a 1:1 relationship in a RDBMS?

Yesterday while working on a project I came up on a peculiar 1:1 relationship which left me wondering - how to best implement this (clearly, we had done it wrong :D) The idea is that there are two ...
1
vote
0answers
24 views

db structure for awards festival?

I have a database for an annual festival with an awards contest. For each year, there are a number of entries. So I have a table for FestivalYears, with each year, and Entries, with an id and its ...
1
vote
1answer
222 views

Key-value pairs for metadata/tagging in RDBMS: efficient storage

I know that key-value pairs aren't good database design, aren't normalized etc however in this case I believe they are the most appropriate solution. My excuse for this, and some background: A large ...
1
vote
2answers
259 views

nosql example, which engine?

a) I have 1000000 domain names b) Every domain has about 100000 sites c) each site has about 10000 visits daily / (5000 unique visits daily) d) As the owner of all those websites, I want to see, ...
1
vote
1answer
44 views

What performance gains can I expect from database paging?

Say I have a table X with 100 records in it and that running a select * from X takes 100 seconds. How long should I expect the query select top 10 * from X to take? I'd expect that the relationship ...
1
vote
3answers
733 views

SQL design for survey with answers of different data types

I am working on an online survey. Most questions have a scale of 1-5 for an answer. If we need to add a question to the survey, I use a simple web form, which does an INSERT into the appropriate ...
0
votes
0answers
26 views

Database Application - multi-user in edit mode

I'm new to multi-user applications and I have to deal with database locking or the like to avoid conflicts. I already know how to use database transaction to avoid conflicts in update but this is ...
0
votes
0answers
96 views

Indexing “low-cardinality” column for ORDER BY…LIMIT to obtain work portion?

My question is a bit similar to this already-asked question about indexing a boolean column. I'm building a database of my photographs, and I want to both add keywords, comments, and scoring to them, ...
0
votes
2answers
125 views

How to prevent deep recursive queries with entities consisting of entities of the same type? [Cool example inside]

No worries! It looks more complex than it actually is! Just get down to the drinks! TLDR-version: How to efficiently query and update entities having relationships to other entities? Here's an ...
0
votes
2answers
47 views

Do database engines other than SQL Server behave this way?

I have a stored procedure that goes something like this (pseudo code) storedprocedure param1, param2, param3, param4 begin if (param4 = 'Y') begin select * from ...
0
votes
1answer
94 views

Sets of sets of sets? Or, implementing versioning for sets of sets

I'm working on a web app for a quality control checklist. I already have a table set up, but I have a hunch that our model is sub-optimal and I could get some better performance. Please not that I'm ...
0
votes
6answers
445 views

'questions' and 'answers' with multiple answers

This question is related to this post: http://stackoverflow.com/questions/1764469/sql-design-for-survey-with-answers-of-different-data-types I have a survey app where most questions have a set of ...
-1
votes
5answers
131 views

What resources will help me understand the fundamentals of Relational Database Design

This are few of the fundamental database questions which has always given me trouble. I have tried using google and wiki but I somehow I miss out on understanding the functionality rather than ...