Tagged Questions
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 ...
7
votes
17answers
585 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
8answers
214 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 ...
3
votes
4answers
598 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 ...
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
3answers
732 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
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 ...